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

Makefile « System.Web.Mvc3 « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 16c5f64e3b36fa96944e1585787be1bb569a8d71 (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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
thisdir = class/System.Web.Mvc3
SUBDIRS = 
include ../../build/rules.make

LIBRARY = System.Web.Mvc3.dll
LIBRARY_NAME = System.Web.Mvc.dll

RESX_DIST =  Mvc/Resources/MvcResources.resx

LIB_REFS = Microsoft.Web.Infrastructure System System.Core System.Configuration System.Data System.Xml System.Web System.Web.Abstractions System.Web.Routing System.Web.Extensions System.ComponentModel.DataAnnotations System.Data.Linq System.Runtime.Caching System.Web.Razor System.Web.WebPages.Razor System.Web.WebPages
LIB_MCS_FLAGS = \
		/warn:1 \
		/keyfile:../winfx.pub \
		/d:MONO \
		/delaysign \
		/r:Microsoft.Web.Infrastructure.dll \
	        /r:System.dll \
	        /r:System.Core.dll \
	        /r:System.Configuration.dll \
	        /r:System.Data.dll \
	        /r:System.Xml.dll \
	        /r:System.Web.dll \
	        /r:System.Web.Abstractions.dll \
	        /r:System.Web.Routing.dll \
	        /r:System.Web.Extensions.dll \
		/r:System.ComponentModel.DataAnnotations.dll \
		/r:System.Data.Linq.dll \
		/r:System.Runtime.Caching.dll \
		/r:System.Web.Razor.dll \
		/r:System.Web.WebPages.Razor.dll \
		/r:System.Web.WebPages.dll \
		$(foreach r, $(RESOURCES), /resource:$(r),System.Web.Mvc.Resources.$(notdir $(r)))

EXTRA_DISTFILES = $(RESX_DIST)
RESOURCES = $(RESX_DIST:.resx=.resources)
include ../../build/library.make

$(build_lib): $(RESOURCES)

$(RESOURCES): %.resources: %.resx
	$(RESGEN) `echo $< | $(PLATFORM_CHANGE_SEPARATOR_CMD)`