Makefile 585 B

1234567891011121314151617181920212223242526272829
  1. thisdir = class/System.Core
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Core.dll
  5. LIB_MCS_FLAGS = -d:LIBC /r:$(corlib) /r:System
  6. ifneq (2.1, $(FRAMEWORK_VERSION))
  7. LIB_MCS_FLAGS += -d:NET_3_5 -nowarn:1720
  8. endif
  9. ifeq (4.0, $(FRAMEWORK_VERSION))
  10. LIB_MCS_FLAGS += -d:CODEPLEX_40
  11. endif
  12. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  13. # This is a .NET 2.0+ only assembly
  14. VALID_PROFILE := $(filter 2.0 2.1 4.0, $(FRAMEWORK_VERSION))
  15. ifndef VALID_PROFILE
  16. LIBRARY_NAME = dummy-System.Core.dll
  17. NO_INSTALL = yes
  18. NO_SIGN_ASSEMBLY = yes
  19. NO_TEST = yes
  20. endif
  21. include ../../build/library.make