diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-16 10:59:14 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2011-11-16 10:59:14 +0200 |
commit | 7e704a7e6e57cf877614fd762d4667ef32be2eea (patch) | |
tree | 167f6059a5a935585499fc006886abc69a4df6c8 /build/import/libodb/stub.make | |
parent | 9cce004234838754b8bd7776b4ed37686c9a17c2 (diff) |
Add build infrastructure, options file and exceptions implementation
Diffstat (limited to 'build/import/libodb/stub.make')
-rw-r--r-- | build/import/libodb/stub.make | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/build/import/libodb/stub.make b/build/import/libodb/stub.make new file mode 100644 index 0000000..aa643a3 --- /dev/null +++ b/build/import/libodb/stub.make @@ -0,0 +1,30 @@ +# file : build/import/libodb/stub.make +# author : Boris Kolpackov <boris@codesynthesis.com> +# copyright : Copyright (c) 2009-2011 Code Synthesis Tools CC +# license : ODB NCUEL; see accompanying LICENSE file + +$(call include-once,$(scf_root)/import/libodb/configuration-rules.make,$(dcf_root)) + +libodb_installed := + +$(call -include,$(dcf_root)/import/libodb/configuration-dynamic.make) + +ifdef libodb_installed + +ifeq ($(libodb_installed),y) + +$(call export,l: -lodb,cpp-options: ) + +else + +# Include export stub. +# +$(call include,$(scf_root)/export/libodb/stub.make) + +endif + +else + +.NOTPARALLEL: + +endif |