diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2009-09-06 13:15:53 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2009-09-06 13:15:53 +0200 |
commit | 69c79d8181e906ce0e07cbcd2c30f8ea3890fc03 (patch) | |
tree | f135b1d66a8f6d5abd7a8a091be8a77671438f0d /libcutl/build/cxx/configuration-dynamic.make |
Initial dependency configuration
Diffstat (limited to 'libcutl/build/cxx/configuration-dynamic.make')
-rw-r--r-- | libcutl/build/cxx/configuration-dynamic.make | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/libcutl/build/cxx/configuration-dynamic.make b/libcutl/build/cxx/configuration-dynamic.make new file mode 100644 index 0000000..fa9bd03 --- /dev/null +++ b/libcutl/build/cxx/configuration-dynamic.make @@ -0,0 +1,15 @@ +cxx_id := gnu +cxx_optimize := n +cxx_debug := n +cxx_rpath := n + +cxx_pp_extra_options := $(CPPFLAGS) +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 := $(r) |