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

32 行
322 B

REBAR?=./rebar
all: build
clean:
$(REBAR) clean
rm -rf logs
rm -rf .eunit
rm test/*.beam
deps: ./deps/
$(REBAR) get-deps update-deps
build: deps
$(REBAR) compile
etap: test/etap.beam test/util.beam
prove test/*.t
eunit:
$(REBAR) eunit skip_deps=true
check: etap eunit
%.beam: %.erl
erlc -o test/ $<