Welcome to mirror list, hosted at ThFree Co, Russian Federation.

Makefile « System.IdentityModel « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 000c536c02d52fbc0831a0b8666523ee47f0e2c7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
thisdir = class/System.IdentityModel
SUBDIRS = 
include ../../build/rules.make

ifndef NO_MONO_SECURITY
MONO_SECURITY=Mono.Security
endif

LIBRARY = System.IdentityModel.dll
LIB_REFS = System System.Xml System.Security $(MONO_SECURITY) System.Runtime.Serialization
KEYFILE = ../ecma.pub
LIB_MCS_FLAGS = \
		/d:NET_3_0	\
	        $(OTHER_LIB_MCS_FLAGS)

ifneq (2.1, $(FRAMEWORK_VERSION))
LIB_REFS += System.Configuration
endif

ifndef NO_SYSTEM_WEB_DEPENDENCY
ifneq (2.1, $(FRAMEWORK_VERSION))
LIB_REFS += System.Web
endif
endif

ifndef NO_SYSTEM_WEB_APPSERVICES_DEPENDENCY
ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
LIB_REFS += System.Web.ApplicationServices
endif
endif

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)

ifdef MOBILE_PROFILE
NO_TEST = yes
endif

EXTRA_DISTFILES = \
	Test/Resources/test.cer \
	Test/Resources/test_neg_serial.cer \
	Test/Resources/test.pfx \
	Test/Resources/test2.pfx

include ../../build/library.make