Makefile revision 151350
1# $FreeBSD: head/sys/modules/if_bridge/Makefile 151350 2005-10-14 23:30:17Z yar $
2
3.PATH:	${.CURDIR}/../../net
4KMOD=	if_bridge
5SRCS=	if_bridge.c bridgestp.c opt_inet.h opt_inet6.h
6
7.if !defined(KERNBUILDDIR)
8opt_inet.h:
9	echo "#define INET 1" > ${.TARGET}
10	
11.if !defined(NO_INET6)
12opt_inet6.h:
13	echo "#define INET6 1" > ${.TARGET}
14.endif
15.endif
16
17.include <bsd.kmod.mk>
18