From ace5ee38906ced3e8cc2b704941ef078d394bf84 Mon Sep 17 00:00:00 2001 From: Wolfram Schneider Date: Thu, 12 Dec 2013 14:54:15 +0000 Subject: [PATCH] add Makefile to create symlinks for jasmine this allow us to run the test from the local file system or from a web site --- examples/htdocs/Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 examples/htdocs/Makefile 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 ]" + -- 1.7.10.4