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
27 lines
447 B
Makefile
27 lines
447 B
Makefile
.include <src.opts.mk>
|
|
|
|
WARNS?= 2
|
|
NO_WFORMAT=
|
|
|
|
CFLAGS+= -I${SRCTOP}/sys
|
|
CFLAGS+= -I${SRCTOP}/sys/netpfil/ipfilter
|
|
CFLAGS+= -I${SRCTOP}/sbin/ipf/common
|
|
CFLAGS+= -DSTATETOP -D__UIO_EXPOSE
|
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
|
CFLAGS+= -DUSE_INET6
|
|
.else
|
|
CFLAGS+= -DNOINET6
|
|
.endif
|
|
|
|
.if ${.CURDIR:M*/libipf} == ""
|
|
LIBADD+= ipf
|
|
.endif
|
|
|
|
CLEANFILES+= y.tab.c y.tab.h
|
|
|
|
.PATH: ${SRCTOP}/sbin/ipf/libipf \
|
|
${SRCTOP}/sbin/ipf/common
|
|
|
|
.include "../Makefile.inc"
|