aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/pci/Makefile
diff options
context:
space:
mode:
authorLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
committerLinus Torvalds <torvalds@ppc970.osdl.org>2005-04-16 18:20:36 -0400
commit1da177e4c3f41524e886b7f1b8a0c1fc7321cac2 (patch)
tree0bba044c4ce775e45a88a51686b5d9f90697ea9d /drivers/pci/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 'drivers/pci/Makefile')
-rw-r--r--drivers/pci/Makefile65
1 files changed, 65 insertions, 0 deletions
diff --git a/drivers/pci/Makefile b/drivers/pci/Makefile
new file mode 100644
index 000000000000..7dea494c0d7b
--- /dev/null
+++ b/drivers/pci/Makefile
@@ -0,0 +1,65 @@
1#
2# Makefile for the PCI bus specific drivers.
3#
4
5obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \
6 names.o pci-driver.o search.o pci-sysfs.o \
7 rom.o
8obj-$(CONFIG_PROC_FS) += proc.o
9
10ifndef CONFIG_SPARC64
11obj-y += setup-res.o
12endif
13
14obj-$(CONFIG_HOTPLUG) += hotplug.o
15
16# Build the PCI Hotplug drivers if we were asked to
17obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
18
19#
20# Some architectures use the generic PCI setup functions
21#
22obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
23obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
24obj-$(CONFIG_PARISC) += setup-bus.o
25obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
26obj-$(CONFIG_PPC32) += setup-irq.o
27obj-$(CONFIG_PPC64) += setup-bus.o
28obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
29obj-$(CONFIG_X86_VISWS) += setup-irq.o
30obj-$(CONFIG_PCI_MSI) += msi.o
31
32#
33# ACPI Related PCI FW Functions
34#
35obj-$(CONFIG_ACPI) += pci-acpi.o
36
37# Cardbus & CompactPCI use setup-bus
38obj-$(CONFIG_HOTPLUG) += setup-bus.o
39
40ifndef CONFIG_X86
41obj-y += syscall.o
42endif
43
44ifeq ($(CONFIG_PCI_DEBUG),y)
45EXTRA_CFLAGS += -DDEBUG
46endif
47
48hostprogs-y := gen-devlist
49
50# Dependencies on generated files need to be listed explicitly
51$(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h
52$(obj)/classlist.h: $(obj)/devlist.h
53
54# And that's how to generate them
55quiet_cmd_devlist = DEVLIST $@
56 cmd_devlist = ( cd $(obj); ./gen-devlist ) < $<
57$(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
58 $(call cmd,devlist)
59
60# Files generated that shall be removed upon make clean
61clean-files := devlist.h classlist.h
62
63# Build PCI Express stuff if needed
64obj-$(CONFIG_PCIEPORTBUS) += pcie/
65