Deleted Added
full compact
Makefile (223593) Makefile (230443)
1# $FreeBSD: head/sys/modules/ipdivert/Makefile 223593 2011-06-27 12:21:11Z glebius $
1# $FreeBSD: head/sys/modules/ipdivert/Makefile 230443 2012-01-22 02:16:31Z bz $
2
2
3.include <bsd.own.mk>
4
3.PATH: ${.CURDIR}/../../netinet
4
5KMOD= ipdivert
5.PATH: ${.CURDIR}/../../netinet
6
7KMOD= ipdivert
6SRCS= ip_divert.c opt_inet6.h
8SRCS= ip_divert.c opt_inet.h opt_inet6.h
7
8.if !defined(KERNBUILDDIR)
9
10.if !defined(KERNBUILDDIR)
11.if ${MK_INET_SUPPORT} != "no"
12opt_inet.h:
13 echo "#define INET 1" > ${.TARGET}
14.endif
15.if ${MK_INET6_SUPPORT} != "no"
9opt_inet6.h:
10 echo "#define INET6 1" > ${.TARGET}
11.endif
16opt_inet6.h:
17 echo "#define INET6 1" > ${.TARGET}
18.endif
19.endif
12
13.include <bsd.kmod.mk>
20
21.include <bsd.kmod.mk>