diff options
author | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@ppc970.osdl.org> | 2005-04-16 18:20:36 -0400 |
commit | 1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch) | |
tree | 0bba044c4ce775e45a88a51686b5d9f90697ea9d /net/sched/Makefile |
Linux-2.6.12-rc2v2.6.12-rc2
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
Diffstat (limited to 'net/sched/Makefile')
-rw-r--r-- | net/sched/Makefile | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/net/sched/Makefile b/net/sched/Makefile new file mode 100644 index 000000000000..431e55786efd --- /dev/null +++ b/net/sched/Makefile | |||
@@ -0,0 +1,41 @@ | |||
1 | # | ||
2 | # Makefile for the Linux Traffic Control Unit. | ||
3 | # | ||
4 | |||
5 | obj-y := sch_generic.o | ||
6 | |||
7 | obj-$(CONFIG_NET_SCHED) += sch_api.o sch_fifo.o | ||
8 | obj-$(CONFIG_NET_CLS) += cls_api.o | ||
9 | obj-$(CONFIG_NET_CLS_ACT) += act_api.o | ||
10 | obj-$(CONFIG_NET_ACT_POLICE) += police.o | ||
11 | obj-$(CONFIG_NET_CLS_POLICE) += police.o | ||
12 | obj-$(CONFIG_NET_ACT_GACT) += gact.o | ||
13 | obj-$(CONFIG_NET_ACT_MIRRED) += mirred.o | ||
14 | obj-$(CONFIG_NET_ACT_IPT) += ipt.o | ||
15 | obj-$(CONFIG_NET_ACT_PEDIT) += pedit.o | ||
16 | obj-$(CONFIG_NET_SCH_CBQ) += sch_cbq.o | ||
17 | obj-$(CONFIG_NET_SCH_HTB) += sch_htb.o | ||
18 | obj-$(CONFIG_NET_SCH_HPFQ) += sch_hpfq.o | ||
19 | obj-$(CONFIG_NET_SCH_HFSC) += sch_hfsc.o | ||
20 | obj-$(CONFIG_NET_SCH_RED) += sch_red.o | ||
21 | obj-$(CONFIG_NET_SCH_GRED) += sch_gred.o | ||
22 | obj-$(CONFIG_NET_SCH_INGRESS) += sch_ingress.o | ||
23 | obj-$(CONFIG_NET_SCH_DSMARK) += sch_dsmark.o | ||
24 | obj-$(CONFIG_NET_SCH_SFQ) += sch_sfq.o | ||
25 | obj-$(CONFIG_NET_SCH_TBF) += sch_tbf.o | ||
26 | obj-$(CONFIG_NET_SCH_TEQL) += sch_teql.o | ||
27 | obj-$(CONFIG_NET_SCH_PRIO) += sch_prio.o | ||
28 | obj-$(CONFIG_NET_SCH_ATM) += sch_atm.o | ||
29 | obj-$(CONFIG_NET_SCH_NETEM) += sch_netem.o | ||
30 | obj-$(CONFIG_NET_CLS_U32) += cls_u32.o | ||
31 | obj-$(CONFIG_NET_CLS_ROUTE4) += cls_route.o | ||
32 | obj-$(CONFIG_NET_CLS_FW) += cls_fw.o | ||
33 | obj-$(CONFIG_NET_CLS_RSVP) += cls_rsvp.o | ||
34 | obj-$(CONFIG_NET_CLS_TCINDEX) += cls_tcindex.o | ||
35 | obj-$(CONFIG_NET_CLS_RSVP6) += cls_rsvp6.o | ||
36 | obj-$(CONFIG_NET_CLS_BASIC) += cls_basic.o | ||
37 | obj-$(CONFIG_NET_EMATCH) += ematch.o | ||
38 | obj-$(CONFIG_NET_EMATCH_CMP) += em_cmp.o | ||
39 | obj-$(CONFIG_NET_EMATCH_NBYTE) += em_nbyte.o | ||
40 | obj-$(CONFIG_NET_EMATCH_U32) += em_u32.o | ||
41 | obj-$(CONFIG_NET_EMATCH_META) += em_meta.o | ||