From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1MvvP1-0004ou-Pl for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:40 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1MvvOv-0004fE-8s for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:37 -0400 Received: from [199.232.76.173] (port=57564 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1MvvOu-0004e9-Fy for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:32 -0400 Received: from mx1.redhat.com ([209.132.183.28]:27158) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1MvvOt-0002K4-ES for qemu-devel@nongnu.org; Thu, 08 Oct 2009 11:59:31 -0400 From: Gleb Natapov Date: Thu, 8 Oct 2009 17:59:13 +0200 Message-Id: <1255017566-26220-9-git-send-email-gleb@redhat.com> In-Reply-To: <1255017566-26220-1-git-send-email-gleb@redhat.com> References: <1255017566-26220-1-git-send-email-gleb@redhat.com> Subject: [Qemu-devel] [PATCH 08/21] Add rule to compile DSDT to make file. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: kevin@koconnor.net Cc: qemu-devel@nongnu.org Signed-off-by: Gleb Natapov --- Makefile | 7 +++++++ 1 files changed, 7 insertions(+), 0 deletions(-) diff --git a/Makefile b/Makefile index dd5bc69..50e7da2 100644 --- a/Makefile +++ b/Makefile @@ -175,6 +175,13 @@ $(OUT)vgabios.bin: $(OUT)vgabios.bin.raw tools/buildrom.py @echo " Finalizing rom $@" $(Q)./tools/buildrom.py $< $@ +####### dsdt buld rules +src/acpi-dsdt.hex: src/acpi-dsdt.dsl + @echo "Compiling DSDT" + $(Q)cpp -P $< > $(OUT)acpi-dsdt.dsl.i + $(Q)iasl -tc -p $@ $(OUT)acpi-dsdt.dsl.i + $(Q)rm $(OUT)acpi-dsdt.dsl.i + ####### Generic rules clean: $(Q)rm -rf $(OUT) -- 1.6.3.3