aboutsummaryrefslogtreecommitdiffstats
path: root/tools/firmware/acpi/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'tools/firmware/acpi/Makefile')
-rw-r--r--tools/firmware/acpi/Makefile68
1 files changed, 68 insertions, 0 deletions
diff --git a/tools/firmware/acpi/Makefile b/tools/firmware/acpi/Makefile
new file mode 100644
index 0000000000..29b7f4dd5b
--- /dev/null
+++ b/tools/firmware/acpi/Makefile
@@ -0,0 +1,68 @@
+#/*
+# * Copyright (c) 2004, Intel Corporation.
+# *
+# * This program is free software; you can redistribute it and/or modify it
+# * under the terms and conditions of the GNU General Public License,
+# * version 2, as published by the Free Software Foundation.
+# *
+# * This program is distributed in the hope it will be useful, but WITHOUT
+# * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
+# * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
+# * more details.
+# *
+# * You should have received a copy of the GNU General Public License along with
+# * this program; if not, write to the Free Software Foundation, Inc., 59 Temple
+# * Place - Suite 330, Boston, MA 02111-1307 USA.
+# *
+# */
+#
+# Compiler flag
+CFLAG=-I. -I../../libxc
+
+# Compiler tool
+CC=gcc
+
+# TARGET
+C_SRC=$(shell ls *.c)
+H_SRC=$(shell ls *.h)
+ACPI_GEN=acpigen
+ACPI_BIN=acpi.bin
+
+IASL_VER=acpica-unix-20050513
+IASL_URL=http://developer.intel.com/technology/iapc/acpi/downloads/$(IASL_VER).tar.gz
+
+vpath iasl $(PATH)
+all:$(ACPI_BIN)
+
+acpi_dsdt.c:acpi_dsdt.asl
+ $(MAKE) iasl
+ iasl -oa -tc acpi_dsdt.asl
+ mv acpi_dsdt.hex acpi_dsdt.c
+ echo "int DsdtLen=sizeof(AmlCode);" >> acpi_dsdt.c
+ rm *.aml
+
+iasl:
+ @echo
+ @echo "ACPI ASL compiler(iasl) is needed"
+ @echo "Download Intel ACPI CA"
+ @echo "If wget failed, please download and compile manually from"
+ @echo "http://developer.intel.com/technology/iapc/acpi/downloads.htm"
+ @echo
+ wget $(IASL_URL)
+ tar xzf $(IASL_VER).tar.gz
+ make -C $(IASL_VER)/compiler
+ install $(IASL_VER)/compiler/iasl /usr/bin/iasl
+
+$(ACPI_GEN):$(C_SRC) $(H_SRC) acpi_dsdt.c
+ $(CC) -o $(ACPI_GEN) $(CFLAG) $(shell ls *.c)
+
+$(ACPI_BIN):$(ACPI_GEN)
+ ./$(ACPI_GEN) $(ACPI_BIN)
+
+clean:
+ rm -rf *.o $(ACPI_GEN) $(ACPI_BIN) $(IASL_VER)
+# rm -f acpi_dsdt.c
+ rm -rf $(IASL_VER).tar.gz
+install:all
+
+