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