2010-03-19 06:13:27 +08:00
|
|
|
#
|
|
|
|
# Run all tests
|
|
|
|
#
|
2011-01-26 06:37:55 +08:00
|
|
|
|
|
|
|
ifndef only
|
|
|
|
test:
|
2011-01-27 07:09:27 +08:00
|
|
|
bin/expresso -I lib test/*.test.js
|
2011-01-26 06:37:55 +08:00
|
|
|
else
|
2011-01-20 01:16:50 +08:00
|
|
|
test:
|
2011-01-26 06:37:55 +08:00
|
|
|
bin/expresso -I lib test/${only}.test.js
|
|
|
|
endif
|
2011-01-26 06:10:47 +08:00
|
|
|
|
2011-02-03 05:24:20 +08:00
|
|
|
doc:
|
2011-02-03 05:47:33 +08:00
|
|
|
docco lib/mess/*.js lib/mess/tree/*.js
|
2011-02-03 05:24:20 +08:00
|
|
|
|
2011-01-26 06:10:47 +08:00
|
|
|
.PHONY: test
|