]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - sys/modules/dummynet/Makefile
MFC r300779, r300781, r300783, r300784, r300949, r301162, r301180
[FreeBSD/stable/10.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_aqm_codel.c dn_aqm_pie.c
10 SRCS+= dn_heap.c dn_sched_fifo.c dn_sched_qfq.c dn_sched_rr.c dn_sched_wf2q.c 
11 SRCS+= dn_sched_prio.c dn_sched_fq_codel.c dn_sched_fq_pie.c
12 SRCS+=  opt_inet6.h
13
14 .if !defined(KERNBUILDDIR)
15 .if ${MK_INET6_SUPPORT} != "no"
16 opt_inet6.h:
17         echo "#define INET6 1" > ${.TARGET}
18 .endif
19 .endif
20
21 .include <bsd.kmod.mk>