Nelze vybrat více než 25 témat Téma musí začínat písmenem nebo číslem, může obsahovat pomlčky („-“) a může být dlouhé až 35 znaků.
 
 
 
 

31 řádky
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/ $<