Skip to content

Commit e601e70

Browse files
committed
Add app zip to makefile
1 parent ba023c3 commit e601e70

File tree

1 file changed

+5
-2
lines changed

1 file changed

+5
-2
lines changed

java/PushChar/Makefile

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,9 @@ SRCFILES := $(shell find src -name \*.java)
22
RESFILES := $(shell find src -type f \! -name .\* \! -name \*.java | sed s/^src\\///)
33
PACKAGES := $(shell find src -name \*.java | sed -E s/^src\\/\|\\/[^\\/]+$$//g | grep -v \\.java$$ | sort | uniq | tr / .)
44

5-
all: clean bin doc pushchar.jar pushchar.zip PushChar.app
5+
all: clean bin doc pushchar.jar pushchar.zip PushChar.app pushchar.app.zip
66

7-
eclipseall: eclipseclean pushchar.jar pushchar.zip PushChar.app
7+
eclipseall: eclipseclean pushchar.jar pushchar.zip PushChar.app pushchar.app.zip
88

99
clean:
1010
rm -rf bin
@@ -87,6 +87,9 @@ PushChar-MacOS11.0.app: dep pushchar.jar
8787
cp -f dep/PushChar.icns PushChar-MacOS11.0.app/Contents/Resources
8888
cp -f pushchar.jar PushChar-MacOS11.0.app/Contents/Resources/Java
8989

90+
pushchar.app.zip: PushChar.app
91+
zip -r pushchar.app.zip PushChar*.app
92+
9093
pushchar.dmg: PushChar.app
9194
rm -rf dmgtmp
9295
mkdir -p dmgtmp

0 commit comments

Comments
 (0)