summaryrefslogtreecommitdiff
path: root/pjsip/build/Makefile
diff options
context:
space:
mode:
authorPerry Ismangil <perry@teluu.com>2011-07-22 11:52:50 +0000
committerPerry Ismangil <perry@teluu.com>2011-07-22 11:52:50 +0000
commitdcd416b3403767b56b5bcbc7c1cc03dd5bbf878a (patch)
treee500ba85b30b3a076daa5831a068aa7445d2b877 /pjsip/build/Makefile
parenta25a91ecc867db804d45b2c517925eef18e781f6 (diff)
Fixed #1336 make doc now creates version specific docs
git-svn-id: http://svn.pjsip.org/repos/pjproject/branches/1.x@3677 74dad513-b988-da41-8d7b-12977e46ad98
Diffstat (limited to 'pjsip/build/Makefile')
-rw-r--r--pjsip/build/Makefile13
1 files changed, 9 insertions, 4 deletions
diff --git a/pjsip/build/Makefile b/pjsip/build/Makefile
index 6466c57a..4e55b239 100644
--- a/pjsip/build/Makefile
+++ b/pjsip/build/Makefile
@@ -4,6 +4,7 @@
export TEST_OBJS = main.o
include ../../build.mak
+include ../../version.mak
include $(PJDIR)/build/common.mak
RULES_MAK := $(PJDIR)/build/rules.mak
@@ -109,10 +110,14 @@ TARGETS := pjsip pjsip-ua pjsip-simple pjsua-lib pjsip-test
all: $(TARGETS)
doc:
- cd .. && rm -rf docs/html docs/latex && doxygen docs/doxygen.cfg
- @if [ -n "$(WWWDIR)" ]; then \
- echo "Copying to $(WWWDIR)/pjsip/docs/html.." ; \
- cp -a ../docs/html/* $(WWWDIR)/pjsip/docs/html/ ; \
+ cd .. && rm -rf docs/$(PJ_VERSION) && doxygen docs/doxygen.cfg
+ @if [ -n "$(WWWDIR)" ] && ! [ -d "$(WWWDIR)/docs/$(PJ_VERSION)/pjsip/docs/html" ] ; then \
+ echo "Creating docs/$(PJ_VERSION)/pjsip/docs/html" ; \
+ mkdir -p $(WWWDIR)/docs/$(PJ_VERSION)/pjsip/docs/html ; \
+ fi
+ @if [ -n "$(WWWDIR)" ] && [ -d "$(WWWDIR)/docs/$(PJ_VERSION)/pjsip/docs/html" ] ; then \
+ echo "Copying docs/$(PJ_VERSION) to $(WWWDIR)/docs/$(PJ_VERSION)/pjsip/docs/html.." ; \
+ cp -v -a ../docs/$(PJ_VERSION)/html/* $(WWWDIR)/docs/$(PJ_VERSION)/pjsip/docs/html/ ; \
fi
dep: depend