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

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

LIBRARY = System.Web.WebPages.dll
LIBRARY_NAME = System.Web.WebPages.dll

System.Web.WebPages.Common.CommonResources.resources: ../../../external/aspnetwebstack/src/CommonResources.resx
	$(RESGEN) "$<" "$@"
	
System.Web.WebPages.Resources.WebPageResources.resources: ../../../external/aspnetwebstack/src/System.Web.WebPages/Resources/WebPageResources.resx
	$(RESGEN) "$<" "$@"

LIB_MCS_FLAGS = \
		/warn:1 \
		/keyfile:../winfx.pub \
		/delaysign \
		/r:Microsoft.CSharp.dll \
		/r:Microsoft.Web.Infrastructure.dll \
	        /r:System.dll \
	        /r:System.ComponentModel.DataAnnotations.dll \
	        /r:System.Configuration.dll \
	        /r:System.Core.dll \
	        /r:System.Data.Linq.dll \
	        /r:System.Web.dll \
	        /r:System.Web.WebPages.Deployment.dll \
	        /r:System.Web.Razor.dll \
	        /r:System.Xml.dll \
	        /r:System.Xml.Linq.dll \
	        /d:ASPNETWEBPAGES \
		/resource:System.Web.WebPages.Resources.WebPageResources.resources \
		/resource:System.Web.WebPages.Common.CommonResources.resources

EXTRA_DISTFILES = $(RESX_DIST)

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

$(build_lib): System.Web.WebPages.Resources.WebPageResources.resources \
		System.Web.WebPages.Common.CommonResources.resources