diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:51:32 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2010-06-04 16:51:32 +0200 |
commit | 2cea0dc10d7becabf707f7b6da4c65144397257b (patch) | |
tree | 9c40c7c9d7419c9d363eab52a5b6f93266cef711 /build/configuration.make | |
parent | af57ba0beeec0154ad61684c18a2ad1439852d91 (diff) |
Build system setup
Diffstat (limited to 'build/configuration.make')
-rw-r--r-- | build/configuration.make | 22 |
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 |