[msvc] Update csproj files (#5832)
[mono-project.git] / mcs / class / System.Configuration / Makefile
blob918a4e9325e835d056617a4e91f2a16c8b0deac3
1 thisdir = class/System.Configuration
2 SUBDIRS =
4 include ../../build/rules.make
6 LIBRARY = System.Configuration.dll
8 LOCAL_MCS_FLAGS =
9 LIB_REFS = secxml/System bare/System.Xml System.Security
10 KEYFILE = ../msfinal.pub
11 LIB_MCS_FLAGS = -nowarn:618
12 TEST_MCS_FLAGS =
13 TEST_LIB_REFS = System.Xml System
14 TEST_NUNITLITE_APP_CONFIG_GLOBAL=Test/test-config-file
16 include ../../build/library.make
18 configuration_library_deps = \
19 $(secxml_libdir)/System.dll \
20 $(the_libdir_base)System.Security.dll \
21 $(bare_libdir)/System.Xml.dll
23 $(build_lib): $(configuration_library_deps)
25 test-local:
26 cp Test/appSettings.config $(dir $(NUNITLITE_CONFIG_FILE))/Test-appSettings.config
28 .NOTPARALLEL: $(configuration_library_deps)
30 $(secxml_libdir)/System.dll:
31 @echo System.Configuration: GETTING: $@
32 (cd ../System; $(MAKE) $@)
34 $(the_libdir_base)System.Security.dll:
35 (cd ../System.Security; $(MAKE) $@)
37 $(bare_libdir)/System.Xml.dll:
38 (cd ../System.XML; $(MAKE) $@)
40 run-test:
41 $(MAKE) -C Test/standalone