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

Makefile « System.Web.Services « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ba7c2eebb8354b850e967f1cb93da8a99bd91146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
thisdir = class/System.Web.Services
SUBDIRS = 
include ../../build/rules.make

LIBRARY = System.Web.Services.dll
LIB_MCS_FLAGS = \
	-nowarn:649 -nowarn:169			\
	-r:$(corlib)				\
	-r:System.dll				\
	-r:System.EnterpriseServices.dll	\
	-r:System.Xml.dll			\
	-r:System.Web.dll

ifeq (net_2_0, $(PROFILE))
LIB_MCS_FLAGS += -r:System.Configuration.dll
endif

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:618

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