|
1 | 1 | define int_vars
|
2 | 2 | #Set defaults for vars which may be overridden per-package
|
3 |
| -$(1)_cc=$($($(1)_type)_CC) |
4 |
| -$(1)_cxx=$($($(1)_type)_CXX) |
5 |
| -$(1)_objc=$($($(1)_type)_OBJC) |
6 |
| -$(1)_objcxx=$($($(1)_type)_OBJCXX) |
7 |
| -$(1)_ar=$($($(1)_type)_AR) |
8 |
| -$(1)_ranlib=$($($(1)_type)_RANLIB) |
9 |
| -$(1)_libtool=$($($(1)_type)_LIBTOOL) |
10 |
| -$(1)_nm=$($($(1)_type)_NM) |
11 |
| -$(1)_cflags=$($($(1)_type)_CFLAGS) $($($(1)_type)_$(release_type)_CFLAGS) |
12 |
| -$(1)_cxxflags=$($($(1)_type)_CXXFLAGS) $($($(1)_type)_$(release_type)_CXXFLAGS) |
13 |
| -$(1)_ldflags=$($($(1)_type)_LDFLAGS) $($($(1)_type)_$(release_type)_LDFLAGS) -L$($($(1)_type)_prefix)/lib |
14 |
| -$(1)_cppflags=$($($(1)_type)_CPPFLAGS) $($($(1)_type)_$(release_type)_CPPFLAGS) -I$($($(1)_type)_prefix)/include |
| 3 | +$(1)_cc=$$($$($(1)_type)_CC) |
| 4 | +$(1)_cxx=$$($$($(1)_type)_CXX) |
| 5 | +$(1)_objc=$$($$($(1)_type)_OBJC) |
| 6 | +$(1)_objcxx=$$($$($(1)_type)_OBJCXX) |
| 7 | +$(1)_ar=$$($$($(1)_type)_AR) |
| 8 | +$(1)_ranlib=$$($$($(1)_type)_RANLIB) |
| 9 | +$(1)_libtool=$$($$($(1)_type)_LIBTOOL) |
| 10 | +$(1)_nm=$$($$($(1)_type)_NM) |
| 11 | +$(1)_cflags=$$($$($(1)_type)_CFLAGS) \ |
| 12 | + $$($$($(1)_type)_$$(release_type)_CFLAGS) |
| 13 | +$(1)_cxxflags=$$($$($(1)_type)_CXXFLAGS) \ |
| 14 | + $$($$($(1)_type)_$$(release_type)_CXXFLAGS) |
| 15 | +$(1)_ldflags=$$($$($(1)_type)_LDFLAGS) \ |
| 16 | + $$($$($(1)_type)_$$(release_type)_LDFLAGS) \ |
| 17 | + -L$$($($(1)_type)_prefix)/lib |
| 18 | +$(1)_cppflags=$$($$($(1)_type)_CPPFLAGS) \ |
| 19 | + $$($$($(1)_type)_$$(release_type)_CPPFLAGS) \ |
| 20 | + -I$$($$($(1)_type)_prefix)/include |
15 | 21 | $(1)_recipe_hash:=
|
16 | 22 | endef
|
17 | 23 |
|
|
0 commit comments