]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/modules/dummynet/Makefile
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / modules / dummynet / Makefile
1 # $FreeBSD$
2
3 .include <bsd.own.mk>
4
5 .PATH:  ${.CURDIR}/../../netpfil/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>