aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
diff options
context:
space:
mode:
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-xrunprebuild.sh19
1 files changed, 7 insertions, 12 deletions
diff --git a/runprebuild.sh b/runprebuild.sh
index a6d312f..fd411bb 100755
--- a/runprebuild.sh
+++ b/runprebuild.sh
@@ -3,29 +3,24 @@
3case "$1" in 3case "$1" in
4 4
5 'clean') 5 'clean')
6
6 mono bin/Prebuild.exe /clean 7 mono bin/Prebuild.exe /clean
8
7 ;; 9 ;;
8 10
11
9 'autoclean') 12 'autoclean')
10 echo y|mono bin/Prebuild.exe /clean
11 ;;
12 13
13 'mono') 14 echo y|mono bin/Prebuild.exe /clean
14 mono bin/Prebuild.exe /target monodev
15 ;;
16 15
17 'nant')
18 mono bin/Prebuild.exe /target nant
19 ;; 16 ;;
20 17
21 'vs2010')
22 mono bin/Prebuild.exe /target vs2010
23 ;;
24 18
25 *) 19 *)
26 mono bin/Prebuild.exe /target monodev 20
27 mono bin/Prebuild.exe /target nant 21 mono bin/Prebuild.exe /target nant
28 mono bin/Prebuild.exe /target vs2010 22 mono bin/Prebuild.exe /target vs2015
23
29 ;; 24 ;;
30 25
31esac 26esac