16 lines
331 B
Makefile
16 lines
331 B
Makefile
# $Netbsd$
|
|
|
|
WARNS?= 1
|
|
PROG= tcpdmatch
|
|
SRCS= tcpdmatch.c fakelog.c inetcf.c scaffold.c percent_m.c
|
|
MAN= tcpdmatch.8
|
|
TCPDCHK=${.CURDIR}/../tcpdchk
|
|
.PATH: ${TCPDCHK}
|
|
CPPFLAGS+= -I${TCPDCHK} -I${.CURDIR}/../../lib/libwrap
|
|
LDADD= -lwrap
|
|
DPADD= ${LIBWRAP}
|
|
|
|
.include "${.CURDIR}/../../lib/libwrap/Makefile.cflags"
|
|
|
|
.include <bsd.prog.mk>
|