Makefile revision 211157
1# $FreeBSD: head/sys/modules/if_carp/Makefile 211157 2010-08-11 00:51:50Z will $
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)
12opt_inet.h:
13	@echo "#define INET 1" > ${.TARGET}
14
15.if ${MK_INET6_SUPPORT} != "no"
16opt_inet6.h:
17	@echo "#define INET6 1" > ${.TARGET}
18.endif
19.endif
20
21.include <bsd.kmod.mk>
22