freebsd-dev/sbin/ipfw/Makefile
Kristof Provost 0b95680e07 ipfw: Introduce dnctl
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
2021-09-08 17:17:50 +02:00

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