Add unit test for AggregateException.GetBaseException that works on .net but is broke...
[mono.git] / mcs / class / System.Data / Makefile
1 thisdir = class/System.Data
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 # I have *no idea* why I need to do this.
6
7 ifeq ($(PROFILE),atomic)
8 system = System.dll
9 else
10 system = $(topdir)/class/lib/$(PROFILE)/System.dll
11 endif
12
13 ifneq (1, $(FRAMEWORK_VERSION_MAJOR))
14 OTHER_LIB_MCS_FLAGS = -r:System.Configuration.dll \
15                         -r:System.Transactions.dll
16 endif
17
18 LIBRARY = System.Data.dll
19 LIB_MCS_FLAGS = \
20         -nowarn:649 \
21         -unsafe \
22         -r:$(corlib)                            \
23         -r:$(system)                            \
24         -r:System.Xml.dll                       \
25
26
27 ifeq (net_1_1_java, $(PROFILE))
28 OTHER_RES = $(RESOURCE_FILES)
29 LIB_MCS_FLAGS +=        \
30         -r:rt.dll                               \
31         -r:J2SE.Helpers.dll                     \
32         $(OTHER_LIB_MCS_FLAGS)
33 else 
34 MOBILE := $(filter monotouch monodroid mobile mobile_static, $(PROFILE))
35 ifdef MOBILE
36 LIB_MCS_FLAGS += \
37         -r:Mono.Data.Tds.dll \
38         -r:System.Transactions.dll
39 else
40 LIB_MCS_FLAGS += \
41         -r:System.EnterpriseServices.dll        \
42         -r:Mono.Data.Tds.dll \
43         $(OTHER_LIB_MCS_FLAGS)
44 endif
45 endif
46
47 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -r:System.Core.dll -r:Mono.Data.Sqlite.dll -nowarn:618,169,612,219,168
48
49 TEST_MONO_PATH = .
50
51 EXTRA_DISTFILES = \
52         TODO                                    \
53         $(wildcard Test/System.Data/*.xml)              \
54         $(wildcard Test/System.Data/*.xsd)              \
55         $(wildcard Test/System.Xml/*.xml)               \
56         $(wildcard Test/System.Xml/*.xsd)               \
57         Test/System.Data/schemas/ChangeLog      \
58         $(wildcard Test/System.Data/schemas/*.xsd)              \
59         Mono.Data.SqlExpressions/Parser.jay     \
60         app_test_net_2_0.config                 \
61         app_test_net_4_5.config                 \
62         Test/System.Data/binserialize/*.bin     \
63         SqliteTest.db
64
65 BUILT_SOURCES = Mono.Data.SqlExpressions/Parser.cs
66
67 Mono.Data.SqlExpressions/Parser.cs: Mono.Data.SqlExpressions/Parser.jay $(topdir)/jay/skeleton.cs
68         $(topdir)/jay/jay -vct < $(topdir)/jay/skeleton.cs $(CURDIR)/$< >$@
69         rm -f y.output
70
71 include ../../build/library.make
72
73 $(test_lib): $(test_lib).config
74
75 $(test_lib).config: app_test_$(PROFILE).config
76         cp $< $@