Merge pull request #1412 from esdrubal/stackframe
[mono.git] / mcs / class / System.Web.Abstractions / Makefile
1 thisdir = class/System.Web.Abstractions
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Web.Abstractions.dll
6 LIB_MCS_FLAGS = \
7                 /r:System.dll \
8                 /r:System.Core.dll \
9                 /r:System.Web.dll
10
11 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
12
13 EXTRA_DISTFILES =
14
15 # This is a .NET 3.5+ assembly
16 VALID_PROFILE := $(filter net_4_0 net_4_5, $(PROFILE))
17 ifndef VALID_PROFILE
18 LIBRARY_NAME = dummy-System.Web.Abstractions.dll
19 NO_INSTALL = yes
20 NO_SIGN_ASSEMBLY = yes
21 NO_TEST = yes
22 endif
23
24 include ../../build/library.make