Makefile 229 B

1234567891011121314151617181920
  1. # See LICENSE for licensing information.
  2. REBAR = rebar
  3. all: app
  4. app:
  5. @$(REBAR) compile
  6. clean:
  7. @$(REBAR) clean
  8. rm -f test/*.beam
  9. rm -f erl_crash.dump
  10. tests: app
  11. @$(REBAR) eunit
  12. @$(REBAR) ct
  13. dialyze:
  14. @$(REBAR) dialyze