Replace SIZEOF_REGISTER with sizeof(mgreg_t) for consistency with sizeof(gpointer)
[mono.git] / mcs / class / System.IdentityModel / Makefile
1 thisdir = class/System.IdentityModel
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
6 OTHER_LIB_MCS_FLAGS = -r:System.Web.ApplicationServices.dll
7 endif
8
9 LIBRARY = System.IdentityModel.dll
10 LIB_MCS_FLAGS = \
11                         /d:NET_3_0      \
12                 /r:System.dll \
13                 /r:System.Xml.dll \
14                 /r:System.Security.dll \
15                 /r:System.Web.dll \
16                 /r:Mono.Security.dll \
17                 /r:System.Runtime.Serialization.dll \
18                 $(OTHER_LIB_MCS_FLAGS)
19
20 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
21
22 EXTRA_DISTFILES = \
23         Test/Resources/test.cer \
24         Test/Resources/test.pfx \
25         Test/Resources/test2.pfx
26
27 VALID_PROFILE := $(filter net_2_0 net_4_0, $(PROFILE))
28 ifndef VALID_PROFILE
29 LIBRARY_NAME = dummy-System.IdentityModel.dll
30 NO_INSTALL = yes
31 NO_SIGN_ASSEMBLY = yes
32 NO_TEST = yes
33 endif
34
35 include ../../build/library.make