aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/runprebuild.sh
blob: 98bfcb349a0c75816515d53b8f5b5be36376aaf0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#!/bin/sh

case "$1" in

  'clean')

    mono bin/Prebuild.exe /clean

  ;;

  *)

    mono bin/Prebuild.exe /target nant
    mono bin/Prebuild.exe /target vs2008
  ;;

esac