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

37 行
348 B

  1. REBAR?=rebar3
  2. all: build
  3. clean:
  4. $(REBAR) clean
  5. rm -rf logs
  6. rm -rf .eunit
  7. rm -f test/*.beam
  8. distclean: clean
  9. git clean -fxd
  10. build:
  11. $(REBAR) compile
  12. eunit:
  13. $(REBAR) eunit skip_deps=true
  14. check: build eunit
  15. release:
  16. rebar3 hex publish
  17. %.beam: %.erl
  18. erlc -o test/ $<
  19. .PHONY: all clean distclean depends build etap eunit check