diff options
Diffstat (limited to 'usr.bin/tftp/Makefile')
-rw-r--r-- | usr.bin/tftp/Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/usr.bin/tftp/Makefile b/usr.bin/tftp/Makefile new file mode 100644 index 000000000000..952246d3fd5d --- /dev/null +++ b/usr.bin/tftp/Makefile @@ -0,0 +1,15 @@ +.include <src.opts.mk> + +.PATH: ${SRCTOP}/libexec/tftpd + +PROG= tftp +SRCS= main.c tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c +SRCS+= tftp-utils.c tftp.c +CFLAGS+=-I${SRCTOP}/libexec/tftpd + +LIBADD= edit + +HAS_TESTS= +SUBDIR.${MK_TESTS}= tests + +.include <bsd.prog.mk> |