Makefile revision 146987
1# $FreeBSD: head/sys/modules/if_bridge/Makefile 146987 2005-06-05 03:32:53Z thompsa $
2
3.PATH:	${.CURDIR}/../../net
4KMOD=	if_bridge
5SRCS=	if_bridge.c bridgestp.c opt_inet.h opt_inet6.h
6
7opt_inet.h:
8	echo "#define INET 1" > ${.TARGET}
9	
10opt_inet6.h:
11.if defined(NOINET6)
12	echo > ${.TARGET}
13.else
14	echo "#define INET6 1" > ${.TARGET}
15.endif
16
17.include <bsd.kmod.mk>
18