diff options
Diffstat (limited to 'usr.sbin/tcpdchk')
-rw-r--r-- | usr.sbin/tcpdchk/Makefile | 22 | ||||
-rw-r--r-- | usr.sbin/tcpdchk/Makefile.depend | 20 |
2 files changed, 42 insertions, 0 deletions
diff --git a/usr.sbin/tcpdchk/Makefile b/usr.sbin/tcpdchk/Makefile new file mode 100644 index 0000000..c7d4155 --- /dev/null +++ b/usr.sbin/tcpdchk/Makefile @@ -0,0 +1,22 @@ +# $FreeBSD$ + +.include <src.opts.mk> + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers + +PROG= tcpdchk +MAN= tcpdchk.8 +SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c + +CFLAGS+=-DREAL_DAEMON_DIR=\"${LIBEXECDIR}\" \ + -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 -DPROCESS_OPTIONS \ + -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" +.if ${MK_INET6_SUPPORT} != "no" +CFLAGS+=-DINET6 +.endif + +WARNS?= 0 + +LIBADD= wrap + +.include <bsd.prog.mk> diff --git a/usr.sbin/tcpdchk/Makefile.depend b/usr.sbin/tcpdchk/Makefile.depend new file mode 100644 index 0000000..e314de5 --- /dev/null +++ b/usr.sbin/tcpdchk/Makefile.depend @@ -0,0 +1,20 @@ +# $FreeBSD$ +# Autogenerated - do NOT edit! + +DIRDEPS = \ + gnu/lib/csu \ + gnu/lib/libgcc \ + include \ + include/arpa \ + include/xlocale \ + lib/${CSU_DIR} \ + lib/libc \ + lib/libcompiler_rt \ + lib/libwrap \ + + +.include <dirdeps.mk> + +.if ${DEP_RELDIR} == ${_DEP_RELDIR} +# local dependencies - needed for -jN in clean tree +.endif |