Makefile 528 B

12345678910111213141516171819202122232425
  1. thisdir = class/System.Core
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Core.dll
  5. LIB_MCS_FLAGS = -langversion:linq -unsafe -d:LIBC /r:$(corlib)
  6. ifeq (2.0, $(FRAMEWORK_VERSION))
  7. LIB_MCS_FLAGS += -d:NET_3_5
  8. endif
  9. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  10. # This is a .NET > 2.0 only assembly
  11. VALID_PROFILE := $(filter net_2_0_bootstrap net_2_0 net_2_1, $(PROFILE))
  12. ifndef VALID_PROFILE
  13. LIBRARY_NAME = dummy-System.Core.dll
  14. NO_INSTALL = yes
  15. NO_SIGN_ASSEMBLY = yes
  16. NO_TEST = yes
  17. endif
  18. include ../../build/library.make