UNPKG

215 BPlain TextView Raw
1TESTS = test/*.js
2
3all: test
4
5build: clean compile
6
7compile:
8 npm install .
9 npm run install
10
11test: build
12 @./node_modules/nodeunit/bin/nodeunit \
13 $(TESTS)
14
15clean:
16 rm -Rf lib/bindings/
17
18
19.PHONY: clean test build