xref: /freebsd-14.2/libexec/tftpd/Makefile (revision d0b2dbfa)
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2
3.include <src.opts.mk>
4
5PROG=	tftpd
6MAN=	tftpd.8
7SRCS=	tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
8SRCS+=	tftpd.c
9
10.if ${MK_TCP_WRAPPERS} != "no"
11CFLAGS+=	-DLIBWRAP
12LIBADD=	wrap
13.endif
14
15CWARNFLAGS.gcc+=	-Wno-format-nonliteral
16
17HAS_TESTS=
18SUBDIR.${MK_TESTS}+= tests
19
20.include <bsd.prog.mk>
21