1994-05-27 12:39:25 +00:00
|
|
|
# @(#)Makefile 8.1 (Berkeley) 6/4/93
|
1999-08-28 00:22:10 +00:00
|
|
|
# $FreeBSD$
|
1994-05-27 12:39:25 +00:00
|
|
|
|
2017-01-06 04:27:07 +00:00
|
|
|
.include <src.opts.mk>
|
|
|
|
|
1994-05-27 12:39:25 +00:00
|
|
|
PROG= tftpd
|
2010-09-23 14:06:15 +00:00
|
|
|
MAN= tftpd.8
|
|
|
|
SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
|
|
|
|
SRCS+= tftpd.c
|
2007-11-23 00:05:29 +00:00
|
|
|
WFORMAT=0
|
2012-05-19 05:10:47 +00:00
|
|
|
|
2017-01-06 04:27:07 +00:00
|
|
|
.if ${MK_TCP_WRAPPERS} != "no"
|
|
|
|
CFLAGS+= -DLIBWRAP
|
2014-11-25 21:18:18 +00:00
|
|
|
LIBADD= wrap
|
2017-01-06 04:27:07 +00:00
|
|
|
.endif
|
1994-05-27 12:39:25 +00:00
|
|
|
|
2018-03-09 15:30:20 +00:00
|
|
|
HAS_TESTS=
|
|
|
|
SUBDIR.${MK_TESTS}+= tests
|
|
|
|
|
1994-05-27 12:39:25 +00:00
|
|
|
.include <bsd.prog.mk>
|