From 24767fd07f63fa2f6a72d73b5ae40d48b1e4bef7 Mon Sep 17 00:00:00 2001 From: Jason DeRose Date: Sun, 8 Mar 2020 12:29:23 -0400 Subject: [PATCH] Append target to make zip-file output --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index dbc134b..23278d0 100644 --- a/Makefile +++ b/Makefile @@ -19,7 +19,11 @@ INSTALLNAME = dash-to-panel@jderose9.github.com # version is pulled from the latest git tag and the current commit SHA1 is # added to the metadata ifdef VERSION - FILESUFFIX = _v$(VERSION) + ifdef TARGET + FILESUFFIX = _v$(VERSION)_$(TARGET) + else + FILESUFFIX = _v$(VERSION) + endif else LATEST_TAG = $(shell git describe --match "v[0-9]*" --abbrev=0 --tags HEAD) VERSION = $(LATEST_TAG:v%=%)