fix install-local and simplify signing in rx assemblies.
[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 2 4, $(FRAMEWORK_VERSION_MAJOR))
29 ifndef VALID_PROFILE
30 LIBRARY_NAME = dummy-System.System.Reactive.Windows.Forms.dll
31 NO_INSTALL = yes
32 NO_SIGN_ASSEMBLY = yes
33 endif
34
35 NO_TEST = yes
36
37 include ../../build/library.make