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 /arch/ppc/platforms/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 'arch/ppc/platforms/Makefile')
-rw-r--r-- | arch/ppc/platforms/Makefile | 53 |
1 files changed, 53 insertions, 0 deletions
diff --git a/arch/ppc/platforms/Makefile b/arch/ppc/platforms/Makefile new file mode 100644 index 000000000000..5488a053f415 --- /dev/null +++ b/arch/ppc/platforms/Makefile | |||
@@ -0,0 +1,53 @@ | |||
1 | # | ||
2 | # Makefile for the linux kernel. | ||
3 | # | ||
4 | |||
5 | # Extra CFLAGS so we don't have to do relative includes | ||
6 | CFLAGS_pmac_setup.o += -Iarch/$(ARCH)/mm | ||
7 | |||
8 | obj-$(CONFIG_APUS) += apus_setup.o | ||
9 | ifeq ($(CONFIG_APUS),y) | ||
10 | obj-$(CONFIG_PCI) += apus_pci.o | ||
11 | endif | ||
12 | obj-$(CONFIG_PPC_PMAC) += pmac_pic.o pmac_setup.o pmac_time.o \ | ||
13 | pmac_feature.o pmac_pci.o pmac_sleep.o \ | ||
14 | pmac_low_i2c.o pmac_cache.o | ||
15 | obj-$(CONFIG_PPC_CHRP) += chrp_setup.o chrp_time.o chrp_pci.o \ | ||
16 | chrp_pegasos_eth.o | ||
17 | obj-$(CONFIG_PPC_PREP) += prep_pci.o prep_setup.o | ||
18 | ifeq ($(CONFIG_PPC_PMAC),y) | ||
19 | obj-$(CONFIG_NVRAM) += pmac_nvram.o | ||
20 | obj-$(CONFIG_CPU_FREQ_PMAC) += pmac_cpufreq.o | ||
21 | endif | ||
22 | obj-$(CONFIG_PMAC_BACKLIGHT) += pmac_backlight.o | ||
23 | obj-$(CONFIG_PREP_RESIDUAL) += residual.o | ||
24 | obj-$(CONFIG_ADIR) += adir_setup.o adir_pic.o adir_pci.o | ||
25 | obj-$(CONFIG_PQ2ADS) += pq2ads.o | ||
26 | obj-$(CONFIG_TQM8260) += tqm8260_setup.o | ||
27 | obj-$(CONFIG_CPCI690) += cpci690.o | ||
28 | obj-$(CONFIG_EV64260) += ev64260.o | ||
29 | obj-$(CONFIG_CHESTNUT) += chestnut.o | ||
30 | obj-$(CONFIG_GEMINI) += gemini_pci.o gemini_setup.o gemini_prom.o | ||
31 | obj-$(CONFIG_K2) += k2.o | ||
32 | obj-$(CONFIG_LOPEC) += lopec.o | ||
33 | obj-$(CONFIG_KATANA) += katana.o | ||
34 | obj-$(CONFIG_HDPU) += hdpu.o | ||
35 | obj-$(CONFIG_MCPN765) += mcpn765.o | ||
36 | obj-$(CONFIG_MENF1) += menf1_setup.o menf1_pci.o | ||
37 | obj-$(CONFIG_MVME5100) += mvme5100.o | ||
38 | obj-$(CONFIG_PAL4) += pal4_setup.o pal4_pci.o | ||
39 | obj-$(CONFIG_PCORE) += pcore.o | ||
40 | obj-$(CONFIG_POWERPMC250) += powerpmc250.o | ||
41 | obj-$(CONFIG_PPLUS) += pplus.o | ||
42 | obj-$(CONFIG_PRPMC750) += prpmc750.o | ||
43 | obj-$(CONFIG_PRPMC800) += prpmc800.o | ||
44 | obj-$(CONFIG_RADSTONE_PPC7D) += radstone_ppc7d.o | ||
45 | obj-$(CONFIG_SANDPOINT) += sandpoint.o | ||
46 | obj-$(CONFIG_SBC82xx) += sbc82xx.o | ||
47 | obj-$(CONFIG_SPRUCE) += spruce.o | ||
48 | obj-$(CONFIG_LITE5200) += lite5200.o | ||
49 | |||
50 | ifeq ($(CONFIG_SMP),y) | ||
51 | obj-$(CONFIG_PPC_PMAC) += pmac_smp.o | ||
52 | obj-$(CONFIG_PPC_CHRP) += chrp_smp.o | ||
53 | endif | ||