Files
PasswordManager/node_modules/bcrypt/Makefile
RochesterX 6e820464d5 Initial
2025-11-12 10:13:24 -05:00

20 lines
203 B
Makefile

TESTS = test/*.js
all: test
build: clean compile
compile:
npm install .
npm run install
test: build
@./node_modules/.bin/jest \
$(TESTS)
clean:
rm -Rf lib/bindings/
.PHONY: clean test build