web-deploy/node_modules/zlib/Makefile

16 lines
193 B
Makefile
Raw Normal View History

2024-04-26 18:37:00 +01:00
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