Makefile 164 B

123456789101112131415
  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