summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorRobert Moore <Robert.Moore@intel.com>2012-06-29 14:23:42 -0700
committerRobert Moore <Robert.Moore@intel.com>2012-06-29 14:23:42 -0700
commitc06bf212e2677337e7059f4f0591f4e675284ade (patch)
tree48b2281dcdb899d3468f1366fe31bb38a550c6c3 /Makefile
parentd7a58c82f92396649713385ad4239382e90f9827 (diff)
downloadacpica-c06bf212e2677337e7059f4f0591f4e675284ade.tar.gz
Add top-level unix Makefile for acpica tools/utilities.
For convenience, adds a new makefile at the top level acpica directory which in turn generates the tools via the makefiles found under generate/unix.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 000000000..5ee33d734
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+#
+# Common make for acpica tools and utilities
+#
+
+#
+# Note: This makefile is intended to be used from within the native
+# ACPICA directory structure, from under top level acpica directory.
+# It specifically places all the object files for each tool in separate
+# generate/unix subdirectories, not within the various ACPICA source
+# code directories. This prevents collisions between different
+# compilations of the same source file with different compile options.
+#
+BUILD_DIRECTORY_PATH = "generate/unix"
+
+include generate/unix/Makefile.config
+include generate/unix/Makefile.common