Makefile revision 193532
1# $FreeBSD: head/sys/modules/dummynet/Makefile 193532 2009-06-05 19:22:47Z luigi $
2
3.include <bsd.own.mk>
4
5.PATH:  ${.CURDIR}/../../netinet/ipfw
6KMOD=   dummynet
7SRCS=   ip_dummynet.c
8SRCS+=	opt_inet6.h
9
10.if !defined(KERNBUILDDIR)
11.if ${MK_INET6_SUPPORT} != "no"
12opt_inet6.h:
13	echo "#define INET6 1" > ${.TARGET}
14.endif
15.endif
16
17.include <bsd.kmod.mk>
18