20 lines
215 B
Makefile
Raw Normal View History

2025-04-09 20:33:41 +09:00
TESTS = test/*.js
all: test
build: clean compile
compile:
npm install .
npm run install
test: build
@./node_modules/nodeunit/bin/nodeunit \
$(TESTS)
clean:
rm -Rf lib/bindings/
.PHONY: clean test build