Add a test page for the motd problem FRES-4
[mkws-moved-to-github.git] / Makefile
1 # Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com
2
3 all:
4         ${MAKE} -C./tools/htdocs $@
5
6 clean distclean:
7         ${MAKE} -C./tools/htdocs $@
8         ${MAKE} -C./examples/htdocs $@
9         ${MAKE} -C./test $@
10
11 check-js:
12         ${MAKE} -C./test check
13 phantomjs:
14         ${MAKE} -C./test $@
15
16 # must be called once after GIT checkout
17 setup:  
18         ${MAKE} -C./tools/htdocs mkws-js-min
19         ${MAKE} -C./examples/htdocs jasmine-links
20         ${MAKE} -C./test node-modules
21
22 check: setup check-js
23
24 help:
25         @echo "make [ all | setup | clean | distclean ]"
26         @echo "     [ check | check-js | phantomjs ]"
27