xref: /freebsd/usr.bin/tftp/Makefile (revision e9ac41698b2f322d55ccf9da50a3596edb2c1800)
1.include <src.opts.mk>
2
3.PATH: ${SRCTOP}/libexec/tftpd
4
5PROG=	tftp
6SRCS=	main.c tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c
7SRCS+=	tftp-utils.c tftp.c
8CFLAGS+=-I${SRCTOP}/libexec/tftpd
9
10LIBADD=	edit
11
12HAS_TESTS=
13SUBDIR.${MK_TESTS}=	tests
14
15.include <bsd.prog.mk>
16