This commit is contained in:
Fred Boniface
2024-04-26 18:37:00 +01:00
commit 12b22bd1b2
202 changed files with 63202 additions and 0 deletions

15
node_modules/zlib/Makefile generated vendored Normal file
View File

@@ -0,0 +1,15 @@
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