Makefile 627 B

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