Makefile 482 B

123456789101112131415
  1. thisdir = class/System.Drawing
  2. include ../../build/rules.make
  3. SUBDIRS =
  4. # to use JPEG decoder add -r ./cdeclRedirector/cdeclCallback.dll
  5. # and remove -define:DECLARE_CDECL_DELEGATES
  6. # cdeclCallback.dll should be manually copied to library folder
  7. LIBRARY = System.Drawing.dll
  8. LIB_MCS_FLAGS = /unsafe /define:DECLARE_CDECL_DELEGATES /r:$(corlib) \
  9. /r:System.dll /nowarn:649 /nowarn:169
  10. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) /r:System.Drawing.dll
  11. include ../../build/library.make