Skip to content

Commit ae9999e

Browse files
committed
Add windows exe target to makefile
1 parent 42e3a26 commit ae9999e

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

GNUmakefile

+7
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@ RUNTIME += runtime/Builtin/Table.j
1111

1212
.PHONY: check clean
1313
.PHONY: start-wc3 update-wc3
14+
.PHONY: lua2jass.exe
1415

1516
check: war3map.j
1617
pjass $$commonj Blizzard.j war3map.j
@@ -31,3 +32,9 @@ start-wc3: war3map.j
3132
update-wc3: war3map.j
3233
jhcr-update "$<"
3334

35+
lua2jass.exe:
36+
rm -f $@
37+
cabal build --allow-newer lua2jass
38+
strip $$(cabal list-bin --allow-newer lua2jass)
39+
upx -qq $$(cabal list-bin --allow-newer lua2jass) -o $@
40+

0 commit comments

Comments
 (0)