Skip to content

Commit

Permalink
fix Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
manuel-rubio committed Apr 23, 2017
1 parent 2140e5f commit 8b0de9e
Showing 1 changed file with 4 additions and 10 deletions.
14 changes: 4 additions & 10 deletions Makefile
Expand Up @@ -2,22 +2,16 @@ REBAR := ./rebar3

all: compile

deps:
${REBAR} get-deps compile

compile: deps/neotoma/ebin/neotoma.beam
${REBAR} compile skip_deps=true

deps/neotoma/ebin/neotoma.beam:
${REBAR} get-deps compile
compile:
${REBAR} compile

clean:
${REBAR} clean skip_deps=true
rm -f src/mysql_proto.erl
rm -rf _build

test: deps/neotoma/ebin/neotoma.beam
test:
${REBAR} eunit skip_deps=true
./covertool -cover myproto.coverdata -appname myproto -output cobertura.xml

.PHONY: test compile clean all deps
.PHONY: test compile clean all

0 comments on commit 8b0de9e

Please sign in to comment.