aboutsummaryrefslogtreecommitdiff
path: root/build/configuration.make
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2010-09-14 15:19:16 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2010-09-14 15:19:16 +0200
commit349178ecf6c69be63bd81ce81d310404574cb373 (patch)
treefccbd90c0cae4f43389ec830c9d7924c30c62113 /build/configuration.make
parent22dd2e8a904d26c18f6e4c634e14b21a8aaddc7d (diff)
Establish base build system
Diffstat (limited to 'build/configuration.make')
-rw-r--r--build/configuration.make22
1 files changed, 22 insertions, 0 deletions
diff --git a/build/configuration.make b/build/configuration.make
new file mode 100644
index 0000000..fe27430
--- /dev/null
+++ b/build/configuration.make
@@ -0,0 +1,22 @@
+# file : build/configuration.make
+# author : Boris Kolpackov <boris@codesynthesis.com>
+# copyright : Copyright (c) 2009-2010 Code Synthesis Tools CC
+# license : GNU GPL v2; see accompanying LICENSE file
+
+$(call include-once,$(scf_root)/configuration-rules.make,$(dcf_root))
+
+# Dynamic configuration.
+#
+db_id :=
+
+$(call -include,$(dcf_root)/configuration-dynamic.make)
+
+ifdef db_id
+
+$(out_root)/%: db_id := $(db_id)
+
+else
+
+.NOTPARALLEL:
+
+endif