carto/Makefile
2011-05-03 11:12:36 -04:00

20 lines
285 B
Makefile

#
# Run all tests
#
expresso = ./node_modules/expresso/bin/expresso
docco = ./node_modules/docco/bin/docco
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