From 3fde079dd8b4ab7b422a441973faca783051b564 Mon Sep 17 00:00:00 2001 From: Benny Prijono Date: Thu, 21 Oct 2010 02:21:37 +0000 Subject: Misc (re #1134): added the ability to add python module build with the top level build, by adding pjsip-apps/src/python into EXTRA_DIRS in user.mak. Also changed the make command in python module to just build the module without installing since installing needs root permission git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@3351 74dad513-b988-da41-8d7b-12977e46ad98 --- Makefile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index f163403a..51459931 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,8 @@ include build.mak include build/host-$(HOST_NAME).mak +-include user.mak -DIRS = pjlib pjlib-util pjnath third_party pjmedia pjsip pjsip-apps +DIRS = pjlib/build pjlib-util/build pjnath/build third_party/build pjmedia/build pjsip/build pjsip-apps/build $(EXTRA_DIRS) ifdef MINSIZE MAKE_FLAGS := MINSIZE=1 @@ -9,7 +10,7 @@ endif all clean dep depend distclean print realclean: for dir in $(DIRS); do \ - if $(MAKE) $(MAKE_FLAGS) -C $$dir/build $@; then \ + if $(MAKE) $(MAKE_FLAGS) -C $$dir $@; then \ true; \ else \ exit 1; \ -- cgit v1.2.3