Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

13 righe
337 B

  1. REBAR ?= $(shell which rebar3)
  2. test: compile
  3. @erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test local_unit_tests -s erlang halt
  4. old_tests: compile
  5. @erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test unit_tests -s erlang halt
  6. compile:
  7. @erl -pa ../../ibrowse/ebin -make
  8. clean:
  9. $(REBAR) clean