xref: /dragonfly/sys/net/bridge/Makefile (revision 0bb9290e)
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
7NOMAN=
8
9.if !defined(BUILDING_WITH_KERNEL)
10opt_inet.h:
11	echo "#define INET 1" > ${.TARGET}
12
13opt_inet6.h:
14	echo "#define INET6 1" > ${.TARGET}
15.endif
16
17.include <bsd.kmod.mk>
18