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