summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorConstantin Rack <constantin@rack.li>2015-08-11 15:24:14 +0200
committerConstantin Rack <constantin@rack.li>2015-08-11 15:24:14 +0200
commit96b5f469a457f867372b5353f5013950775f31ed (patch)
treed18b7978e065eac17226a86878b4d9b3ad4ad2cd /Makefile
parent02e873ebf6d1592ff7ddf61cb378139e9a632bbd (diff)
downloadelixir-96b5f469a457f867372b5353f5013950775f31ed.tar.gz
Rename release_zip to release_precompiled. Fixes #3543
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 4 insertions, 4 deletions
diff --git a/Makefile b/Makefile
index 8fcdd2b35..b8435f131 100644
--- a/Makefile
+++ b/Makefile
@@ -12,7 +12,7 @@ INSTALL_DIR = $(INSTALL) -m755 -d
INSTALL_DATA = $(INSTALL) -m644
INSTALL_PROGRAM = $(INSTALL) -m755
-.PHONY: install install_man compile erlang elixir build_man build_plt clean_man clean_plt dialyze test clean clean_man docs release_docs release_zip check_erlang_release
+.PHONY: install install_man compile erlang elixir build_man build_plt clean_man clean_plt dialyze test clean clean_man docs release_docs release_precompiled check_erlang_release
.NOTPARALLEL: compile
#==> Functions
@@ -169,10 +169,10 @@ docs_logger: compile ../ex_doc/bin/ex_doc
#==> Release tasks
-release_zip: compile
- rm -rf v$(VERSION).zip
+release_precompiled: compile
+ rm -rf Precompiled-v$(VERSION).zip
$(MAKE) build_man
- zip -9 -r v$(VERSION).zip bin CHANGELOG.md LEGAL lib/*/ebin LICENSE man README.md VERSION
+ zip -9 -r Precompiled-v$(VERSION).zip bin CHANGELOG.md LEGAL lib/*/ebin LICENSE man README.md VERSION
$(MAKE) clean_man
release_docs: docs