2009-06-12 Bill Holmes <billholmes54@gmail.com>
[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_MCS_FLAGS = \
7                 /r:System.dll \
8                 /r:System.Core.dll \
9                 /r:System.Web.dll \
10                 /r:System.Web.Abstractions.dll
11
12 ifeq (2.0, $(FRAMEWORK_VERSION))
13 # This is a .NET 3.5 only assembly, but built during the 2.0 build
14 LIB_MCS_FLAGS += -d:NET_3_5
15 endif
16
17 ifdef DEBUG
18 LIB_MCS_FLAGS += -define:DEBUG
19 endif
20
21 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
22
23 EXTRA_DISTFILES =
24
25 # This is a .NET 3.5+ assembly
26 VALID_PROFILE := $(filter net_2_0 net_4_0, $(PROFILE))
27 ifndef VALID_PROFILE
28 LIBRARY_NAME = dummy-System.Web.Routing.dll
29 NO_INSTALL = yes
30 NO_SIGN_ASSEMBLY = yes
31 NO_TEST = yes
32 endif
33
34 include ../../build/library.make