URL
https://opencores.org/ocsvn/or1k/or1k/trunk
Subversion Repositories or1k
[/] [or1k/] [trunk/] [linux/] [linux-2.4/] [drivers/] [hotplug/] [Makefile] - Rev 1765
Compare with Previous | Blame | View Log
## Makefile for the Linux kernel pci hotplug controller drivers.#O_TARGET := vmlinux-obj.olist-multi := cpqphp.o pci_hotplug.o ibmphp.o acpiphp.oexport-objs := pci_hotplug_core.o pci_hotplug_util.oobj-$(CONFIG_HOTPLUG_PCI) += pci_hotplug.oobj-$(CONFIG_HOTPLUG_PCI_COMPAQ) += cpqphp.oobj-$(CONFIG_HOTPLUG_PCI_IBM) += ibmphp.oobj-$(CONFIG_HOTPLUG_PCI_ACPI) += acpiphp.opci_hotplug-objs := pci_hotplug_core.o \pci_hotplug_util.ocpqphp-objs := cpqphp_core.o \cpqphp_ctrl.o \cpqphp_proc.o \cpqphp_pci.oibmphp-objs := ibmphp_core.o \ibmphp_ebda.o \ibmphp_pci.o \ibmphp_res.o \ibmphp_hpc.oacpiphp_objs := acpiphp_core.o \acpiphp_glue.o \acpiphp_pci.o \acpiphp_res.oifeq ($(CONFIG_HOTPLUG_PCI_COMPAQ_NVRAM),y)cpqphp-objs += cpqphp_nvram.oendifinclude $(TOPDIR)/Rules.makepci_hotplug.o: $(pci_hotplug-objs)$(LD) -r -o $@ $(pci_hotplug-objs)cpqphp.o: $(cpqphp-objs)$(LD) -r -o $@ $(cpqphp-objs)ibmphp.o: $(ibmphp-objs)$(LD) -r -o $@ $(ibmphp-objs)acpiphp.o: $(acpiphp_objs)$(LD) -r -o $@ $(acpiphp_objs)
