xref: /dragonfly/sys/net/bridge/Makefile (revision 0ca59c34)
1# $DragonFly: src/sys/net/bridge/Makefile,v 1.4 2005/12/21 16:40:25 corecode Exp $
2#
3
4KMOD=	if_bridge
5SRCS=	if_bridge.c bridgestp.c
6SRCS+=	opt_inet.h opt_inet6.h
7
8.if !defined(BUILDING_WITH_KERNEL)
9opt_inet.h:
10	echo "#define INET 1" > ${.TARGET}
11
12opt_inet6.h:
13	echo "#define INET6 1" > ${.TARGET}
14.endif
15
16.include <bsd.kmod.mk>
17