Makefile 493 B

123456789101112131415161718
  1. thisdir = class/System.Drawing
  2. include ../../build/rules.make
  3. ifeq ($(PLATFORM),win32)
  4. SUBDIRS =
  5. else
  6. SUBDIRS = gdiplus
  7. endif
  8. # to use JPEG decoder add -r ./cdeclRedirector/cdeclCallback.dll
  9. # and remove -define:DECLARE_CDECL_DELEGATES
  10. # cdeclCallback.dll should be manually copied to library folder
  11. LIBRARY = System.Drawing.dll
  12. LIB_MCS_FLAGS = /unsafe /define:DECLARE_CDECL_DELEGATES /r:$(corlib) \
  13. /r:System.dll /nowarn:649 /nowarn:169
  14. NO_TEST = yes
  15. include ../../build/library.make