summaryrefslogtreecommitdiff
path: root/src/devices/Makefile.inc
diff options
context:
space:
mode:
Diffstat (limited to 'src/devices/Makefile.inc')
-rw-r--r--src/devices/Makefile.inc21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/devices/Makefile.inc b/src/devices/Makefile.inc
new file mode 100644
index 0000000000..9ef4e69517
--- /dev/null
+++ b/src/devices/Makefile.inc
@@ -0,0 +1,21 @@
+obj-y += device.o
+obj-y += root_device.o
+obj-y += device_util.o
+obj-y += pci_device.o
+obj-y += hypertransport.o
+obj-y += pcix_device.o
+obj-y += pciexp_device.o
+obj-y += agp_device.o
+obj-y += cardbus_device.o
+obj-y += pnp_device.o
+obj-y += pci_ops.o
+obj-y += smbus_ops.o
+
+ifeq ($(CONFIG_PCI_ROM_RUN),y)
+obj-$(CONFIG_PCI_ROM_RUN) += pci_rom.o
+subdirs-$(CONFIG_PCI_ROM_RUN) += ../../util/x86emu
+else
+obj-$(CONFIG_VGA_ROM_RUN) += pci_rom.o
+subdirs-$(CONFIG_VGA_ROM_RUN) += ../../util/x86emu
+endif
+