blob: 7d107e4dbfcb61a6bf02bd7b92506a53fc9bf6a1 [file] [log] [blame]
REBAR?=rebar
all: build
clean:
$(REBAR) clean
rm -rf logs
rm -rf .eunit
rm -f test/*.beam
distclean: clean
git clean -fxd
build:
$(REBAR) compile
eunit:
$(REBAR) eunit skip_deps=true
check: build eunit
%.beam: %.erl
erlc -o test/ $<
.PHONY: all clean distclean depends build etap eunit check