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.

48 linhas
1006 B

há 11 anos
há 9 anos
há 11 anos
há 9 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: unit_tests old_tests eunit
  11. @echo "====================================================="
  12. unit_tests:
  13. @echo "====================================================="
  14. @echo "Running tests..."
  15. @cd test && make test && cd ..
  16. old_tests:
  17. @echo "====================================================="
  18. @echo "Running old tests..."
  19. @cd test && make old_tests && cd ..
  20. eunit:
  21. @echo "====================================================="
  22. @echo "Running eunit tests..."
  23. $(REBAR) eunit
  24. xref: all
  25. $(REBAR) xref
  26. docs:
  27. $(REBAR) edoc
  28. dialyzer:
  29. $(REBAR) dialyzer
  30. install: compile
  31. mkdir -p $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  32. cp -r _build/lib/default/ibrowse/ebin $(DESTDIR)/lib/ibrowse-$(IBROWSE_VSN)/
  33. .PHONY: test docs