25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 

31 lines
303 B

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/ $<