Makefile 101 B

12345678
  1. test:
  2. @node test/ --integration $(TESTS)
  3. test-unit:
  4. @node test/ $(TESTS)
  5. .PHONY: test test-unit