mirror of
https://github.com/opnsense/src.git
synced 2026-03-25 20:23:11 -04:00
19 lines
338 B
Makefile
19 lines
338 B
Makefile
# $FreeBSD$
|
|
|
|
.include <bsd.own.mk>
|
|
|
|
.PATH: ${.CURDIR}/../../netinet ${.CURDIR}/../../netinet6
|
|
|
|
KMOD= ip_mroute
|
|
|
|
SRCS= ip_mroute.c
|
|
SRCS+= opt_inet.h opt_mrouting.h opt_route.h
|
|
|
|
.if !defined(KERNBUILDDIR)
|
|
opt_inet.h:
|
|
echo "#define INET 1" > ${.TARGET}
|
|
opt_mrouting.h:
|
|
echo "#define MROUTING 1" > ${.TARGET}
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|