SOURCES=*/*/*.cs *.cs BUILD_DIR=../build ASSEMBLY=${BUILD_DIR}/Mono.Design.dll REFERENCES=System.Design,System.Windows.Forms,System.Drawing all: mkdir -p ${BUILD_DIR} export MCS_COLORS=disable;gmcs -d:NET_2_0,DEBUG -target:library -debug -r:${REFERENCES} -out:${ASSEMBLY} ${SOURCES} net-1: mkdir -p ${BUILD_DIR} mcs -d:DEBUG -t:library -debug -r:${REFERENCES} -out:${ASSEMBLY} ${SOURCES} msnet: csc -debug -d:NET_2_0,DEBUG -t:library -r:System.Design.dll,System.Windows.Forms.dll,System.Drawing.dll,System.Data.dll, -out:..\build\Mono.Design.dll *\*\*.cs