You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

16 lines
193 B

build:
node-waf build
clean:
node-waf clean
ifndef only
test: build
@expresso -I lib test/*.test.js
else
test: build
@expresso -I lib test/${only}.test.js
endif
.PHONY: build clean test