From f83177676137f420452f0343084a62329a4451b3 Mon Sep 17 00:00:00 2001 From: Mitchell Date: Sat, 27 Apr 2019 11:06:00 -0500 Subject: [PATCH] zip binary files --- .gitignore | 1 + makefile | 6 +++++- 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index ebfcd0f..07deccc 100644 --- a/.gitignore +++ b/.gitignore @@ -2,3 +2,4 @@ *.exe *.txt dist +.DS_store* diff --git a/makefile b/makefile index 3232cb9..42e5eaa 100644 --- a/makefile +++ b/makefile @@ -7,4 +7,8 @@ windows: clean: rm -rf ./dist -all: build windows +zip: + zip -j ./dist/windows.zip ./dist/spaghet.exe + zip -j ./dist/linux.zip ./dist/spaghet + +all: build windows zip