carto/Makefile
2011-05-10 17:20:41 -04:00

23 lines
342 B
Makefile

#
# Run all tests
#
expresso = ./node_modules/.bin/expresso
docco = ./node_modules/.bin/docco
lint:
./node_modules/.bin/jshint lib/carto/*.js lib/carto/tree/*.js
ifndef only
test:
$(expresso) -I lib test/*.test.js
else
test:
$(expresso) -I lib test/${only}.test.js
endif
doc:
$(docco) lib/carto/*.js lib/carto/tree/*.js
.PHONY: test