From: Neil Date: Sat, 20 Apr 2013 20:28:57 +0000 (+0200) Subject: More makefile tweaking X-Git-Url: https://git.ctpug.org.za/?p=erdslangetjie.git;a=commitdiff_plain;h=6503264731e80feb29302b08e625a80c7604c8ff More makefile tweaking --- 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