17 lines
445 B
Makefile
Raw Normal View History

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