2
0

Makefile 440 B

12345678910111213141516171819
  1. thisdir = class/System.Dynamic
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Dynamic.dll
  5. LIB_MCS_FLAGS = -unsafe -d:CODEPLEX_40 -r:System.Core.dll -r:System.dll
  6. # This is a .NET 4.0+ only assembly
  7. VALID_PROFILE := $(filter 4, $(FRAMEWORK_VERSION_MAJOR))
  8. ifndef VALID_PROFILE
  9. LIBRARY_NAME = dummy-System.Dynamic.dll
  10. NO_INSTALL = yes
  11. NO_SIGN_ASSEMBLY = yes
  12. NO_TEST = yes
  13. NO_BUILD = yes
  14. endif
  15. include ../../build/library.make