1# $FreeBSD$ 2 3TOPDIR?=${CURDIR}/../.. 4include ${TOPDIR}/tools/opts.mk 5 6PACKAGE=ipfw 7PROG= ipfw 8SRCS= ipfw2.c ipv6.c main.c nat.c tables.c compat.c 9WARNS?= 2 10 11ifneq (${MK_DUMMYNET},"no") 12SRCS+= dummynet.c 13CFLAGS+= -DDUMMYNET 14endif 15 16ifneq (${MK_PF},"no") 17SRCS+= altq.c 18CFLAGS+=-DPF 19endif 20 21LIBADD= util 22MAN= ipfw.8 23 24include ${TOPDIR}/tools/prog.mk 25 26