diff options
author | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-03 22:02:44 +0000 |
---|---|---|
committer | bellard <bellard@c046a42c-6fe2-441c-8c8c-71466251a162> | 2006-05-03 22:02:44 +0000 |
commit | 6515b203702b01cd7d4ef8f9cbad77474fc2ed42 (patch) | |
tree | 2642440660b1bdf5840a19eb6c98c77fd41f431f /Makefile.target | |
parent | 107654552cb442b8b95c1f3ebc18dd64c6c0f0d5 (diff) |
ACPI support
git-svn-id: svn://svn.savannah.nongnu.org/qemu/trunk@1902 c046a42c-6fe2-441c-8c8c-71466251a162
Diffstat (limited to 'Makefile.target')
-rw-r--r-- | Makefile.target | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/Makefile.target b/Makefile.target index aff19c5c81..f25153b84f 100644 --- a/Makefile.target +++ b/Makefile.target @@ -316,7 +316,7 @@ ifeq ($(TARGET_BASE_ARCH), i386) # Hardware support VL_OBJS+= ide.o pckbd.o ps2.o vga.o $(SOUND_HW) dma.o $(AUDIODRV) VL_OBJS+= fdc.o mc146818rtc.o serial.o i8259.o i8254.o pcspk.o pc.o -VL_OBJS+= cirrus_vga.o mixeng.o apic.o parallel.o +VL_OBJS+= cirrus_vga.o mixeng.o apic.o parallel.o acpi.o DEFINES += -DHAS_AUDIO endif ifeq ($(TARGET_BASE_ARCH), ppc) @@ -471,6 +471,11 @@ endif 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 $@ $< + ifeq ($(TARGET_ARCH), sh4) op.o: op.c op_mem.c cpu.h op_helper.o: op_helper.c exec.h cpu.h |