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