17 lines
196 B
Makefile
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
|