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