1# $FreeBSD: releng/10.3/sys/modules/dummynet/Makefile 240494 2012-09-14 11:51:49Z glebius $
2
3.include <bsd.own.mk>
4
5.PATH:  ${.CURDIR}/../../netpfil/ipfw
6KMOD=   dummynet
7SRCS=   ip_dummynet.c
8SRCS+= ip_dn_glue.c ip_dn_io.c
9SRCS+= dn_heap.c dn_sched_fifo.c dn_sched_qfq.c dn_sched_rr.c dn_sched_wf2q.c 
10SRCS+= dn_sched_prio.c
11SRCS+=	opt_inet6.h
12
13.if !defined(KERNBUILDDIR)
14.if ${MK_INET6_SUPPORT} != "no"
15opt_inet6.h:
16	echo "#define INET6 1" > ${.TARGET}
17.endif
18.endif
19
20.include <bsd.kmod.mk>
21