opnsense-src/libexec/tftpd/Makefile

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

21 lines
349 B
Makefile
Raw Permalink Normal View History

1994-05-27 08:39:25 -04:00
# @(#)Makefile 8.1 (Berkeley) 6/4/93
.include <src.opts.mk>
1994-05-27 08:39:25 -04:00
PROG= tftpd
MAN= tftpd.8
SRCS= tftp-file.c tftp-io.c tftp-options.c tftp-transfer.c tftp-utils.c
SRCS+= tftpd.c
.if ${MK_TCP_WRAPPERS} != "no"
CFLAGS+= -DLIBWRAP
2014-11-25 16:18:18 -05:00
LIBADD= wrap
.endif
1994-05-27 08:39:25 -04:00
CWARNFLAGS.gcc+= -Wno-format-nonliteral
HAS_TESTS=
SUBDIR.${MK_TESTS}+= tests
1994-05-27 08:39:25 -04:00
.include <bsd.prog.mk>