Makefile revision 337246
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/10/libexec/tftpd/Makefile 337246 2018-08-03 14:13:15Z asomers $
3
4.include <bsd.own.mk>
5
6PROG=	tftpd
7MAN=	tftpd.8
8SRCS=	tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
9SRCS+=	tftpd.c
10WFORMAT=0
11
12.if ${MK_TCP_WRAPPERS} != "no"
13CFLAGS+=	-DLIBWRAP
14DPADD+=		${LIBWRAP}
15LDADD+=		-lwrap
16.endif
17
18HAS_TESTS=
19SUBDIR.${MK_TESTS}+= tests
20
21.include <bsd.prog.mk>
22