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

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

System.Json.Properties.Resources.resources: System.Json/Properties/Resources.resx
	$(RESGEN) "$<" "$@"

LIBRARY = System.Json.Microsoft.dll
LIB_REFS = System System.Xml System.Core System.Runtime.Serialization
LIB_MCS_FLAGS = /d:ASPNETMVC -keyfile:../winfx.pub -delaysign \
	        /r:System.dll \
	        /r:System.Xml.dll \
	        /r:System.Core.dll \
		/r:System.Runtime.Serialization.dll \
		/resource:System.Json.Properties.Resources.resources

EXTRA_DISTFILES = System.Json/Properties/Resources.resx

ifeq (4, $(FRAMEWORK_VERSION_MAJOR))
LIB_REFS += Microsoft.CSharp
LIB_MCS_FLAGS += /r:Microsoft.CSharp.dll -d:FEATURE_DYNAMIC
endif

ifeq (monodroid, $(PROFILE))
LIB_MCS_FLAGS += -d:FEATURE_DYNAMIC
endif

ifeq (xammac, $(PROFILE))
LIB_MCS_FLAGS += -d:FEATURE_DYNAMIC
endif

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)

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

$(the_lib): System.Json.Properties.Resources.resources