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

32 行
536 B

  1. IBROWSE_VSN = $(shell sed -n 's/.*{vsn,.*"\(.*\)"}.*/\1/p' src/ibrowse.app.src)
  2. DIALYZER_PLT=$(CURDIR)/.dialyzer_plt
  3. DIALYZER_APPS=erts kernel stdlib ssl crypto public_key
  4. REBAR ?= $(shell which rebar3)
  5. all: compile
  6. compile:
  7. $(REBAR) compile
  8. clean:
  9. $(REBAR) clean
  10. test:
  11. $(REBAR) eunit
  12. xref: all
  13. $(REBAR) xref
  14. docs:
  15. $(REBAR) edoc
  16. dialyzer:
  17. $(REBAR) dialyzer
  18. install: compile
  19. mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  20. cp -r _build/lib/default/ibrowse/ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  21. .PHONY: test docs