From b9afacc19f8a204820638257807ba837113536cf Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Wed, 8 Jan 2014 12:41:42 +0000 Subject: [PATCH] add a new setup target The setup target will call all other target needed for test and developing. --- Makefile | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 62ced87..362f874 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -# Copyright (c) 2013 IndexData ApS. http://indexdata.com +# Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com all clean: ${MAKE} -C./tools/htdocs $@ @@ -10,7 +10,13 @@ pz2api-git-checkout distclean: check-js: ${MAKE} -C./test check +setup: pz2api-git-checkout + ${MAKE} -C./tools/htdocs mkws-js-min + ${MAKE} -C./examples/htdocs jasmine-links + check: distclean all help: - @echo "make [ all | clean | pz2api-git-checkout | check-js ]" + @echo "make [ all | setup | clean ]" + @echo " [ pz2api-git-checkout | check-js ]" + -- 1.7.10.4