2013-10-27 20:13:02 +00:00
|
|
|
.PHONY: init test lint clean
|
2013-10-26 20:20:19 +00:00
|
|
|
test: init
|
|
|
|
mocha -R spec
|
|
|
|
|
2013-10-27 20:13:02 +00:00
|
|
|
lint:
|
|
|
|
jshint cfb.js
|
|
|
|
|
2013-10-26 20:20:19 +00:00
|
|
|
init:
|
|
|
|
if [ ! -e test_files ]; then git clone https://github.com/Niggler/test_files; fi
|
|
|
|
cd test_files; make
|
|
|
|
|
|
|
|
clean:
|
|
|
|
rm -rf ./test_files/
|