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

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

LIBRARY = System.Web.Razor.dll
LIBRARY_NAME = System.Web.Razor.dll

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

LIB_REFS = System System.Core
LIB_MCS_FLAGS = \
		/warn:1 \
		/keyfile:../winfx.pub -delaysign \
	        /r:System.dll \
	        /r:System.Core.dll \
	        /d:ASPNETWEBPAGES \
		/resource:System.Web.Razor.Resources.RazorResources.resources \
		/resource:System.Web.Razor.Common.CommonResources.resources

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

$(build_lib): System.Web.Razor.Resources.RazorResources.resources \
		System.Web.Razor.Common.CommonResources.resources