Skip to content

Commit

Permalink
Remove obsolete make target
Browse files Browse the repository at this point in the history
  • Loading branch information
tolbrino committed Nov 6, 2018
1 parent 3e271cf commit b07fa21
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Makefile
@@ -1,6 +1,6 @@
REBAR3 ?= rebar3
.PHONY: all clean clean-all compile test doc dialyzer xref ci

.PHONY: all clean clean_plt compile test doc dialyzer xref ci
REBAR3 ?= rebar3

all: compile xref test

Expand All @@ -9,11 +9,12 @@ ci: compile xref dialyzer test
compile:
$(REBAR3) compile

clean: clean_plt
clean:
$(REBAR3) clean

clean-all: clean
rm -rf _build

test:
$(REBAR3) as test do eunit
$(REBAR3) as test do ct
Expand All @@ -24,8 +25,5 @@ xref:
doc:
$(REBAR3) as docs do edoc

clean_plt:
rm -f $(EXOMETER_PLT)

dialyzer: compile
$(REBAR3) dialyzer

0 comments on commit b07fa21

Please sign in to comment.