add Makefile to create symlinks for jasmine
authorWolfram Schneider <wosch@indexdata.dk>
Thu, 12 Dec 2013 14:54:15 +0000 (14:54 +0000)
committerWolfram Schneider <wosch@indexdata.dk>
Thu, 12 Dec 2013 14:54:15 +0000 (14:54 +0000)
this allow us to run the test from the local file system
or from a web site

examples/htdocs/Makefile [new file with mode: 0644]

diff --git a/examples/htdocs/Makefile b/examples/htdocs/Makefile
new file mode 100644 (file)
index 0000000..d366a41
--- /dev/null
@@ -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 ]"
+