diff options
author | Bob Beck <beck@cvs.openbsd.org> | 2004-04-25 18:40:43 +0000 |
---|---|---|
committer | Bob Beck <beck@cvs.openbsd.org> | 2004-04-25 18:40:43 +0000 |
commit | b9b8cbe237104b8529ebf001a6cdf08ead1bf4ba (patch) | |
tree | e04b77bf84f561be709f50aeacf39003e650cef8 /usr.sbin/authpf/Makefile | |
parent | 06b3f31be74aaa1319e130b45c47717e7decd1b1 (diff) |
Make authpf exec pfctl instead of sucking in code from pfctl
ok cedric@
Diffstat (limited to 'usr.sbin/authpf/Makefile')
-rw-r--r-- | usr.sbin/authpf/Makefile | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/usr.sbin/authpf/Makefile b/usr.sbin/authpf/Makefile index 0b4cb33192a..f2d43a658b0 100644 --- a/usr.sbin/authpf/Makefile +++ b/usr.sbin/authpf/Makefile @@ -1,18 +1,14 @@ -# $OpenBSD: Makefile,v 1.10 2003/11/20 23:23:09 avsm Exp $ +# $OpenBSD: Makefile,v 1.11 2004/04/25 18:40:42 beck Exp $ PROG= authpf MAN= authpf.8 BINOWN= root BINGRP= authpf BINMODE= 6555 -SRCS= authpf.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c -SRCS+= pfctl_radix.c pfctl_osfp.c -CFLAGS+= -I${.CURDIR}/../../sbin/pfctl -Wall -.PATH: ${.CURDIR}/../../sbin/pfctl +SRCS= authpf.c +CFLAGS+= -Wall LDADD+= -lm DPADD+= ${LIBM} -CLEANFILES+=y.tab.h - .include <bsd.prog.mk> |