Makefile 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  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_ALPHA) += setup-bus.o setup-irq.o
  18. obj-$(CONFIG_ARM) += setup-bus.o setup-irq.o
  19. obj-$(CONFIG_PARISC) += setup-bus.o
  20. obj-$(CONFIG_SUPERH) += setup-bus.o setup-irq.o
  21. obj-$(CONFIG_PPC32) += setup-irq.o
  22. obj-$(CONFIG_PPC64) += setup-bus.o
  23. obj-$(CONFIG_MIPS) += setup-bus.o setup-irq.o
  24. obj-$(CONFIG_X86_VISWS) += setup-irq.o
  25. obj-$(CONFIG_PCI_MSI) += msi.o
  26. #
  27. # ACPI Related PCI FW Functions
  28. #
  29. obj-$(CONFIG_ACPI) += pci-acpi.o
  30. # Cardbus & CompactPCI use setup-bus
  31. obj-$(CONFIG_HOTPLUG) += setup-bus.o
  32. ifndef CONFIG_X86
  33. obj-y += syscall.o
  34. endif
  35. ifeq ($(CONFIG_PCI_DEBUG),y)
  36. EXTRA_CFLAGS += -DDEBUG
  37. endif
  38. hostprogs-y := gen-devlist
  39. # Dependencies on generated files need to be listed explicitly
  40. $(obj)/names.o: $(obj)/devlist.h $(obj)/classlist.h
  41. $(obj)/classlist.h: $(obj)/devlist.h
  42. # And that's how to generate them
  43. quiet_cmd_devlist = DEVLIST $@
  44. cmd_devlist = ( cd $(obj); ./gen-devlist ) < $<
  45. $(obj)/devlist.h: $(src)/pci.ids $(obj)/gen-devlist
  46. $(call cmd,devlist)
  47. # Files generated that shall be removed upon make clean
  48. clean-files := devlist.h classlist.h
  49. # Build PCI Express stuff if needed
  50. obj-$(CONFIG_PCIEPORTBUS) += pcie/