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.
|
IBROWSE_EBIN_PATH=../../ibrowse/ebin
|
|
|
|
compile:
|
|
@erl -pa $(IBROWSE_EBIN_PATH) -make
|
|
|
|
test: compile
|
|
@erl -noshell -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test local_unit_tests -s erlang halt
|
|
|
|
old_tests: compile
|
|
@erl -noshell -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test unit_tests -s erlang halt
|
|
|
|
test_shell: compile
|
|
erl -boot start_clean -pa $(IBROWSE_EBIN_PATH) -s ibrowse_test_server start_server
|
|
|
|
clean:
|
|
@rm -f *.beam
|