aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/relx.mk
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-08-05 11:57:39 +0200
committerLoïc Hoguin <[email protected]>2014-08-05 11:57:39 +0200
commita342fa99845c7696719f1369248fa63b571399d2 (patch)
tree9ebeb9115764bd4335fcff0d3838d5d7db729420 /plugins/relx.mk
parentd3d6e91b0d48a278d4c35c537678899e7f7f251a (diff)
downloaderlang.mk-a342fa99845c7696719f1369248fa63b571399d2.tar.gz
erlang.mk-a342fa99845c7696719f1369248fa63b571399d2.tar.bz2
erlang.mk-a342fa99845c7696719f1369248fa63b571399d2.zip
Don't download relx every build
Diffstat (limited to 'plugins/relx.mk')
-rw-r--r--plugins/relx.mk7
1 files changed, 5 insertions, 2 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk
index ad8343f..3f7fd87 100644
--- a/plugins/relx.mk
+++ b/plugins/relx.mk
@@ -25,7 +25,7 @@ endif
rel:: distclean-rel $(RELX)
@$(RELX) -c $(RELX_CONFIG) $(RELX_OPTS)
-distclean:: distclean-rel
+distclean:: distclean-rel distclean-relx
# Plugin-specific targets.
@@ -38,6 +38,9 @@ $(RELX):
@$(call relx_fetch)
distclean-rel:
- $(gen_verbose) rm -rf $(RELX) $(RELX_OUTPUT_DIR)
+ $(gen_verbose) rm -rf $(RELX_OUTPUT_DIR)
+
+distclean-relx:
+ $(gen_verbose) rm -rf $(RELX)
endif