aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
Diffstat (limited to '')
-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