mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-03 09:00:21 +00:00
d0b2dbfa0e
Remove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/
22 lines
267 B
Makefile
22 lines
267 B
Makefile
#
|
|
#
|
|
|
|
.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>
|