b0a3aca4e7b3e28a22394035e556adcd4e894435
[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 # corlib is crazy to build so we skip build/library.make and do stuff
7 # ourselves.
8 #
9 # Here, we define a bunch of variables.
10
11 corlib_flags = /unsafe /nostdlib
12 LOCAL_MCS_FLAGS = /nowarn:649 /nowarn:169 -d:INSIDE_CORLIB
13
14 LIBRARY = corlib.dll
15 LIBRARY_NAME = mscorlib.dll
16 LIB_MCS_FLAGS = $(corlib_flags)
17 LIBRARY_USE_INTERMEDIATE_FILE = yes
18
19 # disable, until people fix their code...
20 #corlib_flags = /unsafe /nostdlib /d:INSIDE_CORLIB
21
22 LIBRARY_INSTALL_DIR = $(prefix)/lib/mono/$(FRAMEWORK_VERSION)
23
24 CLEAN_FILES = $(cmplib) $(reslib) $(plattestlib) $(plattestlib).sources \
25                $(cmp_response) $(cmp_makefrag) \
26                $(res_response) $(res_makefrag) \
27                $(cmppdb) $(respdb) $(plattestpdb)
28
29 # If building on a non mono-native platform, default
30 # to running the unit tests on its corlib, to see if
31 # our tests are complaint with their (hopefully bug-free)
32 # corlib. If on a mono-native platform, test our actual
33 # corlib.
34 #
35 # You can access either one on demand with either 'make
36 # run-monotest' or 'make run-plattest'.
37
38 plattestlib = corlib_plattest.dll
39 plattestpdb = $(patsubst %.dll,%.pdb,$(plattestlib))
40 reslib = $(topdir)/class/lib/$(PROFILE)/corlib_res.dll
41 cmplib = $(topdir)/class/lib/$(PROFILE)/corlib_cmp.dll
42
43 $(plattestlib).sources: corlib_test.dll.sources $(plattestlib).excludes
44         sort corlib_test.dll.sources $(plattestlib).excludes | uniq -u >$@
45
46 TEST_MCS_FLAGS = /debug+ /debug:full /nowarn:0618 /nowarn:0672 /unsafe
47
48 ifndef PLATFORM_MONO_NATIVE
49 test_lib = $(plattestlib)
50 test_against = $(PLATFORM_CORLIB)
51 HAVE_CS_TESTS = $(plattestlib).sources
52
53 ## for now, compiling the testsuite with CSC causes CS0583.  So compile with internal MCS
54 TEST_COMPILE = $(INTERNAL_MCS) $(USE_MCS_FLAGS)
55 endif
56
57 run-test-ondotnet-local: run-plattest-ondotnet
58
59 ifdef PLATFORM_MONO_NATIVE
60 run-monotest: run-test
61 else
62 run-monotest:
63         $(MAKE) $(reslib)
64         $(MAKE) test_lib=corlib_test.dll test_against=$(reslib) run-test
65
66 run-plattest:
67         $(MAKE) test_lib=$(plattestlib) test_against='$(PLATFORM_CORLIB)' run-test
68 endif
69
70 run-plattest-ondotnet: $(plattestlib)
71         $(TEST_HARNESS) /exclude=NotDotNet $(plattestlib)
72
73 EXTRA_DISTFILES = \
74         corlib.dll.win32-excludes corlib_cmp.dll.excludes corlib_res.dll.excludes \
75         $(plattestlib).excludes \
76         Test/ms_run_test.sh
77
78 ifeq (net_2_0, $(PROFILE))
79 # Net 2.0 corlib is built with in-tree 'gmcs'
80 gmcs = $(topdir)/gmcs/gmcs.exe
81
82 LIBRARY_COMPILE = MONO_PATH="../lib/net_2_0_bootstrap$(PLATFORM_PATH_SEPARATOR)$$MONO_PATH" $(RUNTIME) $(gmcs) $(USE_MCS_FLAGS) /define:NET_1_1 /define:NET_2_0
83 else
84 LIBRARY_COMPILE = $(BOOT_COMPILE)
85 endif
86
87 include ../../build/library.make
88
89 # corlib_cmp
90
91 cmppdb = $(patsubst %.dll,%.pdb,$(cmplib))
92 cmp_response = $(depsdir)/$(PROFILE)_corlib_cmp.dll.response
93 cmp_makefrag = $(depsdir)/$(PROFILE)_corlib_cmp.dll.makefrag
94 cmp_flags = /r:$(PLATFORM_CORLIB) $(corlib_flags)
95
96 $(cmplib): $(cmp_makefrag) $(cmp_response)
97         $(BOOT_COMPILE) $(LIBRARY_FLAGS) $(cmp_flags) /target:library /out:$@ @$(cmp_response)
98
99 $(cmp_response): $(sourcefile) corlib_cmp.dll.excludes
100         @echo Creating $@ ...
101         @sort $(sourcefile) corlib_cmp.dll.excludes | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
102
103 $(cmp_makefrag): $(cmp_response)
104         @echo Creating $@ ...
105         @sed 's,^,$(cmplib): ,' $< >$@
106
107 # Since we make corlib_cmp on demand, there isn't a real need
108 # to have full dep tracking for it. Also, the generation of this
109 # file is busted on Win32 ('sort' seems to mess up line endings),
110 # leading to a broken build.
111 #
112 # -include $(cmp_makefrag)
113
114 # corlib_res
115
116 respdb = $(patsubst %.dll,%.pdb,$(reslib))
117 res_response = $(depsdir)/$(PROFILE)_corlib_res.dll.response
118 res_makefrag = $(depsdir)/$(PROFILE)_corlib_res.dll.makefrag
119 res_flags = /r:$(PLATFORM_CORLIB) $(corlib_flags)
120
121 $(reslib): $(res_makefrag) $(res_response)
122         $(BOOT_COMPILE) $(LIBRARY_FLAGS) $(res_flags) /target:library /out:$@ @$(res_response)
123
124 $(res_response): $(sourcefile) corlib_res.dll.excludes
125         @echo Creating $@ ...
126         @sort $(sourcefile) corlib_res.dll.excludes | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
127
128 # warning: embedded tab in the 'echo touch' line
129 $(res_makefrag): $(res_response)
130         @echo Creating $@ ...
131         @sed 's,^,$(reslib): ,' $< >$@
132
133 -include $(res_makefrag)