Makefile 708 B

12345678910111213141516171819202122232425262728
  1. thisdir = class/System.ComponentModel.Composition
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.ComponentModel.Composition.dll
  5. LIB_MCS_FLAGS = -r:System.dll -r:System.Core.dll -d:CLR40 -resource:$(STRING_MESSAGES)
  6. STRING_MESSAGES = Microsoft.Internal.Strings.resources
  7. CLEAN_FILES += $(STRING_MESSAGES)
  8. EXTRA_DISTFILES = \
  9. src/ComponentModel/Strings.resx
  10. VALID_PROFILE := $(filter 4, $(FRAMEWORK_VERSION_MAJOR))
  11. ifndef VALID_PROFILE
  12. LIBRARY_NAME = dummy-System.ComponentModel.Composition.dll
  13. NO_INSTALL = yes
  14. NO_SIGN_ASSEMBLY = yes
  15. NO_TEST = yes
  16. endif
  17. include ../../build/library.make
  18. $(the_lib): $(STRING_MESSAGES)
  19. $(STRING_MESSAGES): src/ComponentModel/Strings.resx
  20. $(RESGEN) $< $@