diff options
author | Loïc Hoguin <[email protected]> | 2016-10-28 19:22:49 +0300 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2016-10-28 19:22:49 +0300 |
commit | 20f480531e0caafcb1f988eaadea1b3b6a3caf72 (patch) | |
tree | 4bb2b3ebe51c50268ba4a5aed9f1ceae70c99170 /core | |
parent | 2a0a4e9606492c9a746ad2dc36899b3c32d074cc (diff) | |
download | erlang.mk-20f480531e0caafcb1f988eaadea1b3b6a3caf72.tar.gz erlang.mk-20f480531e0caafcb1f988eaadea1b3b6a3caf72.tar.bz2 erlang.mk-20f480531e0caafcb1f988eaadea1b3b6a3caf72.zip |
Add "make relup"
The initial documentation is a bit rough. It's getting late and
I'd like to have this in sooner rather than later. :-)
Diffstat (limited to 'core')
-rw-r--r-- | core/core.mk | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/core/core.mk b/core/core.mk index 0331489..10fe0a0 100644 --- a/core/core.mk +++ b/core/core.mk @@ -12,7 +12,7 @@ # ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -.PHONY: all app apps deps search rel docs install-docs check tests clean distclean help erlang-mk +.PHONY: all app apps deps search rel relup docs install-docs check tests clean distclean help erlang-mk ERLANG_MK_FILENAME := $(realpath $(lastword $(MAKEFILE_LIST))) @@ -96,6 +96,8 @@ all:: deps app rel rel:: $(verbose) : +relup:: deps app + check:: tests clean:: clean-crashdump |