aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
blob: a6d312fbad17b070f4689629915c11818887ab3f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/bin/sh

case "$1" in

  'clean')
    mono bin/Prebuild.exe /clean
  ;;

  'autoclean')
    echo y|mono bin/Prebuild.exe /clean
  ;;

  'mono')
    mono bin/Prebuild.exe /target monodev
  ;;

  'nant')
    mono bin/Prebuild.exe /target nant
  ;;

  'vs2010')
    mono bin/Prebuild.exe /target vs2010
  ;;

  *)
    mono bin/Prebuild.exe /target monodev
    mono bin/Prebuild.exe /target nant
    mono bin/Prebuild.exe /target vs2010
  ;;

esac