freebsd-src/sbin/ipfw/Makefile
Gleb Smirnoff b58d968514 Bulk sync of pf changes from head, in attempt to fixup broken build I
made in r263029.

Merge r257186,257215,257349,259736,261797.

These changesets split pfvar.h into several smaller headers and make
userland utilities to include only some of them.
2014-03-12 10:45:58 +00:00

19 lines
227 B
Makefile

# $FreeBSD$
.include <bsd.own.mk>
PROG= ipfw
SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c
WARNS?= 2
.if ${MK_PF} != "no"
SRCS+= altq.c
CFLAGS+=-DPF
.endif
DPADD= ${LIBUTIL}
LDADD= -lutil
MAN= ipfw.8
.include <bsd.prog.mk>