Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

17 lignes
500 B

il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
il y a 9 ans
  1. REBAR ?= $(shell which rebar3)
  2. IBROWSE_EBIN_PATH=../_build/default/lib/ibrowse/ebin
  3. compile:
  4. @erl -pa $(IBROWSE_EBIN_PATH) -make
  5. test: compile
  6. @erl -noshell -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test local_unit_tests -s erlang halt
  7. old_tests: compile
  8. @erl -noshell -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test unit_tests -s erlang halt
  9. test_shell: compile
  10. erl -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test_server start_server
  11. clean:
  12. @rm -f *.beam