summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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