diff --git a/usr.sbin/Makefile b/usr.sbin/Makefile index afe09bd4dc1f..d524839528fb 100644 --- a/usr.sbin/Makefile +++ b/usr.sbin/Makefile @@ -1,5 +1,5 @@ # From: @(#)Makefile 5.20 (Berkeley) 6/12/93 -# $Id: Makefile,v 1.148 1999/02/21 21:30:13 rnordier Exp $ +# $Id: Makefile,v 1.149 1999/03/12 15:38:54 brian Exp $ # XXX MISSING: mkproto SUBDIR= IPXrouted \ @@ -81,7 +81,9 @@ SUBDIR= IPXrouted \ spray \ sysctl \ syslogd \ + tcpdchk \ tcpdump \ + tcpdmatch \ timed \ traceroute \ trpt \ diff --git a/usr.sbin/tcpdchk/Makefile b/usr.sbin/tcpdchk/Makefile new file mode 100644 index 000000000000..ba9be97bddd0 --- /dev/null +++ b/usr.sbin/tcpdchk/Makefile @@ -0,0 +1,20 @@ +# +# $Id$ +# + +MAINTAINER=markm@FreeBSD.org + +PROG= tcpdchk +MAN8= tcpdchk.8 +SRCS= tcpdchk.c fakelog.c inetcf.c scaffold.c + +CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ + -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 \ + -DHOSTS_DENY=\"/etc/hosts.deny\" -DHOSTS_ALLOW=\"/etc/hosts.allow\" + +DPADD= ${LIBWRAP} +LDADD= -lwrap + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers + +.include diff --git a/usr.sbin/tcpdmatch/Makefile b/usr.sbin/tcpdmatch/Makefile new file mode 100644 index 000000000000..3bf9eb4a9df5 --- /dev/null +++ b/usr.sbin/tcpdmatch/Makefile @@ -0,0 +1,19 @@ +# +# $Id$ +# + +MAINTAINER=markm@FreeBSD.org + +PROG= tcpdmatch +MAN8= tcpdmatch.8 +SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c + +CFLAGS= -DREAL_DAEMON_DIR=\"/usr/libexec\" \ + -DSEVERITY=LOG_INFO -DRFC931_TIMEOUT=10 + +DPADD= ${LIBWRAP} +LDADD= -lwrap + +.PATH: ${.CURDIR}/../../contrib/tcp_wrappers + +.include