Merge pull request #1542 from ninjarobot/UriTemplateMatchException
[mono.git] / mcs / class / System.Interactive.Async / Makefile
1 thisdir = class/System.Interactive.Async
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Interactive.Async.dll
6 LIB_MCS_FLAGS = \
7                 @more_build_args \
8                 -r:System.dll \
9                 -r:System.Core.dll
10
11 ifeq (2.1, $(FRAMEWORK_VERSION))
12 LIB_MCS_FLAGS += -d:NO_TASK_DELAY -d:HAS_AWAIT
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 VALID_PROFILE := $(filter monotouch monodroid mobile mobile_static xammac net_4_5, $(PROFILE))
25 ifndef VALID_PROFILE
26 LIBRARY_NAME = dummy-System.System.Interactive.Async.dll
27 NO_SIGN_ASSEMBLY = yes
28 endif
29
30 INSTALL_PROFILE := $(filter net_4_5, $(PROFILE))
31 ifndef INSTALL_PROFILE
32 NO_INSTALL = yes
33 endif
34
35 NO_TEST = yes
36
37 include ../../build/library.make