NetBSD/usr.sbin/pf/pfs/Makefile
degroote ca38e323d1 Add support for pfs(8)
pfs(8) is a tool similar to ipfs(8) but for pf(4). It allows the admin to
dump internal configuration of pf, and restore at a latter point, after a
maintenance reboot for example, in a transparent way for user.

This work has been done mostly during my GSoC 2009

No objections on tech-net@
2010-05-07 17:41:57 +00:00

19 lines
222 B
Makefile

SRCS= pfs.c token.l parse.y
PROG= pfs
CPPFLAGS+=-I${NETBSDSRCDIR}/sys/dist/pf
CPPFLAGS+=-I${.CURDIR}
WARNS= 4
YHEADER=parse.h
LDADD+= -ll -ly
DPADD+= ${LIBL} ${LIBY}
BINDIR=/sbin
MAN= pfs.8
.include <bsd.prog.mk>