2008-12-08 Atsushi Enomoto <atsushi@ximian.com>
[mono.git] / mcs / class / corlib / Makefile
1 thisdir = class/corlib
2 SUBDIRS =
3 include ../../build/rules.make
4 export __SECURITY_BOOTSTRAP_DB=$(topdir)/class/corlib
5
6 LIBRARY = corlib.dll
7 LIBRARY_NAME = mscorlib.dll
8 LIB_MCS_FLAGS = $(corlib_flags) $(RESOURCE_FILES:%=-resource:%)
9 LIBRARY_USE_INTERMEDIATE_FILE = yes
10
11 LIBRARY_COMPILE = $(BOOT_COMPILE)
12 LIBRARY_INSTALL_DIR = $(mono_libdir)/mono/$(FRAMEWORK_VERSION)
13
14 AOT_IN_PROFILES = net_1_1
15
16 RESOURCE_FILES = \
17         resources/collation.core.bin \
18         resources/collation.tailoring.bin \
19         resources/collation.cjkCHS.bin \
20         resources/collation.cjkCHT.bin \
21         resources/collation.cjkJA.bin \
22         resources/collation.cjkKO.bin \
23         resources/collation.cjkKOlv2.bin
24
25 corlib_flags = -unsafe -nostdlib
26 LOCAL_MCS_FLAGS = -nowarn:612,618 -d:INSIDE_CORLIB
27
28 # System.IO/DirectoryInfoTest.cs needs Mono.Posix
29 TEST_MCS_FLAGS = -debug+ -debug:full -nowarn:168,219,618,672 -unsafe -r:$(topdir)/class/lib/$(PROFILE)/Mono.Posix.dll -define:MONO_DATACONVERTER_STATIC_METHODS
30
31 EXTRA_DISTFILES = \
32         corlib.dll.win32-excludes               \
33         Test/ms_run_test.sh                     \
34         Test/resources/MyResources.resources    \
35         Test/resources/MyResources.de.resources \
36         Test/resources/Empty.resources          \
37         Test/resources/AFile.txt                \
38         Test/resources/StreamTest.resources     \
39         Test/resources/StreamTest.ja.resources  \
40         Test/resources/bug81759.resources       \
41         $(RESOURCE_FILES)
42
43 include $(topdir)/build/library.make
44
45 ifdef FIXME_CORLIB_CMP
46 # corlib_cmp
47 cmplib = $(topdir)/class/lib/$(PROFILE)/corlib_cmp.dll
48 cmppdb = $(cmplib:.dll=.pdb)
49 cmp_response = $(depsdir)/$(PROFILE)_corlib_cmp.dll.response
50 cmp_makefrag = $(depsdir)/$(PROFILE)_corlib_cmp.dll.makefrag
51 cmp_flags = -r:$(PLATFORM_CORLIB) $(corlib_flags)
52
53 EXTRA_DISTFILES += corlib_cmp.dll.excludes
54 CLEAN_FILES += $(cmplib) $(cmp_response) $(cmp_makefrag) $(cmppdb)
55
56 $(cmplib): $(cmp_makefrag) $(cmp_response)
57         $(BOOT_COMPILE) $(LIBRARY_FLAGS) $(cmp_flags) -target:library -out:$@ @$(cmp_response)
58
59 $(cmp_response): $(sourcefile) corlib_cmp.dll.excludes
60         @echo Creating $@ ...
61         @sort $(sourcefile) corlib_cmp.dll.excludes | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
62
63 $(cmp_makefrag): $(cmp_response)
64         @echo Creating $@ ...
65         @sed 's,^,$(cmplib): ,' $< >$@
66
67 # Since we make corlib_cmp on demand, there isn't a real need
68 # to have full dep tracking for it. Also, the generation of this
69 # file is busted on Win32 ('sort' seems to mess up line endings),
70 # leading to a broken build.
71 #
72 # -include $(cmp_makefrag)
73
74 $(cmp_response) $(cmp_makefrag): Makefile $(depsdir)/.stamp
75 endif
76
77 #
78 # qh21 = Quick Hack for 2.1, to be used by impatient developers to get
79 # test builds done quickly
80 #
81 qh21:
82         make PROFILE=net_2_1_raw
83         (cd ../../tools/tuner; rm tune.stamp; make tune.stamp && make PROFILE=net_2_1 install)