Fix Travis build

This commit is contained in:
Paul Oliver
2016-08-06 19:38:10 +12:00
parent e963bef653
commit b89e8e27c3
2 changed files with 30 additions and 21 deletions
+24 -17
View File
@@ -1,23 +1,30 @@
.PHONY: doc
REBAR?=rebar3
.PHONY: \
all \
clean \
nuke \
test \
update \
dialyzer
all:
./rebar compile
./rebar doc
./rebar xref
./rebar eunit
compile:
./rebar compile
doc:
./rebar doc
xref: compile
./rebar xref
@$(REBAR) compile
clean:
./rebar clean
@$(REBAR) clean
test: xref
./rebar eunit
nuke: clean
@rm -rf _build
test:
@$(REBAR) eunit
update:
@$(REBAR) update
dialyzer:
@$(REBAR) dialyzer
coveralls:
@${REBAR} coveralls send