Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.
 
 
 
 

37 righe
413 B

all: build
clean:
./rebar clean
rm -rf logs
rm -rf .eunit
rm test/*.beam
depends:
@if test ! -d ./deps; then \
./rebar get-deps; \
else \
./rebar update-deps; \
fi
build:
@if test ! -d ./deps; then \
./rebar get-deps; \
fi
./rebar compile
etap: test/etap.beam test/util.beam
prove test/*.t
eunit:
./rebar eunit skip_deps=true
check: build etap eunit
%.beam: %.erl
erlc -o test/ $<