a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
17 lines
445 B
Makefile
17 lines
445 B
Makefile
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_MCS_FLAGS = /r:$(corlib) /r:System.dll /define:MOBILE
|
|
else
|
|
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
|