mirror of
https://github.com/opnsense/src.git
synced 2026-02-24 02:10:45 -05:00
22 lines
279 B
Makefile
22 lines
279 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.include <src.opts.mk>
|
|
|
|
PROG= flowctl
|
|
MAN= flowctl.8
|
|
|
|
WARNS?= 2
|
|
LIBADD= netgraph
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DINET6
|
|
.endif
|
|
.if ${MK_INET_SUPPORT} != "no"
|
|
CFLAGS+= -DINET
|
|
.endif
|
|
|
|
CFLAGS+= -Wno-error=unused-but-set-variable
|
|
|
|
.include <bsd.prog.mk>
|