X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2FMakefile;h=e73a87a57e0bf5e5911ea612e442a455df56e02b;hb=1ab02379768462976eebb1fc125e550fa461f7e7;hp=7b41bc26593653f7ddb6827717afc556c95f8654;hpb=1bf0aa0e3a4a625861f736fa89bd5a8c1e81ea00;p=mkws-moved-to-github.git diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 7b41bc2..e73a87a 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -17,6 +17,9 @@ 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 +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 @@ -26,7 +29,15 @@ all: ${MKWS_JS} $(DOCS) docs: $(DOCS) -mkws-js ${MKWS_JS}: ../../../libjs-pz2/pz2api.1.js mkws.js +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 "( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} )"; \ + exit 1; \ + 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+,,') */"; \ curl -sSf ${JQUERY_URL}; \