mirror of
https://github.com/joel16/SDL2.git
synced 2024-12-03 16:50:47 +00:00
7210963bc0
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. --HG-- extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%403952
21 lines
443 B
Tcsh
Executable File
21 lines
443 B
Tcsh
Executable File
#!/bin/csh
|
|
|
|
###
|
|
## This script creates "Xcode.tar.gz" in the parent directory
|
|
###
|
|
|
|
# remove build products
|
|
rm -rf SDL/build
|
|
rm -rf SDLTest/build
|
|
|
|
# remove Finder info files
|
|
find . -name ".DS_Store" -exec rm "{}" ";"
|
|
|
|
# remove user project prefs
|
|
find . -name "*.pbxuser*" -exec rm "{}" ";"
|
|
find . -name "*.mode*" -exec rm "{}" ";"
|
|
find . -name "*.perspective*" -exec rm "{}" ";"
|
|
|
|
# create the archive
|
|
(cd .. && gnutar -zcvf Xcode.tar.gz Xcode)
|