refactor translation checks
[mkws-moved-to-github.git] / Makefile
index dcd5995..a105790 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,28 +1,33 @@
-# Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com
+# Copyright (c) 2013-2014 Index Data ApS. http://indexdata.com
+#
+# You need node.js to build MKWS. On caliban, get it using:
+# export PATH=$PATH:/home/indexdata/node/node-v0.10.32-linux-x64/bin
 
-all:
-       ${MAKE} -C./tools/htdocs $@
-       ${MAKE} -C./doc $@
+all: setup
+       ${MAKE} -C./src
+       ${MAKE} -C./doc
+       ${MAKE} -C./examples/htdocs
 
 clean distclean:
-       ${MAKE} -C./tools/htdocs $@
+       ${MAKE} -C./src $@
        ${MAKE} -C./doc $@
        ${MAKE} -C./examples/htdocs $@
        ${MAKE} -C./test $@
 
-check-js:
-       ${MAKE} -C./test check
-
-phantomjs p:
-       ${MAKE} -C./test $@
+check: setup check-js phantomjs
 
-# must be called once after GIT checkout
-setup: 
+setup:
        ${MAKE} -C./test node-modules
 
-check: setup check-js phantomjs
+check-js:
+       ${MAKE} -C./test $@
+
+phantomjs p p-all phantomjs-all jsb:
+       ${MAKE} -C./test $@
 
 help:
        @echo "make [ all | setup | clean | distclean ]"
        @echo "     [ check | check-js | phantomjs ]"
+       @echo ""
+       @echo "If 'make check' timeout is too short, extend with: make check PHANTOMJS_TIMEOUT=120"