Merge pull request #1888 from joelmartinez/mdoc-flagsbug
[mono.git] / mcs / class / System.IdentityModel / Makefile
1 thisdir = class/System.IdentityModel
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 ifndef NO_SYSTEM_WEB_APPSERVICES_DEPENDENCY
6 ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
7 OTHER_LIB_MCS_FLAGS = -r:System.Web.ApplicationServices.dll
8 endif
9 endif
10
11 LIBRARY = System.IdentityModel.dll
12 LIB_REFS = System System.Xml System.Security System.Configuration Mono.Security System.Runtime.Serialization
13 LIB_MCS_FLAGS = \
14                 /d:NET_3_0      \
15                 $(OTHER_LIB_MCS_FLAGS)
16
17 ifndef NO_SYSTEM_WEB_DEPENDENCY
18 LIB_REFS += System.Web
19 endif
20
21 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
22
23 EXTRA_DISTFILES = \
24         Test/Resources/test.cer \
25         Test/Resources/test_neg_serial.cer \
26         Test/Resources/test.pfx \
27         Test/Resources/test2.pfx
28
29 VALID_PROFILE := $(filter net_4_5 xammac_net_4_5, $(PROFILE))
30 ifndef VALID_PROFILE
31 LIBRARY_NAME = dummy-System.IdentityModel.dll
32 NO_INSTALL = yes
33 NO_SIGN_ASSEMBLY = yes
34 NO_TEST = yes
35 endif
36
37 include ../../build/library.make