2012-03-06 00:20:34 -08:00
|
|
|
compile: clean get-deps
|
2011-11-29 20:05:49 -08:00
|
|
|
./rebar --jobs=1 compile
|
|
|
|
|
2012-03-06 00:20:34 -08:00
|
|
|
compile-test: get-test-deps
|
|
|
|
./rebar --config rebar.test.config --jobs 1 compile
|
|
|
|
|
2011-11-29 20:05:49 -08:00
|
|
|
clean:
|
|
|
|
./rebar clean
|
|
|
|
|
2012-03-06 00:20:34 -08:00
|
|
|
clean-test:
|
|
|
|
./rebar --config rebar.test.config clean
|
|
|
|
|
|
|
|
get-deps:
|
|
|
|
./rebar get-deps
|
|
|
|
|
|
|
|
get-test-deps:
|
|
|
|
./rebar --config rebar.test.config get-deps
|
|
|
|
|
|
|
|
test: clean-test compile-test
|
|
|
|
./rebar --config rebar.test.config --jobs 1 skip_deps=true eunit
|