Makefile revision 313226
1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/10/libexec/tftpd/Makefile 313226 2017-02-04 16:47:35Z ngie $
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
18.include <bsd.prog.mk>
19