Changeset 4656 for pjproject/trunk/third_party/build/speex/Makefile
- Timestamp:
- Nov 23, 2013 7:13:40 AM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
pjproject/trunk/third_party/build/speex/Makefile
r2183 r4656 6 6 RULES_MAK := $(PJDIR)/build/rules.mak 7 7 8 export SPEEX_LIB := ../../lib/libspeex-$(TARGET_NAME)$(LIBEXT) 8 export SPEEX_LIB := libspeex-$(TARGET_NAME)$(LIBEXT) 9 10 ifeq ($(PJ_SHARED_LIBRARIES),) 11 else 12 export SPEEX_SONAME := libspeex.$(SHLIB_SUFFIX) 13 export SPEEX_SHLIB := $(SPEEX_SONAME).$(PJ_VERSION_MAJOR) 14 endif 9 15 10 16 ############################################################################### … … 45 51 # $(TARGET) is defined in os-$(OS_NAME).mak file in current directory. 46 52 # 47 TARGETS := libspeex53 TARGETS := $(SPEEX_LIB) $(SPEEX_SONAME) 48 54 49 55 all: $(TARGETS) … … 55 61 distclean: realclean 56 62 57 .PHONY: dep depend libspeex clean realclean distclean 63 .PHONY: all dep depend clean realclean distclean 64 .PHONY: $(TARGETS) 65 .PHONY: $(SPEEX_LIB) $(SPEEX_SONAME) 58 66 59 libspeex: 60 $(MAKE) -f $(RULES_MAK) APP=SPEEX app=libspeex $(SPEEX_LIB) 67 libspeex: $(SPEEX_LIB) 68 $(SPEEX_SONAME): $(SPEEX_LIB) 69 $(SPEEX_LIB) $(SPEEX_SONAME): 70 $(MAKE) -f $(RULES_MAK) APP=SPEEX app=libspeex $(subst /,$(HOST_PSEP),$(LIBDIR)/$@) 61 71 62 72 clean print_lib:
Note: See TracChangeset
for help on using the changeset viewer.