diff options
Diffstat (limited to 'runprebuild.sh')
-rwxr-xr-x | runprebuild.sh | 42 |
1 files changed, 40 insertions, 2 deletions
diff --git a/runprebuild.sh b/runprebuild.sh index b3b5c9d..d276edb 100755 --- a/runprebuild.sh +++ b/runprebuild.sh | |||
@@ -1,4 +1,42 @@ | |||
1 | #!/bin/sh | 1 | #!/bin/sh |
2 | 2 | ||
3 | mono bin/Prebuild.exe /target nant | 3 | case "$1" in |
4 | mono bin/Prebuild.exe /target vs2008 | 4 | |
5 | 'clean') | ||
6 | |||
7 | mono bin/Prebuild.exe /clean | ||
8 | |||
9 | ;; | ||
10 | |||
11 | |||
12 | 'autoclean') | ||
13 | |||
14 | echo y|mono bin/Prebuild.exe /clean | ||
15 | |||
16 | ;; | ||
17 | |||
18 | |||
19 | 'vs2010') | ||
20 | |||
21 | mono bin/Prebuild.exe /target vs2010 | ||
22 | |||
23 | ;; | ||
24 | |||
25 | |||
26 | 'vs2008') | ||
27 | |||
28 | mono bin/Prebuild.exe /target vs2008 | ||
29 | |||
30 | ;; | ||
31 | |||
32 | |||
33 | *) | ||
34 | |||
35 | mono bin/Prebuild.exe /target nant | ||
36 | mono bin/Prebuild.exe /target vs2008 | ||
37 | |||
38 | ;; | ||
39 | |||
40 | |||
41 | esac | ||
42 | |||