您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
 
 

13 行
337 B

REBAR ?= $(shell which rebar3)
test: compile
@erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test local_unit_tests -s erlang halt
old_tests: compile
@erl -noshell -boot start_clean -pa ../../ibrowse/ebin -s ibrowse_test unit_tests -s erlang halt
compile:
@erl -pa ../../ibrowse/ebin -make
clean:
$(REBAR) clean