blob: 4e2dee5507dbfcc03b0bb390bb0f7e76017f4b65 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
cxx_id := generic
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)
|