mirror of
https://github.com/opnsense/src.git
synced 2026-06-05 14:54:21 -04:00
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
16 lines
322 B
Makefile
16 lines
322 B
Makefile
.PATH: ${SRCTOP}/sys/netpfil/pf
|
|
|
|
KMOD= pfsync
|
|
SRCS= if_pfsync.c pfsync_nv.c \
|
|
opt_pf.h opt_inet.h opt_inet6.h opt_global.h
|
|
SRCS+= bus_if.h device_if.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
.if defined(VIMAGE)
|
|
opt_global.h:
|
|
echo "#define VIMAGE 1" >> ${.TARGET}
|
|
CFLAGS+= -include opt_global.h
|
|
.endif
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|