PageRenderTime 29ms CodeModel.GetById 16ms RepoModel.GetById 0ms app.codeStats 0ms

/Makefile

http://github.com/basho/mochiweb
Makefile | 23 lines | 16 code | 7 blank | 0 comment | 0 complexity | bafc62d2d7adfe53a730ddfedd3d008d MD5 | raw file
Possible License(s): MIT
  1. PREFIX:=../
  2. DEST:=$(PREFIX)$(PROJECT)
  3. REBAR=./rebar
  4. .PHONY: all edoc test clean build_plt dialyzer app
  5. all:
  6. @$(REBAR) prepare-deps
  7. edoc: all
  8. @$(REBAR) doc
  9. test:
  10. @rm -rf .eunit
  11. @mkdir -p .eunit
  12. @$(REBAR) eunit
  13. clean:
  14. @$(REBAR) clean
  15. app:
  16. @$(REBAR) -r create template=mochiwebapp dest=$(DEST) appid=$(PROJECT)