Makefile 296 B

12345678910111213141516171819202122
  1. .PHONY: all compile test dialyzer clean distclean doc
  2. all: compile test dialyzer
  3. @rebar compile
  4. compile:
  5. @rebar compile
  6. test:
  7. @rebar eunit skip_deps=true
  8. dialyzer:
  9. @dialyzer -Wunderspecs -r ebin
  10. doc:
  11. @rebar doc skip_deps=true
  12. clean:
  13. @rebar clean
  14. distclean: clean
  15. @rebar delete-deps