您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

32 行
325 B

  1. REBAR?=./rebar
  2. all: build
  3. clean:
  4. $(REBAR) clean
  5. rm -rf logs
  6. rm -rf .eunit
  7. rm -f test/*.beam
  8. deps: ./deps/
  9. $(REBAR) get-deps update-deps
  10. build: deps
  11. $(REBAR) compile
  12. etap: test/etap.beam test/util.beam
  13. prove test/*.t
  14. eunit:
  15. $(REBAR) eunit skip_deps=true
  16. check: etap eunit
  17. %.beam: %.erl
  18. erlc -o test/ $<