From 633ec88186106b9a9604f418b5f527d6d8ff888d Mon Sep 17 00:00:00 2001 From: Lex Neva Date: Mon, 19 Feb 2018 21:43:39 -0500 Subject: windows build (#79) Ink/stitch now supports windows! --- Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index 3a38e08b..fdfb5088 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,11 @@ dist: distclean locales bin/build-dist $(EXTENSIONS) cp *.inx dist mv locales dist/inkstitch/bin - cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz * + if [ "$$BUILD" = "windows" ]; then \ + cd dist; zip -r ../inkstitch-$(VERSION)-win32.zip *; \ + else \ + cd dist; tar zcf ../inkstitch-$(VERSION)-$(OS)-$(ARCH).tar.gz *; \ + fi distclean: rm -rf build dist *.spec *.tar.gz -- cgit v1.3.1