summaryrefslogtreecommitdiff
path: root/pjsip-apps
diff options
context:
space:
mode:
authorJason Parker <jparker@digium.com>2013-03-11 15:48:26 -0500
committerJason Parker <jparker@digium.com>2013-03-11 15:48:26 -0500
commit1873b7a03a08b00140610d531bb6c0bb71e0e91a (patch)
treecc5cb46cfdcc6618b85da82e69550325b0515a0d /pjsip-apps
parentd66961ab59a59cc5684a8e59c7e581bd07978010 (diff)
parent74ce69c77a8ed993870e6cc22582a1dea8e918e6 (diff)
Merge branch 'patch/parallel-build' of github.com:asterisk/pjproject
Diffstat (limited to 'pjsip-apps')
-rw-r--r--pjsip-apps/build/Makefile12
1 files changed, 7 insertions, 5 deletions
diff --git a/pjsip-apps/build/Makefile b/pjsip-apps/build/Makefile
index 146e841..b5f4c8a 100644
--- a/pjsip-apps/build/Makefile
+++ b/pjsip-apps/build/Makefile
@@ -57,8 +57,6 @@ export CC_OUT CC AR RANLIB HOST_MV HOST_RM HOST_RMDIR HOST_MKDIR OBJEXT LD LDOUT
#
TARGETS := pjsua pjsystest samples
-.PHONY: $(TARGETS)
-
all: $(TARGETS)
doc:
@@ -66,12 +64,16 @@ doc:
dep: depend
distclean: realclean
-.PHONY: dep depend pjsua clean realclean distclean
+.PHONY: dep depend clean realclean distclean
+.PHONY: $(TARGETS)
+.PHONY: $(PJSUA_EXE) $(PJSYSTEST_EXE)
-pjsua:
+pjsua: $(PJSUA_EXE)
+$(PJSUA_EXE):
$(MAKE) -f $(RULES_MAK) APP=PJSUA app=pjsua $(PJSUA_EXE)
-pjsystest:
+pjsystest: $(PJSYSTEST_EXE)
+$(PJSYSTEST_EXE):
$(MAKE) -f $(RULES_MAK) APP=PJSYSTEST app=pjsystest $(PJSYSTEST_EXE)
samples: