makefile 426 B

1234567891011121314151617
  1. CSC=csc
  2. SWFF=/r:gtk-sharp.dll /r:glib-sharp.dll /noconfig /r:System.dll /r:System.Drawing.dll /nowarn:169
  3. SOURCES = \
  4. Application.cs \
  5. ContainerControl.cs \
  6. Control.cs \
  7. Form.cs \
  8. ScrollableControl.cs
  9. all: demo.exe
  10. demo.exe: demo.cs System.Windows.Forms.dll
  11. $(CSC) demo.cs /r:System.Windows.Forms.dll
  12. System.Windows.Forms.dll: $(SOURCES)
  13. $(CSC) $(SWFF) /target:library /out:System.Windows.Forms.dll $(SOURCES)