2004-07-07 Sebastien Pouliot <sebastien@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 # 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 ifeq (net_2_0, $(PROFILE))
23 LIBRARY_INSTALL_DIR = $(prefix)/lib/mono/2.0
24 else
25 LIBRARY_INSTALL_DIR = $(prefix)/lib
26 endif
27
28 CLEAN_FILES = $(cmplib) $(reslib) $(plattestlib) $(plattestlib).sources \
29                $(net20bootstrap_makefrag) \
30                $(cmp_response) $(cmp_makefrag) \
31                $(res_response) $(res_makefrag) \
32                $(cmppdb) $(respdb) $(plattestpdb)
33
34 # If building on a non mono-native platform, default
35 # to running the unit tests on its corlib, to see if
36 # our tests are complaint with their (hopefully bug-free)
37 # corlib. If on a mono-native platform, test our actual
38 # corlib.
39 #
40 # You can access either one on demand with either 'make
41 # run-monotest' or 'make run-plattest'.
42
43 plattestlib = corlib_plattest.dll
44 plattestpdb = $(patsubst %.dll,%.pdb,$(plattestlib))
45 reslib = $(topdir)/class/lib/$(PROFILE)/corlib_res.dll
46 cmplib = $(topdir)/class/lib/$(PROFILE)/corlib_cmp.dll
47
48 $(plattestlib).sources: corlib_test.dll.sources $(plattestlib).excludes
49         sort corlib_test.dll.sources $(plattestlib).excludes | uniq -u >$@
50
51 TEST_MCS_FLAGS = /debug+ /debug:full /nowarn:0618 /nowarn:0672 /unsafe
52
53 ifndef PLATFORM_MONO_NATIVE
54 test_lib = $(plattestlib)
55 test_against = $(PLATFORM_CORLIB)
56 HAVE_CS_TESTS = $(plattestlib).sources
57
58 ## for now, compiling the testsuite with CSC causes CS0583.  So compile with internal MCS
59 TEST_COMPILE = $(INTERNAL_MCS) $(USE_MCS_FLAGS)
60 endif
61
62 run-test-ondotnet-local: run-plattest-ondotnet
63
64 ifdef PLATFORM_MONO_NATIVE
65 run-monotest: run-test
66 else
67 run-monotest:
68         $(MAKE) $(reslib)
69         $(MAKE) test_lib=corlib_test.dll test_against=$(reslib) run-test
70
71 run-plattest:
72         $(MAKE) test_lib=$(plattestlib) test_against='$(PLATFORM_CORLIB)' run-test
73 endif
74
75 run-plattest-ondotnet: $(plattestlib)
76         $(TEST_HARNESS) $(plattestlib)
77
78 EXTRA_DISTFILES = \
79         corlib.dll.win32-excludes corlib_cmp.dll.excludes corlib_res.dll.excludes \
80         $(plattestlib).excludes \
81         Test/ms_run_test.sh
82
83 ifeq (net_2_0, $(PROFILE))
84 # Net 2.0 corlib is built with in-tree 'gmcs'
85 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
86 else
87 LIBRARY_COMPILE = $(BOOT_COMPILE)
88 endif
89
90 include ../../build/library.make
91
92 gmcs = $(topdir)/gmcs/gmcs.exe
93 net20bootstraplib = $(topdir)/class/lib/net_2_0_bootstrap/mscorlib.dll
94
95 ifeq (net_2_0, $(PROFILE))
96 $(the_lib): $(gmcs)
97
98 # The in-tree 'gmcs' needs at least a stripped-down version of the net 2.0 corlib.dll.  We build that first.
99 # make sure that $(gmcs) is up-to-date
100 FORCE:
101 $(gmcs): $(net20bootstraplib) FORCE
102         cd $(@D) && $(MAKE) $(@F)
103
104 #net_2_0_bootstrap
105
106 net20bootstrap_makefrag = $(depsdir)/net_2_0_bootstrap_corlib.dll.makefrag
107
108 $(net20bootstraplib): $(net20bootstrap_makefrag) $(response)
109         $(BOOTSTRAP_MCS) $(LOCAL_MCS_FLAGS) /define:NET_1_1 /define:BOOTSTRAP_NET_2_0 $(corlib_flags) /target:library /out:$(net20bootstraplib) @$(response)
110
111 $(net20bootstrap_makefrag): $(response)
112         @echo Creating $@ ...
113         @sed 's,^,$(net20bootstraplib): ,' $< >$@
114
115 -include $(net20bootstrap_makefrag)
116 endif
117
118 # corlib_cmp
119
120 cmppdb = $(patsubst %.dll,%.pdb,$(cmplib))
121 cmp_response = $(depsdir)/$(PROFILE)_corlib_cmp.dll.response
122 cmp_makefrag = $(depsdir)/$(PROFILE)_corlib_cmp.dll.makefrag
123 cmp_flags = /r:$(PLATFORM_CORLIB) $(corlib_flags)
124
125 $(cmplib): $(cmp_makefrag) $(cmp_response)
126         $(BOOT_COMPILE) $(LIBRARY_FLAGS) $(cmp_flags) /target:library /out:$@ @$(cmp_response)
127
128 $(cmp_response): $(sourcefile) corlib_cmp.dll.excludes
129         @echo Creating $@ ...
130         @sort $(sourcefile) corlib_cmp.dll.excludes | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
131
132 $(cmp_makefrag): $(cmp_response)
133         @echo Creating $@ ...
134         @sed 's,^,$(cmplib): ,' $< >$@
135
136 # Since we make corlib_cmp on demand, there isn't a real need
137 # to have full dep tracking for it. Also, the generation of this
138 # file is busted on Win32 ('sort' seems to mess up line endings),
139 # leading to a broken build.
140 #
141 # -include $(cmp_makefrag)
142
143 # corlib_res
144
145 respdb = $(patsubst %.dll,%.pdb,$(reslib))
146 res_response = $(depsdir)/$(PROFILE)_corlib_res.dll.response
147 res_makefrag = $(depsdir)/$(PROFILE)_corlib_res.dll.makefrag
148 res_flags = /r:$(PLATFORM_CORLIB) $(corlib_flags)
149
150 $(reslib): $(res_makefrag) $(res_response)
151         $(BOOT_COMPILE) $(LIBRARY_FLAGS) $(res_flags) /target:library /out:$@ @$(res_response)
152
153 $(res_response): $(sourcefile) corlib_res.dll.excludes
154         @echo Creating $@ ...
155         @sort $(sourcefile) corlib_res.dll.excludes | uniq -u | $(PLATFORM_CHANGE_SEPARATOR_CMD) >$@
156
157 # warning: embedded tab in the 'echo touch' line
158 $(res_makefrag): $(res_response)
159         @echo Creating $@ ...
160         @sed 's,^,$(reslib): ,' $< >$@
161
162 -include $(res_makefrag)