aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
diff options
context:
space:
mode:
authorBlueWall2012-07-26 21:39:53 -0400
committerBlueWall2012-07-26 21:39:53 -0400
commit6ee17f5b36a8f19603ab28acdc52f4cbb882c202 (patch)
tree2785f683025d41dd1d5745e59adb66a9eb8d84ee /runprebuild.sh
parentAdd target switches (diff)
downloadopensim-SC_OLD-6ee17f5b36a8f19603ab28acdc52f4cbb882c202.zip
opensim-SC_OLD-6ee17f5b36a8f19603ab28acdc52f4cbb882c202.tar.gz
opensim-SC_OLD-6ee17f5b36a8f19603ab28acdc52f4cbb882c202.tar.bz2
opensim-SC_OLD-6ee17f5b36a8f19603ab28acdc52f4cbb882c202.tar.xz
Add autoclean for scripted use
./runprebuild.sh autoclean - cleans projects w/o prompting
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-xrunprebuild.sh13
1 files changed, 13 insertions, 0 deletions
diff --git a/runprebuild.sh b/runprebuild.sh
index e68c481..d276edb 100755
--- a/runprebuild.sh
+++ b/runprebuild.sh
@@ -9,21 +9,34 @@ case "$1" in
9 ;; 9 ;;
10 10
11 11
12 'autoclean')
13
14 echo y|mono bin/Prebuild.exe /clean
15
16 ;;
17
18
12 'vs2010') 19 'vs2010')
13 20
14 mono bin/Prebuild.exe /target vs2010 21 mono bin/Prebuild.exe /target vs2010
15 22
16 ;; 23 ;;
17 24
25
18 'vs2008') 26 'vs2008')
27
19 mono bin/Prebuild.exe /target vs2008 28 mono bin/Prebuild.exe /target vs2008
29
20 ;; 30 ;;
21 31
32
22 *) 33 *)
23 34
24 mono bin/Prebuild.exe /target nant 35 mono bin/Prebuild.exe /target nant
25 mono bin/Prebuild.exe /target vs2008 36 mono bin/Prebuild.exe /target vs2008
37
26 ;; 38 ;;
27 39
40
28esac 41esac
29 42