Makefile revision 265420
1# $FreeBSD: head/sys/modules/if_bridge/Makefile 265420 2014-05-06 04:22:01Z imp $
2
3.include <src.opts.mk>
4
5.PATH:	${.CURDIR}/../../net
6KMOD=	if_bridge
7SRCS=	if_bridge.c opt_inet.h opt_inet6.h opt_carp.h
8
9.if !defined(KERNBUILDDIR)
10opt_inet.h:
11	echo "#define INET 1" > ${.TARGET}
12	
13.if ${MK_INET6_SUPPORT} != "no"
14opt_inet6.h:
15	echo "#define INET6 1" > ${.TARGET}
16.endif
17.endif
18
19.include <bsd.kmod.mk>
20