b7ff2bdc20
the ROUTETABLES kernel option thus there is no need to include opt_route.h anymore in all consumers of vnet.h and no longer depend on it for module builds. Remove the hidden include in flowtable.h as well and leave the two explicit #includes in ip_input.c and ip_output.c.
16 lines
231 B
Makefile
16 lines
231 B
Makefile
# $FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../compat/linprocfs
|
|
|
|
KMOD= linprocfs
|
|
SRCS= vnode_if.h \
|
|
device_if.h bus_if.h \
|
|
linprocfs.c \
|
|
opt_compat.h
|
|
|
|
.if ${MACHINE_ARCH} == "amd64"
|
|
CFLAGS+=-DCOMPAT_LINUX32
|
|
.endif
|
|
|
|
.include <bsd.kmod.mk>
|