Makefile 201 B

1234567891011121314151617
  1. NODE = node
  2. NPM = npm
  3. NODEUNIT = node_modules/nodeunit/bin/nodeunit
  4. all: clean node_gyp
  5. test: clean node_gyp
  6. npm test
  7. node_gyp: clean
  8. node-gyp configure build
  9. clean:
  10. node-gyp clean
  11. .PHONY: all