Build all the queueing disciplines (includes atm)
(Logical change 1.25)
This commit is contained in:
parent
987360f2bb
commit
cda17fcd9d
25
tc/Makefile
25
tc/Makefile
|
|
@ -1,7 +1,5 @@
|
||||||
TCOBJ=tc.o tc_qdisc.o tc_class.o tc_filter.o tc_util.o m_police.o m_estimator.o
|
TCOBJ=tc.o tc_qdisc.o tc_class.o tc_filter.o tc_util.o m_police.o m_estimator.o
|
||||||
|
|
||||||
include ../Config
|
|
||||||
|
|
||||||
TCMODULES :=
|
TCMODULES :=
|
||||||
TCMODULES += q_fifo.o
|
TCMODULES += q_fifo.o
|
||||||
TCMODULES += q_sfq.o
|
TCMODULES += q_sfq.o
|
||||||
|
|
@ -13,22 +11,19 @@ TCMODULES += f_rsvp.o
|
||||||
TCMODULES += f_u32.o
|
TCMODULES += f_u32.o
|
||||||
TCMODULES += f_route.o
|
TCMODULES += f_route.o
|
||||||
TCMODULES += f_fw.o
|
TCMODULES += f_fw.o
|
||||||
ifeq ($(TC_CONFIG_DIFFSERV),y)
|
TCMODULES += q_dsmark.o
|
||||||
TCMODULES += q_dsmark.o
|
TCMODULES += q_gred.o
|
||||||
TCMODULES += q_gred.o
|
TCMODULES += f_tcindex.o
|
||||||
TCMODULES += f_tcindex.o
|
TCMODULES += q_ingress.o
|
||||||
TCMODULES += q_ingress.o
|
TCMODULES += q_atm.o
|
||||||
endif
|
LDLIBS += -latm
|
||||||
ifeq ($(TC_CONFIG_ATM),y)
|
|
||||||
TCMODULES += q_atm.o
|
|
||||||
LDLIBS += -latm
|
|
||||||
endif
|
|
||||||
TCMODULES += q_delay.o
|
TCMODULES += q_delay.o
|
||||||
|
|
||||||
#TCMODULES += q_csz.o
|
TCMODULES += q_csz.o
|
||||||
TCMODULES += q_htb.o
|
TCMODULES += q_htb.o
|
||||||
#TCMODULES += q_hpfq.o
|
TCMODULES += q_hpfq.o
|
||||||
#TCMODULES += q_hfsc.o
|
TCMODULES += q_hfsc.o
|
||||||
|
|
||||||
TCOBJ += $(TCMODULES)
|
TCOBJ += $(TCMODULES)
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue