]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/modules/ipdivert/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / modules / ipdivert / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH: ${.CURDIR}/../../netinet
6
7 KMOD=   ipdivert
8 SRCS=   ip_divert.c opt_inet.h opt_inet6.h opt_sctp.h
9
10 .if !defined(KERNBUILDDIR)
11 .if ${MK_INET_SUPPORT} != "no"
12 opt_inet.h:
13         echo "#define INET 1" > ${.TARGET}
14 .endif
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>