carto/Makefile

17 lines
194 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/mess/*.js lib/mess/tree/*.js
.PHONY: test