X-Git-Url: http://git.indexdata.com/?a=blobdiff_plain;f=tools%2Fhtdocs%2FMakefile;h=428f940788e6819c59cbf4ab51dba532840b6f2f;hb=cce5846b29056214944a650796cc6d45dd623ff1;hp=1c63a7c16d059d0aa605a46992b7ff54e881bb5e;hpb=8165e41ceaf974ff4d1534169c04675c9885536e;p=mkws-moved-to-github.git diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 1c63a7c..428f940 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -17,8 +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 +PZ2API_JS= ../../../pazpar2/js/pz2.js +PZ2API_GIT= ssh://git.indexdata.com:222/home/git/pub/pazpar2 +############################## DOCS = README.html README.odt README.pdf \ whitepaper.html whitepaper.odt whitepaper.pdf @@ -31,32 +32,28 @@ docs: $(DOCS) pz2api-git-checkout: @if ! test -e ${PZ2API_JS}; then \ - ( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} ); \ + ( cd ../../.. && git clone ${PZ2API_GIT} ); \ fi -mkws-js ${MKWS_JS}: ${PZ2API_JS} mkws.js +mkws-js ${MKWS_JS}: mkws.js handlebars-v1.1.2.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"; \ + echo ""; \ + echo "Please run:"; \ + echo "$$ make pz2api-git-checkout"; \ + echo ""; \ 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 ${JQUERY_URL} | perl -npe 's,sourceMappingURL=jquery.*map,,'; \ + cat handlebars-v1.1.2.js; \ cat ${PZ2API_JS} mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} -distclean: clean -clean: - rm -f ${MKWS_JS} $(DOCS) - -help: - @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!" +handlebars-v1.1.2.js: + curl -sSf http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v1.1.2.js -o $@ # For a description of pandoc's markdown format, see: @@ -75,8 +72,25 @@ help: pandoc --standalone $< -o $@ chmod ugo-w $@ +# ### In order to compile the whitepaper, which has tables, to PDF, +# you will need to install the Debian package +# texlive-latex-recommended %.pdf: %.markdown rm -f $@ pandoc --standalone $< -o $@ chmod ugo-w $@ +############################## +# helper targets +# +distclean: clean +clean: + rm -f ${MKWS_JS} $(DOCS) + +help: + @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!" +