1*0957b409SSimon J. Gerraty#! /bin/sh 2*0957b409SSimon J. Gerraty 3*0957b409SSimon J. GerratyCSC=$(which mono-csc || which dmcs || echo "none") 4*0957b409SSimon J. Gerraty 5*0957b409SSimon J. Gerratyif [ $CSC = "none" ]; then 6*0957b409SSimon J. Gerraty echo "Error: Please install mono-devel." 7*0957b409SSimon J. Gerraty exit 1 8*0957b409SSimon J. Gerratyfi 9*0957b409SSimon J. Gerraty 10*0957b409SSimon J. Gerratyset -e 11*0957b409SSimon J. Gerraty$CSC /out:T0Comp.exe /main:T0Comp /res:T0/kern.t0,t0-kernel T0/*.cs 12