makefile 179 B

123456789
  1. all: windows
  2. windows:
  3. $(CSC) /target:library /out:System.Drawing.dll /nowarn:1595 /recurse:*.cs
  4. clean:
  5. if test -e System.Drawing.dll; then \
  6. rm System.Drawing.dll; \
  7. fi; \