Makefile 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566
  1. #
  2. # Makefile for the PCI bus specific drivers.
  3. #
  4. obj-y += access.o bus.o probe.o remove.o pci.o quirks.o \
  5. names.o pci-driver.o search.o pci-sysfs.o \
  6. rom.o
  7. obj-$(CONFIG_PROC_FS) += proc.o
  8. ifndef CONFIG_SPARC64
  9. obj-y += setup-res.o
  10. endif
  11. obj-$(CONFIG_HOTPLUG) += hotplug.o
  12. # Build the PCI Hotplug drivers if we were asked to
  13. obj-$(CONFIG_HOTPLUG_PCI) += hotplug/
  14. #
  15. # Some architectures use the generic PCI setup functions
  16. #
  17. obj-$(CONFIG_X86) += setup-bus.o
  18. obj-$(CONFIG_ALPHA) += setup-bus.o setup-irq.o
  19. obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
  20. obj-$(CONFIG_PARISC) += setup-bus.o
  21. obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
  22. obj-$(CONFIG_PPC32) += setup-irq.o
  23. obj-$(CONFIG_PPC64) += setup-bus.o
  24. obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
  25. obj-$(CONFIG_X86_VISWS) += setup-irq.o
  26. obj-$(CONFIG_PCI_MSI) += msi.o
  27. #
  28. # ACPI Related PCI FW Functions
  29. #
  30. obj-$(CONFIG_ACPI) += pci-acpi.o
  31. # Cardbus & CompactPCI use setup-bus
  32. obj-$(CONFIG_HOTPLUG) += setup-bus.o
  33. ifndef CONFIG_X86
  34. obj-y += syscall.o
  35. endif
  36. ifeq ($(CONFIG_PCI_DEBUG),y)
  37. EXTRA_CFLAGS += -DDEBUG
  38. endif
  39. hostprogs-y := gen-devlist
  40. # Dependencies on generated files need to be listed explicitly
  41. $(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h
  42. $(obj)/classlist.h: $(obj)/devlist.h
  43. # And that's how to generate them
  44. quiet_cmd_devlist = DEVLIST $@
  45. cmd_devlist = ( cd $(obj); ./gen-devlist ) < $<
  46. $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
  47. $(call cmd,devlist)
  48. # Files generated that shall be removed upon make clean
  49. clean-files := devlist.h classlist.h
  50. # Build PCI Express stuff if needed
  51. obj-$(CONFIG_PCIEPORTBUS) += pcie/