[build] Fixes Mono.Security dependency
[mono.git] / mcs / class / System.Reactive.Runtime.Remoting / Makefile
1 thisdir = class/System.Reactive.Runtime.Remoting
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Reactive.Runtime.Remoting.dll
6 LIB_REFS = System System.Core System.Reactive.Interfaces System.Reactive.Core System.Reactive.Linq
7 LIB_MCS_FLAGS = \
8                 @more_build_args \
9                 -r:System.Reactive.Linq.dll
10
11 ifeq (2.1, $(FRAMEWORK_VERSION))
12 LIB_MCS_FLAGS += -d:NO_TASK_DELAY
13 endif
14
15 NET_4_5 := $(filter 4.5, $(FRAMEWORK_VERSION))
16 ifdef NET_4_5
17 LIB_MCS_FLAGS += -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC -d:HAS_AWAIT
18 endif
19
20 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
21
22 EXTRA_DISTFILES = more_build_args
23
24 INSTALL_PROFILE := $(filter net_4_x, $(PROFILE))
25 ifndef INSTALL_PROFILE
26 NO_INSTALL = yes
27 endif
28
29 NO_TEST = yes
30
31 include ../../build/library.make