Makefile 1011 B

12345678910111213141516171819202122
  1. all: Samples.Common.dll binary.exe clippy.exe flatten.exe scan.exe texture.exe
  2. Samples.Common.dll: Shapes.cs Matrices.cs
  3. gmcs Shapes.cs Matrices.cs -r:System.Drawing.dll -target:library -out:Samples.Common.dll
  4. binary.exe: Samples.Common.dll binary.cs binary.Designer.cs
  5. gmcs binary.cs binary.Designer.cs -r:Samples.Common.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll
  6. clippy.exe: Samples.Common.dll clippy.cs clippy.Designer.cs
  7. gmcs clippy.cs clippy.Designer.cs -r:Samples.Common.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll
  8. flatten.exe: Samples.Common.dll flatten.cs flatten.Designer.cs
  9. gmcs flatten.cs flatten.Designer.cs -r:Samples.Common.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll
  10. scan.exe: Samples.Common.dll scan.cs scan.Designer.cs
  11. gmcs scan.cs scan.Designer.cs -r:Samples.Common.dll -r:System.Drawing.dll -r:System.Windows.Forms.dll
  12. texture.exe: texture.cs
  13. gmcs texture.cs -r:System.Drawing.dll -r:System.Windows.Forms.dll
  14. clean:
  15. rm -f *.exe Samples.Common.dll