From: Wolfram Schneider Date: Thu, 12 Dec 2013 14:54:15 +0000 (+0000) Subject: add Makefile to create symlinks for jasmine X-Git-Tag: 0.9.1~60^2~9 X-Git-Url: http://lists.indexdata.dk/cgi-bin?a=commitdiff_plain;h=ace5ee38906ced3e8cc2b704941ef078d394bf84;p=mkws-moved-to-github.git add Makefile to create symlinks for jasmine this allow us to run the test from the local file system or from a web site --- diff --git a/examples/htdocs/Makefile b/examples/htdocs/Makefile new file mode 100644 index 0000000..d366a41 --- /dev/null +++ b/examples/htdocs/Makefile @@ -0,0 +1,14 @@ +# Copyright (c) 2013 IndexData ApS. http://indexdata.com + +all: jasmine-links + +clean distclean: + rm -rf test jasmine + +jasmine-links: + ln -fs ../../../jasmine . + ln -fs ../../test . + +help: + @echo "make [ all | clean | jasmine-links ]" +