Skip to content
This repository has been archived by the owner on Feb 11, 2021. It is now read-only.

Latest commit

 

History

History
executable file
·
20 lines (15 loc) · 441 Bytes

mkxcode.csh

File metadata and controls

executable file
·
20 lines (15 loc) · 441 Bytes
 
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#!/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)