Makefile
上传用户:lgb322
上传日期:2013-02-24
资源大小:30529k
文件大小:1k
源码类别:

嵌入式Linux

开发平台:

Unix_Linux

  1. #
  2. # Makefile for the Linux kernel pci hotplug controller drivers.
  3. #
  4. O_TARGET := vmlinux-obj.o
  5. list-multi := cpqphp.o pci_hotplug.o
  6. export-objs := pci_hotplug_core.o pci_hotplug_util.o
  7. obj-$(CONFIG_HOTPLUG_PCI) += pci_hotplug.o
  8. obj-$(CONFIG_HOTPLUG_PCI_COMPAQ) += cpqphp.o
  9. pci_hotplug-objs := pci_hotplug_core.o
  10. pci_hotplug_util.o
  11. cpqphp-objs := cpqphp_core.o
  12. cpqphp_ctrl.o
  13. cpqphp_proc.o
  14. cpqphp_pci.o
  15. ifeq ($(CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM),y)
  16. cpqphp-objs += cpqphp_nvram.o
  17. endif
  18. include $(TOPDIR)/Rules.make
  19. pci_hotplug.o: $(pci_hotplug-objs)
  20. $(LD) -r -o $@ $(pci_hotplug-objs)
  21. cpqphp.o: $(cpqphp-objs)
  22. $(LD) -r -o $@ $(cpqphp-objs)