Merge pull request #1604 from iainx/cov-install-coverage-filter
[mono.git] / mcs / class / System.Xml.Linq / Makefile
1 thisdir = class/System.Xml.Linq
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Xml.Linq.dll
6 LIB_REFS = System System.Core System.Xml
7 LIB_MCS_FLAGS = \
8                 -r:System.dll \
9                 -r:System.Core.dll \
10                 -r:System.Xml.dll
11
12 ifneq (2.1, $(FRAMEWORK_VERSION))
13 # This is a .NET 3.5+ only assembly, but built during the 2.0 build
14 LIB_MCS_FLAGS += -d:NET_3_5 -nowarn:1720
15 endif
16
17 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
18
19 EXTRA_DISTFILES =
20
21 VALID_PROFILE := $(filter 2 4, $(FRAMEWORK_VERSION_MAJOR))
22 ifndef VALID_PROFILE
23 LIBRARY_NAME = dummy-System.Xml.Linq.dll
24 NO_INSTALL = yes
25 NO_SIGN_ASSEMBLY = yes
26 NO_TEST = yes
27 endif
28
29 include ../../build/library.make