summaryrefslogtreecommitdiff
path: root/pjsip
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2014-02-04 07:39:55 +0000
committerLiong Sauw Ming <ming@teluu.com>2014-02-04 07:39:55 +0000
commit1342a94d5cbd8820f83ef59adcb18d14f566a3de (patch)
tree68d9173c4d485dad37bf6e21651923ac79db0bdb /pjsip
parentcc76884a5805a826a8296f0402929b2d10b532c3 (diff)
Re #1519 (commited to SVN trunk): Add lib target to build system to enable building the library only (without the executables)
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4727 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip')
-rw-r--r--pjsip/build/Makefile9
1 files changed, 5 insertions, 4 deletions
diff --git a/pjsip/build/Makefile b/pjsip/build/Makefile
index eeafad3f..37dca79d 100644
--- a/pjsip/build/Makefile
+++ b/pjsip/build/Makefile
@@ -194,11 +194,12 @@ TARGETS := $(PJSIP_LIB) $(PJSIP_SONAME) \
$(PJSIP_SIMPLE_LIB) $(PJSIP_SIMPLE_SONAME) \
$(PJSIP_UA_LIB) $(PJSIP_UA_SONAME) \
$(PJSUA_LIB_LIB) $(PJSUA_LIB_SONAME) \
- $(PJSUA2_LIB_LIB) $(PJSUA2_LIB_SONAME) \
- $(TEST_EXE) \
- $(PJSUA2_TEST_EXE)
+ $(PJSUA2_LIB_LIB) $(PJSUA2_LIB_SONAME)
+TARGETS_EXE := $(TEST_EXE) $(PJSUA2_TEST_EXE)
-all: $(TARGETS)
+all: $(TARGETS) $(TARGETS_EXE)
+
+lib: $(TARGETS)
doc:
cd .. && rm -rf docs/$(PJ_VERSION) && doxygen docs/doxygen.cfg