Makefile 531 B

1234567891011121314151617181920
  1. thisdir = class/System.Configuration
  2. SUBDIRS =
  3. include ../../build/rules.make
  4. LIBRARY = System.Configuration.dll
  5. LIBRARY_USE_INTERMEDIATE_FILE = yes
  6. LIB_MCS_FLAGS = -r:$(corlib) -r:System.dll -r:System.Xml.dll -r:System.Security.dll
  7. TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
  8. # This is a .NET 2.0 only assembly
  9. VALID_PROFILE := $(filter net_2_0_bootstrap net_2_0, $(PROFILE))
  10. ifndef VALID_PROFILE
  11. LIBRARY_NAME = dummy-System.Configuration.dll
  12. NO_INSTALL = yes
  13. NO_SIGN_ASSEMBLY = yes
  14. NO_TEST = yes
  15. endif
  16. include ../../build/library.make