From 6503264731e80feb29302b08e625a80c7604c8ff Mon Sep 17 00:00:00 2001
From: Neil <neil@dip.sun.ac.za>
Date: Sat, 20 Apr 2013 22:28:57 +0200
Subject: [PATCH] More makefile tweaking

---
 Makefile | 13 +++++++++----
 1 file changed, 9 insertions(+), 4 deletions(-)

diff --git a/Makefile b/Makefile
index 665aa25..4900dad 100644
--- a/Makefile
+++ b/Makefile
@@ -1,17 +1,22 @@
 #Makefile for erdslangetjie, to help with the final release
 
 clean:
-	rm -f bane_pyweek_16.zip bane_pyweek_16.tar.bz2
+	rm -f bane_pyweek_16.zip bane_pyweek_16.tar.bz2 bane_pyweek_16_win.zip
 	find . -name *.pyc -exec rm {} \;
 	find . -name *.swp -exec rm {} \;
 
 android_zip:
-	rm -f bane_pyweek_16.zip
+	rm -f bane_pyweek_16_android.zip
 	zip -r bane_pyweek_16.zip android.txt run_game.py main.py data/level* data/sounds/ data/screens data/sprites/ data/tiles/ erdslangetjie/*py
 
-
-tarball:
+dircopy:
 	mkdir -p bane_pyweek_16
 	tar -cf - data misc_stuff *.txt Makefile configure *pyw *py erdslangetjie/*py erdslangetjie/editor/*py | (cd bane_pyweek_16 && tar -xvpf -)
+
+tarball: dircopy
 	tar -caf bane_pyweek_16.tar.bz2 bane_pyweek_16
 	rm -rf bane_pyweek_16
+
+winzip: dircopy
+	zip -r bane_pyweek_16_win.zip bane_pyweek_16
+	rm -rf bane_pyweek_16
-- 
2.34.1