diff options
author | Eric B Merritt <[email protected]> | 2013-04-03 16:43:28 -0700 |
---|---|---|
committer | Eric B Merritt <[email protected]> | 2013-04-03 18:39:49 -0700 |
commit | b370a9f074e366cd13ca4f9739f85ee36e2a68a3 (patch) | |
tree | 7ab0a31040220bd7f314f1298fa8498a868fcf10 | |
parent | 449d8e1f5cf114fe74bcb89c88ff74e98194e5ac (diff) | |
download | relx-b370a9f074e366cd13ca4f9739f85ee36e2a68a3.tar.gz relx-b370a9f074e366cd13ca4f9739f85ee36e2a68a3.tar.bz2 relx-b370a9f074e366cd13ca4f9739f85ee36e2a68a3.zip |
fix bug in rebuild rule of makefile
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -36,7 +36,7 @@ $(error "Rebar not available on this system") endif .PHONY: all compile doc clean test dialyzer typer shell distclean pdf \ - get-deps escript clean-common-test-data rebuild + update-deps escript clean-common-test-data rebuild all: deps compile escript dialyzer test @@ -114,4 +114,4 @@ distclean: clean - rm -rf $(DEPS_PLT) - rm -rvf $(CURDIR)/deps/* -rebuild: distclean get-deps compile escript dialyzer test +rebuild: distclean deps compile escript dialyzer test |