summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBenny Prijono <bennylp@teluu.com>2008-06-20 21:39:02 +0000
committerBenny Prijono <bennylp@teluu.com>2008-06-20 21:39:02 +0000
commitdcadef7fc04bb899333fb0ab472679c8ac280e09 (patch)
tree2338aea1588dac3380a1cbaf80b50a0a57dc3d80 /Makefile
parentf06496992c8bbc62f899e4ee782889a3a4b08a4e (diff)
Updated doxygen documentations
git-svn-id: http://svn.pjsip.org/repos/pjproject/trunk@2037 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 14 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 7a582504..507bb682 100644
--- a/Makefile
+++ b/Makefile
@@ -7,7 +7,7 @@ ifdef MINSIZE
MAKE_FLAGS := MINSIZE=1
endif
-all clean dep depend distclean doc print realclean:
+all clean dep depend distclean print realclean:
for dir in $(DIRS); do \
if $(MAKE) $(MAKE_FLAGS) -C $$dir/build $@; then \
true; \
@@ -16,6 +16,19 @@ all clean dep depend distclean doc print realclean:
fi; \
done
+doc:
+ @if test \( ! "$(WWWDIR)" == "" \) -a \( ! -d $(WWWDIR)/pjlib/docs/html \) ; then \
+ echo 'Directory "$(WWWDIR)" does not look like a valid pjsip web directory'; \
+ exit 1; \
+ fi
+ for dir in $(DIRS); do \
+ if $(MAKE) $(MAKE_FLAGS) -C $$dir/build $@; then \
+ true; \
+ else \
+ exit 1; \
+ fi; \
+ done
+
LIBS = pjlib/lib/libpj-$(TARGET_NAME).a \
pjlib-util/lib/libpjlib-util-$(TARGET_NAME).a \
pjnath/lib/libpjnath-$(TARGET_NAME).a \