02cb746956
Sponsored by: Nginx, Inc.
19 lines
227 B
Makefile
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>
|