diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-24 19:07:05 +0000 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2009-10-24 19:07:05 +0000 |
commit | 8d2ddff011700744d2374a95f8c807dbdfb85603 (patch) | |
tree | 95972d9c797b15fe4a93d682adc3732cb65a7b8f /src/cpu/emulation | |
parent | 7223780b0742d18880e71e02883ef39298d75131 (diff) | |
download | coreboot-8d2ddff011700744d2374a95f8c807dbdfb85603.tar.xz |
Change QEMU CPU Makefile.inc files to match other CPUs.
Signed-off-by: Uwe Hermann <uwe@hermann-uwe.de>
Acked-by: Myles Watson <mylesgw@gmail.com>
git-svn-id: svn://svn.coreboot.org/coreboot/trunk@4848 2b7e53f0-3cfb-0310-b3e9-8179ed1497e1
Diffstat (limited to 'src/cpu/emulation')
-rw-r--r-- | src/cpu/emulation/Makefile.inc | 2 | ||||
-rw-r--r-- | src/cpu/emulation/qemu-x86/Makefile.inc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/cpu/emulation/Makefile.inc b/src/cpu/emulation/Makefile.inc index ac166afb09..f98d3854be 100644 --- a/src/cpu/emulation/Makefile.inc +++ b/src/cpu/emulation/Makefile.inc @@ -1 +1 @@ -subdirs-y += qemu-x86 +subdirs-$(CONFIG_CPU_EMULATION_QEMU_X86) += qemu-x86 diff --git a/src/cpu/emulation/qemu-x86/Makefile.inc b/src/cpu/emulation/qemu-x86/Makefile.inc index 840af27d35..ea44b26cbe 100644 --- a/src/cpu/emulation/qemu-x86/Makefile.inc +++ b/src/cpu/emulation/qemu-x86/Makefile.inc @@ -1 +1 @@ -obj-$(CONFIG_CPU_EMULATION_QEMU_X86) += northbridge.o +obj-y += northbridge.o |