1 1.2 yamt # $OpenBSD: Makefile,v 1.19 2006/12/24 18:52:43 miod Exp $ 2 1.1 itojun 3 1.1 itojun PROG= pfctl 4 1.1 itojun SRCS= pfctl.c parse.y pfctl_parser.c pf_print_state.c pfctl_altq.c 5 1.1 itojun SRCS+= pfctl_osfp.c pfctl_radix.c pfctl_table.c pfctl_qstats.c 6 1.2 yamt SRCS+= pfctl_optimize.c pf_ruleset.c 7 1.1 itojun CFLAGS+= -Wall -Wmissing-prototypes -Wno-uninitialized 8 1.1 itojun CFLAGS+= -Wstrict-prototypes -I${.CURDIR} 9 1.1 itojun YFLAGS= 10 1.1 itojun MAN= pfctl.8 11 1.1 itojun 12 1.2 yamt # Ruleset and Anchor handling 13 1.2 yamt .PATH: ${.CURDIR}/../../sys/net 14 1.2 yamt 15 1.1 itojun LDADD+= -lm 16 1.1 itojun DPADD+= ${LIBM} 17 1.1 itojun 18 1.1 itojun .include <bsd.prog.mk> 19