Não pode escolher mais do que 25 tópicos Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.

32 linhas
536 B

há 11 anos
há 9 anos
há 11 anos
há 9 anos
há 9 anos
  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