| 12345678910111213141516171819202122 | TESTS = test/*.jsall: testbuild: clean configure compileconfigure:	node-gyp configurecompile: configure	node-gyp build	npm install .test: build	@./node_modules/nodeunit/bin/nodeunit \		$(TESTS)clean:	node-gyp clean.PHONY: clean test build
 |