Makefile 191 B

123456789101112131415161718
  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 erl_crash.dump
  9. test:
  10. @$(REBAR) eunit
  11. dialyze:
  12. @$(REBAR) dialyze