aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/relx.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-05-28 22:07:54 +0200
committerLoïc Hoguin <[email protected]>2014-05-28 22:17:51 +0200
commit58b99e7f457bc056e91d2d1721cbb65fcd517afe (patch)
tree16f20657dcb4f1713ff3bfc02de875b85e7875c4 /plugins/relx.mk
parentb47d3f4c3e097aa28a08f72931d2ce8c50039681 (diff)
downloaderlang.mk-58b99e7f457bc056e91d2d1721cbb65fcd517afe.tar.gz
erlang.mk-58b99e7f457bc056e91d2d1721cbb65fcd517afe.tar.bz2
erlang.mk-58b99e7f457bc056e91d2d1721cbb65fcd517afe.zip
Cut erlang.mk into many small components
* The build.config says what gets into the generated erlang.mk. * The default erlang.mk in the repository hasn't changed yet. * Clean targets were separated into "clean" and "distclean". * The "help" target was added to display some help message. I probably broke a couple things...
Diffstat (limited to 'plugins/relx.mk')
-rw-r--r--plugins/relx.mk43
1 files changed, 43 insertions, 0 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk
new file mode 100644
index 0000000..5213318
--- /dev/null
+++ b/plugins/relx.mk
@@ -0,0 +1,43 @@
+# Copyright (c) 2013-2014, Loïc Hoguin <[email protected]>
+# This file is part of erlang.mk and subject to the terms of the ISC License.
+
+.PHONY: distclean-rel
+
+# Configuration.
+
+RELX_CONFIG ?= $(CURDIR)/relx.config
+
+ifneq ($(wildcard $(RELX_CONFIG)),)
+
+RELX ?= $(CURDIR)/relx
+export RELX
+
+RELX_URL ?= https://github.com/erlware/relx/releases/download/v0.6.0/relx
+RELX_OPTS ?=
+RELX_OUTPUT_DIR ?= _rel
+
+ifneq ($(firstword $(subst -o,,$(RELX_OPTS))),)
+ RELX_OUTPUT_DIR = $(firstword $(subst -o,,$(RELX_OPTS)))
+endif
+
+# Core targets.
+
+rel:: distclean-rel $(RELX)
+ @$(RELX) -c $(RELX_CONFIG) $(RELX_OPTS)
+
+distclean:: distclean-rel
+
+# Plugin-specific targets.
+
+define relx_fetch
+ $(call core_http_get,$(RELX),$(RELX_URL))
+ chmod +x $(RELX)
+endef
+
+$(RELX):
+ @$(call relx_fetch)
+
+distclean-rel:
+ $(gen_verbose) rm -rf $(RELX_OUTPUT_DIR)
+
+endif