aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
authorEric Merritt <[email protected]>2013-02-04 18:53:09 -0800
committerEric Merritt <[email protected]>2013-02-04 18:53:09 -0800
commit60b074edbb09b43618febdf8eb50a330db2aa677 (patch)
tree372f8d01399853160384a8093328ab771137669b /Makefile
parent62b4f79fa00e7cc5f44621efbd4356a582fbbfb8 (diff)
parent2558618906a221ebe3cc4b2582bf59d9d7396de5 (diff)
downloadrelx-60b074edbb09b43618febdf8eb50a330db2aa677.tar.gz
relx-60b074edbb09b43618febdf8eb50a330db2aa677.tar.bz2
relx-60b074edbb09b43618febdf8eb50a330db2aa677.zip
Merge pull request #26 from tsloughter/next
make all grabs deps if deps dir does not exist
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 6 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index a7e9bb6..96e14ae 100644
--- a/Makefile
+++ b/Makefile
@@ -38,16 +38,20 @@ endif
.PHONY: all compile doc clean test dialyzer typer shell distclean pdf \
get-deps escript clean-common-test-data rebuild
-all: compile escript dialyzer test
+all: deps compile escript dialyzer test
# =============================================================================
# Rules to build the system
# =============================================================================
-get-deps:
+deps:
$(REBAR) get-deps
$(REBAR) compile
+update-deps:
+ $(REBAR) update-deps
+ $(REBAR) compile
+
compile:
$(REBAR) skip_deps=true compile