Makefile 290 B

1234567891011121314
  1. all: test
  2. test:
  3. @node spec/node.js
  4. examples:
  5. @node examples/run.js examples/list.yml
  6. @node examples/run.js examples/list.nested.yml
  7. @node examples/run.js examples/hash.yml
  8. @node examples/run.js examples/config.yml
  9. @node examples/run.js examples/dates.yml
  10. .PHONY: test examples