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