This commit was manufactured by cvs2svn to create tag
[linux-2.6.git] / drivers / pci / Makefile
1 #
2 # Makefile for the PCI bus specific drivers.
3 #
4
5 obj-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 obj-$(CONFIG_PROC_FS) += proc.o
8
9 ifndef CONFIG_SPARC64
10 obj-y += setup-res.o
11 endif
12
13 obj-$(CONFIG_HOTPLUG) += hotplug.o
14
15 # Build the PCI Hotplug drivers if we were asked to
16 obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
17
18 #
19 # Some architectures use the generic PCI setup functions
20 #
21 obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
22 obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
23 obj-$(CONFIG_PARISC) += setup-bus.o
24 obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
25 obj-$(CONFIG_PPC32) += setup-irq.o
26 obj-$(CONFIG_PPC64) += setup-bus.o
27 obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
28 obj-$(CONFIG_X86_VISWS) += setup-irq.o
29 obj-$(CONFIG_PCI_MSI) += msi.o
30
31 #
32 # ACPI Related PCI FW Functions
33 #
34 obj-$(CONFIG_ACPI)    += pci-acpi.o
35
36 # Cardbus & CompactPCI use setup-bus
37 obj-$(CONFIG_HOTPLUG) += setup-bus.o
38
39 ifndef CONFIG_X86
40 obj-y += syscall.o
41 endif
42
43 hostprogs-y := gen-devlist
44
45 # Dependencies on generated files need to be listed explicitly
46 $(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h
47 $(obj)/classlist.h: $(obj)/devlist.h
48
49 # And that's how to generate them
50 quiet_cmd_devlist = DEVLIST $@
51       cmd_devlist = ( cd $(obj); ./gen-devlist ) < $<
52 $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
53         $(call cmd,devlist)
54
55 # Files generated that shall be removed upon make clean
56 clean-files := devlist.h classlist.h
57
58