X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2FMakefile;h=84043d2c25a5439664a170f646107b5d0fd81875;hb=1e7d39d145cc36121f176b758f5436670287b62c;hp=38d83f42784f4e7bd6df362539f2c5f717d63283;hpb=5892f41b7ff37f6017d0e2baf7ce8db5d9266bd3;p=mkws-moved-to-github.git diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 38d83f4..84043d2 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -2,22 +2,81 @@ # Copyright (c) 2013 IndexData ApS. http://indexdata.com # +############################## +# select a jquery version +# +#JQUERY_URL= http://code.jquery.com/jquery-2.0.3.min.js +JQUERY_URL= http://code.jquery.com/jquery-1.10.0.min.js +#JQUERY_URL= http://code.jquery.com/jquery-1.9.1.min.js +#JQUERY_URL= http://code.jquery.com/jquery-1.8.3.min.js +#JQUERY_URL= http://code.jquery.com/jquery-1.7.2.min.js +#JQUERY_URL= http://code.jquery.com/jquery-1.6.4.min.js +#JQUERY_URL= http://code.jquery.com/jquery-1.4.4.min.js + +JQUERY_UI_URL= http://code.jquery.com/ui/1.10.3/jquery-ui.js +#JQUERY_UI_URL= http://code.jquery.com/ui/1.8.0/jquery-ui.min.js + MKWS_JS= mkws-complete.js -all: ${MKWS_JS} +PZ2API_JS= ../../../libjs-pz2/pz2api.1.js +PZ2API_GIT= ssh://git.indexdata.com:222/home/git/pub/libjs-pz2 + +DOCS = README.html README.odt README.pdf \ + whitepaper.html whitepaper.odt whitepaper.pdf + +**default**: ${MKWS_JS} README.html whitepaper.html + +all: ${MKWS_JS} $(DOCS) + +docs: $(DOCS) + +pz2api-git-checkout: + @if ! test -e ${PZ2API_JS}; then \ + ( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} ); \ + fi -mkws-js ${MKWS_JS}: ../../../libjs-pz2/pz2api.1.js mkws.js +mkws-js ${MKWS_JS}: ${PZ2API_JS} mkws.js + @if ! test -e ${PZ2API_JS}; then \ + echo "The pazpar2 JS file ${PZ2API_JS} does not exists."; \ + echo "Did you checked out the source from the git repo?"; \ + echo "Please run: make pz2api-git-checkout"; \ + exit 1; \ + fi ( echo "/* created at: $$(date)"; \ - echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ - curl -sSf http://code.jquery.com/jquery-1.10.0.min.js; \ + echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ + curl -sSf ${JQUERY_URL} | perl -npe 's,sourceMappingURL=jquery.*map,,'; \ cat ../../../libjs-pz2/pz2api.1.js mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} distclean: clean clean: - rm -f ${MKWS_JS} + rm -f ${MKWS_JS} $(DOCS) help: - @echo "make [ help | mkws-js | clean ]" + @echo "make [ help | mkws-js | docs | clean ]" + @echo "" + @echo "make JQUERY_URL=http://code.jquery.com/jquery-2.0.3.min.js clean mkws-js" @echo "" @echo "Please check ./README file too!" + +# For a description of pandoc's markdown format, see: +# http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html --> + +# for older pandoc (<1.9) run first: +# perl -i.bak -npe 's/"(Authors|Subjects)": "(.*?)"/"$1": "test"/' tools/htdocs/whitepaper.markdown +# +%.html: %.markdown + rm -f $@ + pandoc --standalone --toc -c mkws-doc.css $< | sed '/^$//d' > $@ + chmod ugo-w $@ + +%.odt: %.markdown + rm -f $@ + pandoc --standalone $< -o $@ + chmod ugo-w $@ + +%.pdf: %.markdown + rm -f $@ + pandoc --standalone $< -o $@ + chmod ugo-w $@ +