Makefile 579 B

123456789101112131415161718192021222324
  1. thisdir = class/System.Runtime.Caching
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Runtime.Caching.dll
  5. LIB_REFS = System System.Data System.Configuration System.Core
  6. LIB_MCS_FLAGS = -nowarn:414
  7. RESX_RESOURCE_STRING = \
  8. ../referencesource/System.Runtime.Caching/R.resx
  9. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  10. EXTRA_DISTFILES = $(RESOURCE_FILES)
  11. VALID_PROFILE := $(filter 4, $(FRAMEWORK_VERSION_MAJOR))
  12. ifndef VALID_PROFILE
  13. LIBRARY_NAME = dummy-System.Runtime.Caching.dll
  14. NO_INSTALL = yes
  15. NO_SIGN_ASSEMBLY = yes
  16. NO_TEST = yes
  17. endif
  18. include ../../build/library.make