diff options
Diffstat (limited to 'build/import/libsqlite/stub.make')
-rw-r--r-- | build/import/libsqlite/stub.make | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/build/import/libsqlite/stub.make b/build/import/libsqlite/stub.make new file mode 100644 index 0000000..a6ae87d --- /dev/null +++ b/build/import/libsqlite/stub.make @@ -0,0 +1,32 @@ +# file : build/import/libsqlite/stub.make +# author : Boris Kolpackov <boris@codesynthesis.com> +# copyright : Copyright (c) 2009-2011 Boris Kolpackov +# license : GNU GPL v2; see accompanying LICENSE file + +$(call include-once,$(scf_root)/import/libsqlite/configuration-rules.make,$(dcf_root)) + +libsqlite_installed := + +$(call -include,$(dcf_root)/import/libsqlite/configuration-dynamic.make) + +ifdef libsqlite_installed + +ifeq ($(libsqlite_installed),y) + +$(call export,l: -lsqlite3,cpp-options: ) + +else + +$(call include-once,$(scf_root)/import/libsqlite/rules.make,$(dcf_root)) + +$(call export,\ + l: $(dcf_root)/import/libsqlite/sqlite.l,\ + cpp-options: $(dcf_root)/import/libsqlite/sqlite.l.cpp-options) + +endif + +else + +.NOTPARALLEL: + +endif |