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

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

LIBRARY = Mono.Web.dll

NO_TEST = yes

# This is a .NET 2.0+ only assembly
VALID_PROFILE := $(filter net_2_0 net_4_0, $(PROFILE))
ifdef VALID_PROFILE

LIB_MCS_FLAGS = -r:$(corlib) \
		-r:System.dll \
		-r:System.Xml.dll \
		-r:System.Web.dll \
		-r:System.Configuration.dll

else
LIBRARY_NAME = dummy-Mono.Web.dll
NO_INSTALL = yes
NO_SIGN_ASSEMBLY = yes
NO_TEST = yes
endif

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