2009-06-12 Bill Holmes <billholmes54@gmail.com>
[mono.git] / mcs / class / System.Core / Makefile
1 thisdir = class/System.Core
2 SUBDIRS = 
3 include ../../build/rules.make
4
5 LIBRARY = System.Core.dll
6
7 LIB_MCS_FLAGS = -d:LIBC /r:$(corlib) /r:System
8
9 ifneq (2.1, $(FRAMEWORK_VERSION))
10 LIB_MCS_FLAGS += -d:NET_3_5 -nowarn:1720
11 endif
12
13 TEST_MCS_FLAGS = $(LIB_MCS_FLAGS)
14
15 # This is a .NET 2.0+ only assembly
16 VALID_PROFILE := $(filter net_2_0 net_2_1_raw net_4_0, $(PROFILE))
17 ifndef VALID_PROFILE
18 LIBRARY_NAME = dummy-System.Core.dll
19 NO_INSTALL = yes
20 NO_SIGN_ASSEMBLY = yes
21 NO_TEST = yes
22 endif
23
24 include ../../build/library.make
25