1 # Copyright (c) 2013-2014 IndexData ApS. http://indexdata.com
3 # For running on Mike's local install of node.js
4 MIKE = PATH=$$PATH:/usr/local/lib/node-v0.10.24-linux-x64/bin
6 PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html
10 JASMINE_NODE= ./node_modules/jasmine-node/bin/jasmine-node
11 PHANTOMJS= ./node_modules/phantomjs/bin/phantomjs
13 SCREENSHOT_WIDTH= 360 480 640 768 1024 1200 1440 2048
20 rm -f mkws-error.png mkws-error.html images/*.png
22 distclean: clean clean-tmp
28 touch ${TMP_DIR}/.gitkeep
30 mkws-complete-syntax-check:
31 ${MAKE} -C../src mkws-complete.min.js
33 check: mkws-complete-syntax-check
34 @if [ ! -e node_modules ]; then echo "please run first: make node-modules"; exit 1; fi
35 ${JASMINE_NODE} --noColor --captureExceptions --forceexit ./spec
40 $(MIKE) jasmine-node --noColor --captureExceptions --forceexit spec
43 ./bomb.pl --timeout="${PHANTOMJS_TIMEOUT}.5" ${PHANTOMJS} phantom/run-jasmine.js ${PHANTOMJS_URL} ${PHANTOMJS_TIMEOUT}
46 ${PHANTOMJS} phantom/screenshot.js ${PHANTOMJS_URL} ${IMAGES}/screenshot.png 1200 1000
49 for i in ${SCREENSHOT_WIDTH}; do \
50 ${PHANTOMJS} phantom/screenshot.js http://mkws.indexdata.com ${IMAGES}/mkws-$$i.png $$i 1000 & \
55 for i in ${SCREENSHOT_WIDTH}; do \
56 ${PHANTOMJS} phantom/screenshot.js http://www.indexdata.com ${IMAGES}/indexdata-$$i.png $$i 1000 & \
60 jsbeautifier jsb indent:
61 for i in package.json ./spec*/*.js ./js/*.js ./phantom/*.js; do \
62 jsbeautifier -j $$i > $@.tmp && mv -f $@.tmp $$i; \
66 @ls ${PERL_SCRIPTS} | xargs -n1 -P16 perl -c 2>/dev/null
67 @ls ${PERL_SCRIPTS} | xargs -n2 -P8 perltidy -b
70 node_modules node-modules:
71 npm install ${NPM_INSTALL_FLAGS}
74 @echo "make [ all | check | clean | distclean ]"
75 @echo " [ phantomjs | screenshot ]"
76 @echo " [ jsbeautifier | perltidy ]"
77 @echo " [ node-modules ]"
79 @echo "DEBUG=1 make phantomjs PHANTOMJS_TIMEOUT=8 PHANTOMJS_URL=https://mkws-dev.indexdata.com/jasmine-popup.html"