From e3a21d25ef4a64893b6627050c607d21dc732369 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 22 Mar 2012 11:15:59 +0000 Subject: 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 --- Makefile | 19 +++++++++---------- 1 file changed, 9 insertions(+), 10 deletions(-) (limited to 'Makefile') 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 -- cgit v1.2.3