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

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

MOBILE_PROFILE := $(filter monotouch monodroid xammac mobile mobile_static, $(PROFILE))

LIBRARY = System.Transactions.dll
ifdef MOBILE_PROFILE
LIB_REFS = System
LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /define:MOBILE
else
LIB_REFS = System System.Configuration
LIB_MCS_FLAGS = /r:$(corlib) /r:System.dll /r:System.Configuration.dll
endif

TEST_MCS_FLAGS = /nowarn:1595 $(LIB_MCS_FLAGS)

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