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

Makefile « Microsoft.JScript « class « mcs - github.com/mono/mono.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: ca418d7dfeb967f4e99781da683d531b91589d65 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
thisdir = class/Microsoft.JScript
SUBDIRS = 
include ../../build/rules.make

LIBRARY = Microsoft.JScript.dll

ifeq (net_2_0, $(PROFILE))
COMPILER = gmcs.exe
else
COMPILER = mcs.exe
endif

LIB_MCS_FLAGS = -r:System.dll -r:Microsoft.Vsa.dll -r:$(topdir)/class/lib/$(PROFILE)/$(COMPILER) -debug+

TEST_MCS_FLAGS = $(LIB_MCS_FLAGS) -nowarn:0618 -nowarn:219 -nowarn:169

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