diff options
Diffstat (limited to 'sbin/pfctl/Makefile')
-rw-r--r-- | sbin/pfctl/Makefile | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/sbin/pfctl/Makefile b/sbin/pfctl/Makefile index bbf184e5364..57253ec473b 100644 --- a/sbin/pfctl/Makefile +++ b/sbin/pfctl/Makefile @@ -1,9 +1,13 @@ -# $OpenBSD: Makefile,v 1.8 2002/09/14 17:51:53 henning Exp $ +# $OpenBSD: Makefile,v 1.9 2002/11/18 22:49:15 henning Exp $ PROG= pfctl -SRCS= pfctl.c parse.y pfctl_parser.c pf_print_state.c -CFLAGS+= -Wall +SRCS= pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c +CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized +CFLAGS+= -Wstrict-prototypes YFLAGS= MAN= pfctl.8 + +LDADD+= -lm +DPADD+= ${LIBM} .include <bsd.prog.mk> |