carto/Makefile
2011-02-07 11:22:14 -05:00

17 lines
196 B
Makefile

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