aboutsummaryrefslogblamecommitdiffstats
path: root/plugins/sfx.mk
blob: 75d34da345732d46f0de8b40448c13e40e348cf6 (plain) (tree)

























                                                                             
                                              












                                                      
                                                                                        



                                         
# Copyright (c) 2016, Loïc Hoguin <[email protected]>
# This file is part of erlang.mk and subject to the terms of the ISC License.

.PHONY: sfx

ifdef RELX_RELEASE
ifdef SFX

# Configuration.

SFX_OUTPUT = $(RELX_OUTPUT_DIR)/$(RELX_RELEASE).run

# Core targets.

rel:: sfx

# Plugin-specific targets.

define sfx_stub
#!/bin/sh

TMPDIR=`mktemp -d`
ARCHIVE=`awk '/^__ARCHIVE_BELOW__$$/ {print NR + 1; exit 0;}' $$0`
FILENAME=$$(basename $$0)
REL=$${FILENAME%.*}

tail -n+$$ARCHIVE $$0 | tar -xzf - -C $$TMPDIR

$$TMPDIR/$$REL/bin/$$REL console
RET=$$?

rm -rf $$TMPDIR

exit $$RET

__ARCHIVE_BELOW__
endef

sfx:
	$(call render_template,sfx_stub,$(SFX_OUTPUT))
	$(gen_verbose) tar -C $(RELX_OUTPUT_DIR) -czf - $(RELX_RELEASE) >> $(SFX_OUTPUT)
	$(verbose) chmod +x $(SFX_OUTPUT)

endif
endif