mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-15 10:17:20 +00:00
43581d7b66
Remove ancient SCCS tags from the tree, automated scripting, with two minor fixup to keep things compiling. All the common forms in the tree were removed with a perl script. Sponsored by: Netflix
20 lines
312 B
Makefile
20 lines
312 B
Makefile
|
|
.include <src.opts.mk>
|
|
|
|
PROG= tftpd
|
|
MAN= tftpd.8
|
|
SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
|
|
SRCS+= tftpd.c
|
|
|
|
.if ${MK_TCP_WRAPPERS} != "no"
|
|
CFLAGS+= -DLIBWRAP
|
|
LIBADD= wrap
|
|
.endif
|
|
|
|
CWARNFLAGS.gcc+= -Wno-format-nonliteral
|
|
|
|
HAS_TESTS=
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
.include <bsd.prog.mk>
|