Makefile 203 B

12345678910111213141516171819
  1. TESTS = test/*.js
  2. all: test
  3. build: clean compile
  4. compile:
  5. npm install .
  6. npm run install
  7. test: build
  8. @./node_modules/.bin/jest \
  9. $(TESTS)
  10. clean:
  11. rm -Rf lib/bindings/
  12. .PHONY: clean test build