]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/modules/if_bridge/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / modules / if_bridge / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH:  ${.CURDIR}/../../net
6 KMOD=   if_bridge
7 SRCS=   if_bridge.c opt_inet.h opt_inet6.h opt_carp.h
8
9 .if !defined(KERNBUILDDIR)
10 opt_inet.h:
11         echo "#define INET 1" > ${.TARGET}
12         
13 .if ${MK_INET6_SUPPORT} != "no"
14 opt_inet6.h:
15         echo "#define INET6 1" > ${.TARGET}
16 .endif
17 .endif
18
19 .include <bsd.kmod.mk>