1
0
mirror of https://git.FreeBSD.org/src.git synced 2024-11-22 07:20:00 +00:00
freebsd/sbin/ipf/Makefile.inc
Warner Losh e9ac41698b Remove residual blank line at start of Makefile
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
2024-07-15 16:43:39 -06:00

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"