summaryrefslogtreecommitdiff
path: root/pjlib-util
diff options
context:
space:
mode:
authorLiong Sauw Ming <ming@teluu.com>2013-10-23 06:39:47 +0000
committerLiong Sauw Ming <ming@teluu.com>2013-10-23 06:39:47 +0000
commit8ce6e77067d4d7ebbd49554328295e8e98214c3a (patch)
tree1c581a3fc0cdd9bf7285f7663489561f90ea4f4d /pjlib-util
parentc7812eb153df4b3f69123bc44bdab669643031a8 (diff)
Fixed #1707: Add support for paralel build
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@4632 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjlib-util')
-rw-r--r--pjlib-util/build/Makefile10
1 files changed, 7 insertions, 3 deletions
diff --git a/pjlib-util/build/Makefile b/pjlib-util/build/Makefile
index ca57e7e4..5bff51e3 100644
--- a/pjlib-util/build/Makefile
+++ b/pjlib-util/build/Makefile
@@ -70,12 +70,16 @@ doc:
dep: depend
distclean: realclean
-.PHONY: dep depend pjlib pjlib-test clean realclean distclean
+.PHONY: dep depend clean realclean distclean
+.PHONY: $(TARGETS)
+.PHONY: $(PJLIB_UTIL_LIB) $(UTIL_TEST_EXE)
-pjlib-util:
+pjlib-util: $(PJLIB_UTIL_LIB)
+$(PJLIB_UTIL_LIB):
$(MAKE) -f $(RULES_MAK) APP=PJLIB_UTIL app=pjlib-util $(PJLIB_UTIL_LIB)
-pjlib-util-test: pjlib-util
+pjlib-util-test: $(UTIL_TEST_EXE)
+$(UTIL_TEST_EXE): $(PJLIB_UTIL_LIB)
$(MAKE) -f $(RULES_MAK) APP=UTIL_TEST app=pjlib-util-test $(UTIL_TEST_EXE)
.PHONY: ../lib/pjlib-util.ko