]> CyberLeo.Net >> Repos - FreeBSD/releng/8.1.git/blob - sys/modules/dummynet/Makefile
Copy stable/8 to releng/8.1 in preparation for 8.1-RC1.
[FreeBSD/releng/8.1.git] / sys / modules / dummynet / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH:  ${.CURDIR}/../../netinet/ipfw
6 KMOD=   dummynet
7 SRCS=   ip_dummynet.c
8 SRCS+= ip_dn_glue.c ip_dn_io.c
9 SRCS+= dn_heap.c dn_sched_fifo.c dn_sched_qfq.c dn_sched_rr.c dn_sched_wf2q.c
10 SRCS+= dn_sched_prio.c
11 SRCS+=  opt_inet6.h
12
13 .if !defined(KERNBUILDDIR)
14 .if ${MK_INET6_SUPPORT} != "no"
15 opt_inet6.h:
16         echo "#define INET6 1" > ${.TARGET}
17 .endif
18 .endif
19
20 .include <bsd.kmod.mk>