X-Git-Url: http://git.indexdata.com/?p=mkws-moved-to-github.git;a=blobdiff_plain;f=tools%2Fhtdocs%2FMakefile;h=b0cfa2476018822b113de6667685a3042f5074aa;hp=36b0106cc055f6bd86aee1a678af1d7ab6ac7b20;hb=6e1edd743e5693aa1596b413dcc26ba21441dd4f;hpb=09f6c769270efae3320d298e2a4420bfa7a400cd diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 36b0106..b0cfa24 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -2,6 +2,9 @@ # 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 @@ -14,13 +17,34 @@ 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 -DOCS = README.html README.odt README.pdf -**default**: ${MKWS_JS} README.html +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) -mkws-js ${MKWS_JS}: ../../../libjs-pz2/pz2api.1.js mkws.js +docs: $(DOCS) + +pz2api-check: + @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 + +pz2api-git-checkout: + @if ! test -e ${PZ2API_JS}; then \ + ( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} ); \ + fi + +mkws-js ${MKWS_JS}: pz2api-check ${PZ2API_JS} mkws.js ( echo "/* created at: $$(date)"; \ - echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ + echo " mkws.js GIT id: $$(git log mkws.js | head -n 1 | perl -npe 's,\S+\s+,,') */"; \ curl -sSf ${JQUERY_URL}; \ cat ../../../libjs-pz2/pz2api.1.js mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} @@ -30,7 +54,7 @@ clean: 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 ""