diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2009-09-28 16:26:07 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2009-09-28 16:26:07 +0200 |
commit | 5bac93f5b37f6ae091e63aefd0f2da4def0dfd49 (patch) | |
tree | 0f81bed57dd2655c599ffa9c88c335189eee10a1 /libcult/build/cxx/configuration-dynamic.make |
Start tracking XSD dependency information with git
Diffstat (limited to 'libcult/build/cxx/configuration-dynamic.make')
-rw-r--r-- | libcult/build/cxx/configuration-dynamic.make | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/libcult/build/cxx/configuration-dynamic.make b/libcult/build/cxx/configuration-dynamic.make new file mode 100644 index 0000000..7485fe9 --- /dev/null +++ b/libcult/build/cxx/configuration-dynamic.make @@ -0,0 +1,14 @@ +cxx_id := gnu +cxx_optimize := n +cxx_debug := n +cxx_rpath := n +cxx_pp_extra_options := $(CPPFLAGS) -I$(out_root)/../stage/include +cxx_extra_options := $(CXXFLAGS) +cxx_ld_extra_options := $(LDFLAGS) +cxx_extra_libs := $(LIBS) + +r := $(shell echo $(LDFLAGS) | sed -e 's/-L *\([^ ]*\)/-L\1/g') +r := $(patsubst -L%,%,$(filter -L%,$(r))) +r := $(shell echo $(r) | sed -e 's/ /:/g') + +cxx_extra_lib_paths := $(out_root)/../stage/lib $(r) |