Skip to content

Commit

Permalink
Use skip_deps=true when running "rebar clean" in examples
Browse files Browse the repository at this point in the history
So that we don't clean the project build when cleanning the examples builds
  • Loading branch information
alavrik committed Mar 10, 2013
1 parent 2c5bd63 commit 58141e7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 1 addition & 1 deletion examples/addressbook/Makefile
Expand Up @@ -24,7 +24,7 @@ dialyzer: all


clean:
$(REBAR) clean
$(REBAR) clean skip_deps=true
rm -f addressbook.piq.pb addressbook.pb.piq l1 l2


Expand Down
5 changes: 4 additions & 1 deletion examples/custom-types/Makefile
Expand Up @@ -8,12 +8,15 @@ all:
$(REBAR) compile


test:


dialyzer: all
dialyzer deps/piqi/ebin ./ebin


clean:
$(REBAR) clean
$(REBAR) clean skip_deps=true


distclean: clean
Expand Down
2 changes: 1 addition & 1 deletion examples/untyped-json-xml/Makefile
Expand Up @@ -17,7 +17,7 @@ dialyzer: all


clean:
$(REBAR) clean
$(REBAR) clean skip_deps=true


distclean: clean
Expand Down

0 comments on commit 58141e7

Please sign in to comment.