1# $FreeBSD$ 2 3.include <bsd.own.mk> 4 5.PATH: ${.CURDIR}/../../netinet/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