diff options
-rw-r--r-- | plugins/relx.mk | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/relx.mk b/plugins/relx.mk index 177e5a7..0794b2e 100644 --- a/plugins/relx.mk +++ b/plugins/relx.mk @@ -47,6 +47,8 @@ distclean-relx-rel: distclean-relx: $(gen_verbose) rm -rf $(RELX) +# Run target. + ifeq ($(wildcard $(RELX_CONFIG)),) run: else @@ -62,4 +64,10 @@ RELX_RELEASE = `$(call erlang,$(get_relx_release.erl))` run: all @$(RELX_OUTPUT_DIR)/$(RELX_RELEASE)/bin/$(RELX_RELEASE) console + +help:: + @printf "%s\n" "" \ + "Relx targets:" \ + " run Compile the project, build the release and run it" + endif |