Makefile revision 221267
1# $FreeBSD: head/sys/modules/if_carp/Makefile 221267 2011-04-30 17:59:54Z bz $
2
3.PATH: ${.CURDIR}/../../netinet
4
5.include <bsd.own.mk>
6
7KMOD=	if_carp
8SRCS=	ip_carp.c
9SRCS+=	opt_carp.h opt_bpf.h opt_inet.h opt_inet6.h vnode_if.h
10
11.if !defined(KERNBUILDDIR)
12.if ${MK_INET_SUPPORT} != "no"
13opt_inet.h:
14	@echo "#define INET 1" > ${.TARGET}
15.endif
16
17.if ${MK_INET6_SUPPORT} != "no"
18opt_inet6.h:
19	@echo "#define INET6 1" > ${.TARGET}
20.endif
21.endif
22
23.include <bsd.kmod.mk>
24