# This is a simple makefile for use with Mono 1.2* and # 432 starter kit files # Note that the gmcs compiler (for .NET 2.0) is used instead # of mcs (.NET 1.0). This is so generic collections can be used. # I haven't been able to figure out how to make MonoDevelop use # the gmcs instead of the mcs compiler. Anyone know? # If yes, please post on WebCT # Usage at the command line # % make clean -- to remove the old target p2.exe, optional # % make p2 -- to compile a new executable # % mono p2.exe -- to run the compiled program # Mike Barnes 3/11/07 REFS = System.Data,System.Drawing,System.Windows.Forms p2: gmcs -out:p2.exe -r:${REFS} *.cs clean: rm p2.exe