runprebuild.sh 370 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #!/bin/sh
  2. case "$1" in
  3. 'clean')
  4. mono bin/Prebuild.exe /clean
  5. ;;
  6. 'autoclean')
  7. echo y|mono bin/Prebuild.exe /clean
  8. ;;
  9. 'vs2010')
  10. mono bin/Prebuild.exe /target vs2010
  11. ;;
  12. 'vs2008')
  13. mono bin/Prebuild.exe /target vs2008
  14. ;;
  15. *)
  16. mono bin/Prebuild.exe /target nant
  17. mono bin/Prebuild.exe /target vs2008
  18. ;;
  19. esac