Rewrite of core coder & decoder functions to fix several bugs and limitations, and...
[mono.git] / mcs / class / System.Reactive.Windows.Forms / Makefile
1 thisdir = class/System.Reactive.Windows.Forms
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Reactive.Windows.Forms.dll
6 LIB_MCS_FLAGS = \
7                 @more_build_args \
8                 -r:System.dll \
9                 -r:System.Core.dll \
10                 -r:System.Reactive.Interfaces.dll \
11                 -r:System.Reactive.Core.dll \
12                 -r:System.Reactive.Linq.dll \
13                 -r:System.Windows.Forms.dll
14
15 ifeq (2.1, $(FRAMEWORK_VERSION))
16 LIB_MCS_FLAGS += -d:NO_TASK_DELAY
17 endif
18
19 NET_4_5 := $(filter 4.5, $(FRAMEWORK_VERSION))
20 ifdef NET_4_5
21 LIB_MCS_FLAGS += -d:HAS_EDI -d:PREFERASYNC -d:PREFER_ASYNC
22 endif
23
24 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
25
26 EXTRA_DISTFILES = more_build_args
27
28 VALID_PROFILE := $(filter net_4_0 net_4_5, $(PROFILE))
29 ifndef VALID_PROFILE
30 LIBRARY_NAME = dummy-System.System.Reactive.Windows.Forms.dll
31 NO_SIGN_ASSEMBLY = yes
32 endif
33
34 INSTALL_PROFILE := $(filter net_4_5, $(PROFILE))
35 ifndef INSTALL_PROFILE
36 NO_INSTALL = yes
37 endif
38
39 NO_TEST = yes
40
41 include ../../build/library.make