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

17 行
226 B

all: build
%.beam: %.erl
erlc -o test_etap/ $<
build: c_src/decoder.c
./rebar compile
check: test_etap/etap.beam test_etap/util.beam
prove test_etap/*.t
clean:
rm -rf logs .eunit
eunit:
./rebar eunit skip_deps=true