mirror of
https://git.FreeBSD.org/src.git
synced 2024-11-29 08:08:37 +00:00
0b95680e07
Introduce a link to the ipfw command, dnctl, for dummynet configuration. dnctl only handles dummynet configuration, and is part of the effort to support dummynet in pf. /sbin/ipfw continues to accept pipe, queue and sched commands, but these can now also be issued via the new dnctl command. Reviewed by: donner MFC after: 2 weeks Sponsored by: Rubicon Communications, LLC ("Netgate") Differential Revision: https://reviews.freebsd.org/D30465
25 lines
368 B
Makefile
25 lines
368 B
Makefile
# $FreeBSD$
|
|
|
|
.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
|