Files
codeql-action/node_modules/zlib/Makefile
T

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
193 B
Makefile
Raw Normal View History

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