summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2012-03-22 11:15:59 +0000
committerBenny Prijono <bennylp@teluu.com>2012-03-22 11:15:59 +0000
commite3a21d25ef4a64893b6627050c607d21dc732369 (patch)
tree903e2eaaf9aa08befc6a644fa530483e551ef1ed /Makefile
parentbf1c891d0f32fd07a4bb5d196d773f11801944e4 (diff)
Re #1463 (3rd party media support): fixed the top most Makefile
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3984 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile19
1 files changed, 9 insertions, 10 deletions
diff --git a/Makefile b/Makefile
index 6923e1c6..e33472fc 100644
--- a/Makefile
+++ b/Makefile
@@ -10,25 +10,24 @@ ifdef MINSIZE
MAKE_FLAGS := MINSIZE=1
endif
-lib:
- for dir in $(LIB_DIRS); do \
- if $(MAKE) $(MAKE_FLAGS) -C $$dir all; then \
+all clean dep depend distclean print realclean:
+ for dir in $(DIRS); do \
+ if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \
true; \
else \
exit 1; \
fi; \
- done; \
- make -C pjsip-apps/src/third_party_media
-
+ done
-all clean dep depend distclean print realclean:
- for dir in $(DIRS); do \
- if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \
+lib:
+ for dir in $(LIB_DIRS); do \
+ if $(MAKE) $(MAKE_FLAGS) -C $$dir all; then \
true; \
else \
exit 1; \
fi; \
- done
+ done; \
+
.PHONY: lib