1#	@(#)Makefile	8.1 (Berkeley) 6/4/93
2# $FreeBSD: stable/11/libexec/tftpd/Makefile 332608 2018-04-16 16:32:00Z asomers $
3
4.include <src.opts.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
14LIBADD=	wrap
15.endif
16
17HAS_TESTS=
18SUBDIR.${MK_TESTS}+= tests
19
20.include <bsd.prog.mk>
21