comparison Xcode/mkxcode.csh @ 3331:d44a0a913aa2

Eric Wing to Sam Lots of fixes. Fixed missing power management building. Added template icons to the project templates. DocSet stuff Documentation fixes.. Fixed all the SDLtests. (Lots of tedious work.) It now depends on the static library target for convenience so I am not going to remove it from the SDL xcode project.
author Sam Lantinga <slouken@libsdl.org>
date Thu, 01 Oct 2009 15:30:26 +0000
parents 9e9a2476f704
children
comparison
equal deleted inserted replaced
3330:e15bcb04c9b4 3331:d44a0a913aa2
1 #!/bin/csh
2
3 ###
4 ## This script creates "Xcode.tar.gz" in the parent directory
5 ###
6
7 # remove build products
8 rm -rf SDL/build
9 rm -rf SDLTest/build
10
11 # remove Finder info files
12 find . -name ".DS_Store" -exec rm "{}" ";"
13
14 # remove user project prefs
15 find . -name "*.pbxuser*" -exec rm "{}" ";"
16 find . -name "*.mode*" -exec rm "{}" ";"
17 find . -name "*.perspective*" -exec rm "{}" ";"
18
19 # create the archive
20 (cd .. && gnutar -zcvf Xcode.tar.gz Xcode)