/deps/mochiweb/Makefile

http://github.com/zotonic/zotonic · Makefile · 29 lines · 19 code · 10 blank · 0 comment · 0 complexity · a62cfa4e43936bbe895d87772968ed01 MD5 · raw file

  1. PREFIX:=../
  2. DEST:=$(PREFIX)$(PROJECT)
  3. REBAR=./rebar
  4. all:
  5. @$(REBAR) get-deps compile
  6. edoc:
  7. @$(REBAR) doc
  8. test:
  9. @rm -rf .eunit
  10. @mkdir -p .eunit
  11. @$(REBAR) skip_deps=true eunit
  12. clean:
  13. @$(REBAR) clean
  14. build_plt:
  15. @$(REBAR) build_plt
  16. dialyzer:
  17. @$(REBAR) analyze
  18. app:
  19. @$(REBAR) create template=mochiwebapp dest=$(DEST) appid=$(PROJECT)