From 96083c3c3b493b2b0b329c0711ba46bb9aa5091a Mon Sep 17 00:00:00 2001 From: Thomas BERNARD Date: Thu, 29 Nov 2018 13:06:59 +0100 Subject: [PATCH] OSX: include processor type in zip name. include source package and doc in zip --- src/Makefile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index d5f61c52..d6ef8ab9 100644 --- a/src/Makefile +++ b/src/Makefile @@ -868,7 +868,9 @@ ziprelease: release $(SRCARCH) share/grafx2/gfx2.gif share/icons/grafx2.svg \ $(DOC_FILES:../%=%) $(FONT_FILES:../%=%) $(SRCARCH:../%=%) $(PLATFORMFILES:../%=%) ifeq ($(PLATFORM),Darwin) - $(ZIP) $(ZIPOPT) -r ../Grafx2.app-$(API)-$(VERSIONTAG).zip Grafx2.app + $(ZIP) $(ZIPOPT) -r ../Grafx2.app-$(shell uname -p)-$(API)-$(VERSIONTAG).zip Grafx2.app + cd .. && $(ZIP) $(ZIPOPT) Grafx2.app-$(shell uname -p)-$(API)-$(VERSIONTAG).zip \ + $(DOC_FILES:../%=%) $(SRCARCH:../%=%) endif $(TAR) czf "../grafx2-$(VERSIONTAG)-src.tgz" $(TARTRANSFORM) \ ../src/*.c ../src/*.cpp ../src/*.h ../src/Makefile ../src/Makefile.dep \