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

Makefile « Mono.ServiceModel.IdentitySelectors « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 85e800a7d66de2b429da7da5c5f0e13ef77e09b2 (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/Mono.ServiceModel.IdentitySelectors
SUBDIRS = 
include ../../build/rules.make

RESOURCE_FILES = \
		resources/schemas-xmlsoap-or-ws-2005-05-identity.rnc

LIBRARY = Mono.ServiceModel.IdentitySelectors.dll
LIB_MCS_FLAGS = \
		/nowarn:414,169,67,3005,436 \
		/unsafe \
	        /r:System.dll \
	        /r:System.Xml.dll \
	        /r:System.Configuration.dll \
	        /r:../lib/net_3_0/System.Runtime.Serialization.dll \
	        /r:System.Security.dll \
	        /r:../lib/net_3_0/System.IdentityModel.dll \
		/r:../lib/net_3_0/System.IdentityModel.Selectors.dll \
	        /r:../lib/net_3_0/System.ServiceModel.dll \
	        /r:System.Transactions.dll \
	        /r:System.Web.dll \
		/r:System.Web.Services.dll \
		/r:Mono.Security.dll \
		$(RESOURCE_FILES:%=/resource:%)

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)

TEST_EXT_RESOURCES = \
		Test/resources/managed.xml \
		Test/resources/rupert.crds \
		Test/resources/rupert.xml

EXTRA_DISTFILES = $(RESOURCE_FILES) $(TEST_EXT_REOURCES)

# This is a WinFX only assembly
VALID_PROFILE := $(filter net_3_0, $(PROFILE))
ifndef VALID_PROFILE
LIBRARY_NAME = dummy-Mono.ServiceModel.IdentitySelectors.dll
NO_INSTALL = yes
NO_SIGN_ASSEMBLY = yes
NO_TEST = yes
endif

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