From b177c9f93903fe2db04ac378a71c0b26ba8e2f2f Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 26 Nov 2013 12:47:52 +0000 Subject: [PATCH] Add rule to download handlebars-v1.1.2.js (For some reason, it can't be run from its own location.) --- tools/htdocs/Makefile | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tools/htdocs/Makefile b/tools/htdocs/Makefile index 8ad95ce..d56f697 100644 --- a/tools/htdocs/Makefile +++ b/tools/htdocs/Makefile @@ -34,7 +34,7 @@ pz2api-git-checkout: ( cd $$(dirname $$(dirname ${PZ2API_JS})); git clone ${PZ2API_GIT} ); \ fi -mkws-js ${MKWS_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?"; \ @@ -47,6 +47,9 @@ mkws-js ${MKWS_JS}: mkws.js cat ${PZ2API_JS} mkws.js ) > ${MKWS_JS}.new mv -f ${MKWS_JS}.new ${MKWS_JS} +handlebars-v1.1.2.js: + curl -sSf http://builds.handlebarsjs.com.s3.amazonaws.com/handlebars-v1.1.2.js -o $@ + distclean: clean clean: rm -f ${MKWS_JS} $(DOCS) -- 1.7.10.4