summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile5
-rw-r--r--pjsip-apps/src/python/Makefile2
2 files changed, 4 insertions, 3 deletions
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; \
diff --git a/pjsip-apps/src/python/Makefile b/pjsip-apps/src/python/Makefile
index 43fe7bff..7fdcec01 100644
--- a/pjsip-apps/src/python/Makefile
+++ b/pjsip-apps/src/python/Makefile
@@ -1,5 +1,5 @@
all:
- python setup.py install
+ python setup.py build
clean:
python setup.py clean