From patchwork Thu Oct 8 15:59:13 2009 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Gleb Natapov X-Patchwork-Id: 35474 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from lists.gnu.org (lists.gnu.org [199.232.76.165]) (using TLSv1 with cipher DHE-RSA-AES256-SHA (256/256 bits)) (Client did not present a certificate) by ozlabs.org (Postfix) with ESMTPS id 6A421B7043 for ; Fri, 9 Oct 2009 03:30:22 +1100 (EST) Received: from localhost ([127.0.0.1]:40384 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Mvvsh-0007te-ND for incoming@patchwork.ozlabs.org; Thu, 08 Oct 2009 12:30:19 -0400 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 Received: from int-mx02.intmail.prod.int.phx2.redhat.com (int-mx02.intmail.prod.int.phx2.redhat.com [10.5.11.12]) by mx1.redhat.com (8.13.8/8.13.8) with ESMTP id n98FxUZL031849; Thu, 8 Oct 2009 11:59:30 -0400 Received: from dhcp-1-237.tlv.redhat.com (dhcp-1-237.tlv.redhat.com [10.35.1.237]) by int-mx02.intmail.prod.int.phx2.redhat.com (8.13.8/8.13.8) with ESMTP id n98FxSrR026593; Thu, 8 Oct 2009 11:59:29 -0400 Received: by dhcp-1-237.tlv.redhat.com (Postfix, from userid 13519) id D2B671336D1; Thu, 8 Oct 2009 17:59:26 +0200 (IST) From: Gleb Natapov To: kevin@koconnor.net 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> X-Scanned-By: MIMEDefang 2.67 on 10.5.11.12 X-detected-operating-system: by monty-python.gnu.org: Genre and OS details not recognized. Cc: qemu-devel@nongnu.org Subject: [Qemu-devel] [PATCH 08/21] Add rule to compile DSDT to make file. X-BeenThere: qemu-devel@nongnu.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org Errors-To: qemu-devel-bounces+incoming=patchwork.ozlabs.org@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)