mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
iscsi, natd, nandfs, pf, quotacheck, and routed. Add ping6 and rtsol to the runtime package. Sponsored by: The FreeBSD Foundation
18 lines
231 B
Makefile
18 lines
231 B
Makefile
# $FreeBSD$
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PACKAGE=ipfw
|
|
PROG= ipfw
|
|
SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c tables.c
|
|
WARNS?= 2
|
|
|
|
.if ${MK_PF} != "no"
|
|
SRCS+= altq.c
|
|
CFLAGS+=-DPF
|
|
.endif
|
|
|
|
LIBADD= util
|
|
MAN= ipfw.8
|
|
|
|
.include <bsd.prog.mk>
|