Merge pull request #5313 from lambdageek/corefx-sre-fixup
[mono.git] / mcs / class / System.Configuration / Makefile
1 thisdir = class/System.Configuration
2 SUBDIRS =
3
4 include ../../build/rules.make
5
6 LIBRARY = System.Configuration.dll
7
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
15
16 include ../../build/library.make
17
18 configuration_library_deps = \
19         $(secxml_libdir)/System.dll     \
20         $(the_libdir_base)System.Security.dll   \
21         $(bare_libdir)/System.Xml.dll
22
23 $(build_lib): $(configuration_library_deps)
24
25 test-local:
26         cp Test/appSettings.config $(dir $(NUNITLITE_CONFIG_FILE))/Test-appSettings.config
27
28 .NOTPARALLEL: $(configuration_library_deps)
29
30 $(secxml_libdir)/System.dll:
31         @echo System.Configuration: GETTING: $@
32         (cd ../System; $(MAKE) $@)
33
34 $(the_libdir_base)System.Security.dll:
35         (cd ../System.Security; $(MAKE) $@)
36
37 $(bare_libdir)/System.Xml.dll:
38         (cd ../System.XML; $(MAKE) $@)
39
40 run-test:
41         $(MAKE) -C Test/standalone