You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
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
|