Mercurial > sdl-ios-xcode
view Xcode/mkxcode.csh @ 2378:d76ecec0c3f7 gsoc2008_iphone
iPhone SDL 1.3 demos go here. All these demos are written using pure SDL 1.3 code. No compatibility calls! Perhaps if they are any good they could be use as tests for the SDL 1.3 release.
author | Holmes Futrell <hfutrell@umail.ucsb.edu> |
---|---|
date | Fri, 18 Jul 2008 20:46:02 +0000 |
parents | d63e9f5944ae |
children |
line wrap: on
line source
#!/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 "*.mode1" -exec rm "{}" ";" find . -name "*.perspective" -exec rm "{}" ";" # create the archive (cd .. && gnutar -zcvf Xcode.tar.gz Xcode)