mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-22 07:20:00 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
23 lines
355 B
Makefile
23 lines
355 B
Makefile
.include <src.opts.mk>
|
|
|
|
PACKAGE=ipfw
|
|
PROG= ipfw
|
|
|
|
LINKS= ${BINDIR}/ipfw ${BINDIR}/dnctl
|
|
MLINKS= ipfw.8 dnctl.8
|
|
|
|
SRCS= ipfw2.c dummynet.c ipv6.c main.c nat.c tables.c
|
|
SRCS+= nat64clat.c nat64lsn.c nat64stl.c nptv6.c
|
|
|
|
.if ${MK_PF} != "no"
|
|
SRCS+= altq.c
|
|
CFLAGS+=-DPF
|
|
.endif
|
|
|
|
LIBADD= jail util
|
|
MAN= ipfw.8
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
CWARNFLAGS+= -Wno-cast-align
|