X-Git-Url: http://git.freeside.biz/gitweb/?a=blobdiff_plain;f=Makefile;h=7596c5b7cb5520ffab0c74d82900548ad5a182a9;hb=69f252e5353483662c81b1d6d0e750ae08577649;hp=15f8b85d890692f4b9818a2b369255929c80f424;hpb=d738d0c6677d72f62a0c9fb2fc4446c07c6e8492;p=freeside.git diff --git a/Makefile b/Makefile index 15f8b85d8..7596c5b7c 100644 --- a/Makefile +++ b/Makefile @@ -7,9 +7,10 @@ DB_USER = freeside DB_PASSWORD= TEMPLATE = asp -#mason's a bit dodgy still #TEMPLATE = mason +ASP_GLOBAL = /usr/local/etc/freeside/asp-global + FREESIDE_DOCUMENT_ROOT = /var/www/freeside HTTPD_RESTART = /etc/init.d/apache restart @@ -20,19 +21,23 @@ QUEUED_RESTART = /etc/init.d/freeside restart #not changable yet FREESIDE_CONF = /usr/local/etc/freeside +VERSION="1.4.0pre11" +TAG="1_4_0_PRE11" + help: @echo "supported targets: aspdocs masondocs alldocs docs install-docs" + @echo " htmlman" @echo " perl-modules install-perl-modules" @echo " install deploy" @echo " create-database" @echo " clean" -aspdocs: httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* +aspdocs: htmlman httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* rm -rf aspdocs cp -pr httemplate aspdocs touch aspdocs -masondocs: httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* +masondocs: htmlman httemplate/* httemplate/*/* httemplate/*/*/* httemplate/*/*/*/* httemplate/*/*/*/*/* rm -rf masondocs cp -pr httemplate masondocs ( cd masondocs; \ @@ -45,9 +50,20 @@ alldocs: aspdocs masondocs docs: make ${TEMPLATE}docs +htmlman: + [ -e ./httemplate/docs/man ] || mkdir httemplate/docs/man + [ -e ./httemplate/docs/man/bin ] || mkdir httemplate/docs/man/bin + [ -e ./httemplate/docs/man/FS ] || mkdir httemplate/docs/man/FS + [ -e ./httemplate/docs/man/FS/UI ] || mkdir httemplate/docs/man/FS/UI + [ -e DONT_REBUILD_DOCS ] || bin/pod2x + + install-docs: docs [ -e ${FREESIDE_DOCUMENT_ROOT} ] && mv ${FREESIDE_DOCUMENT_ROOT} ${FREESIDE_DOCUMENT_ROOT}.`date +%Y%m%d%H%M%S` || true cp -r ${TEMPLATE}docs ${FREESIDE_DOCUMENT_ROOT} + [ "${TEMPLATE}" = "asp" -a ! -e ${ASP_GLOBAL} ] && mkdir ${ASP_GLOBAL} || true + [ "${TEMPLATE}" = "asp" ] && chown -R freeside ${ASP_GLOBAL} || true + [ "${TEMPLATE}" = "asp" ] && cp htetc/global.asa ${ASP_GLOBAL} || true perl-modules: cd FS; \ @@ -98,3 +114,24 @@ clean: cd FS; \ make clean +#these are probably only useful if you're me... + +upload-docs: + ssh cleanwhisker.420.am rm -rf /var/www/www.sisd.com/freeside/devdocs + scp -pr httemplate/docs cleanwhisker.420.am:/var/www/www.sisd.com/freeside/devdocs + +release: upload-docs + cd /home/ivan/freeside_current + cvs tag ${TAG} + + cd /home/ivan + cvs export -r $TAG -d freeside-${VERSION} freeside + tar czvf freeside-${VERSION}.tar.gz freeside-${VERSION} + + scp freeside-${VERSION} ivan@cleanwhisker.420.am:/var/www/sisd.420.am/freeside/ + +update-webdemo: + ssh ivan@pouncequick.420.am '( cd freeside; cvs update -d -P )' + #ssh root@pouncequick.420.am '( cd /home/ivan/freeside; make clean; make deploy )' + ssh root@pouncequick.420.am '( cd /home/ivan/freeside; make deploy )' +