diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 18:17:46 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-06-14 18:17:46 +0000 |
commit | ce05c32384e1698053b862dbf1932cee69d99276 (patch) | |
tree | 48d6f13d7a28bb142875de898ee5a6498ecbbad8 /Makefile.target | |
parent | 1ce549abf9192681a482e3c05a9587693219e9be (diff) |
allow ACPI table build
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1982 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/Makefile.target b/Makefile.target index 551f7e13e2..1626833bc0 100644 --- a/Makefile.target +++ b/Makefile.target @@ -490,8 +490,10 @@ loader.o: loader.c elf_ops.h acpi.o: acpi.c acpi-dsdt.hex -#$(SRC_PATH)/hw/acpi-dsdt.hex: acpi-dsdt.dsl -# iasl -tc -p $@ $< +ifdef BUILD_ACPI_TABLES +$(SRC_PATH)/hw/acpi-dsdt.hex: acpi-dsdt.dsl + iasl -tc -p $@ $< +endif ifeq ($(TARGET_ARCH), sh4) op.o: op.c op_mem.c cpu.h |