2010-04-22 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / System.Xaml / Makefile
1 thisdir = class/System.Xaml
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 RESOURCE_FILES = 
6
7 LIBRARY = System.Xaml.dll
8 LIB_MCS_FLAGS = \
9                 /r:System.dll \
10                 /r:System.Xml.dll \
11                 /r:System.Core.dll \
12                 $(RESOURCE_FILES:%=/resource:%)
13
14 ifneq (2.1, $(FRAMEWORK_VERSION))
15 LIB_MCS_FLAGS += /r:System.Configuration.dll
16 endif
17
18 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
19
20 EXTRA_DISTFILES = $(RESOURCE_FILES) $(TEST_EXTRA_DISTFILES)
21 TEST_EXTRA_DISTFILES = \
22         Test/XmlFiles/*.xml
23
24 VALID_PROFILE := $(filter 4.0, $(FRAMEWORK_VERSION))
25 ifndef VALID_PROFILE
26 LIBRARY_NAME = dummy-System.Xaml.dll
27 NO_INSTALL = yes
28 NO_SIGN_ASSEMBLY = yes
29 NO_TEST = yes
30 endif
31
32 include ../../build/library.make