2001-10-05 01:45:27 -04:00
|
|
|
# $FreeBSD$
|
|
|
|
|
|
2006-03-17 13:54:44 -05:00
|
|
|
.include <bsd.own.mk>
|
|
|
|
|
|
2009-06-05 15:22:47 -04:00
|
|
|
.PATH: ${.CURDIR}/../../netinet/ipfw
|
2001-10-05 01:45:27 -04:00
|
|
|
KMOD= dummynet
|
2005-09-27 14:10:43 -04:00
|
|
|
SRCS= ip_dummynet.c
|
2010-03-24 14:35:31 -04:00
|
|
|
SRCS+= ip_dn_glue.c ip_dn_io.c
|
|
|
|
|
SRCS+= dn_heap.c dn_sched_fifo.c dn_sched_qfq.c dn_sched_rr.c dn_sched_wf2q.c
|
2010-04-07 09:02:20 -04:00
|
|
|
SRCS+= dn_sched_prio.c
|
2006-02-20 07:30:32 -05:00
|
|
|
SRCS+= opt_inet6.h
|
|
|
|
|
|
|
|
|
|
.if !defined(KERNBUILDDIR)
|
2006-03-17 13:54:44 -05:00
|
|
|
.if ${MK_INET6_SUPPORT} != "no"
|
2006-02-20 07:30:32 -05:00
|
|
|
opt_inet6.h:
|
|
|
|
|
echo "#define INET6 1" > ${.TARGET}
|
|
|
|
|
.endif
|
|
|
|
|
.endif
|
2001-10-05 01:45:27 -04:00
|
|
|
|
|
|
|
|
.include <bsd.kmod.mk>
|