]>
Commit | Line | Data |
---|---|---|
1 | # Build all of the targets for any given host..... | |
2 | # | |
3 | # This file is going to be ugly. It will be VERY specific to the | |
4 | # Cygnus environment and build-process. | |
5 | # | |
6 | # Useful targets (rt = recursion target): | |
7 | # (please correct or expand on this) | |
8 | # FIXME: Might some of these be superfluous? | |
9 | # | |
10 | # all-emacs | |
11 | # all-cygnus - set up install directories, build 3stage native and all | |
12 | # supported cross targets, then check 3stage'd native | |
13 | # (rt = $(canonhost)-stamp-3stage-done, do-cygnus for cross) | |
14 | # native - set up install directories, build 3stage native | |
15 | # (rt = $(canonhost)-stamp-3stage-1) | |
16 | # build-cygnus - build 3stage native and all supported cross targets | |
17 | # (rt = $(canonhost)-stamp-3stage-done, build-cygnus for cross) | |
18 | # build-latest - build native and all supported cross targets | |
19 | # (rt = build-latest) | |
20 | # all-native - set up install directories, build native | |
21 | # (rt = do-native) | |
22 | # all-cross - set up install directories, build all targets | |
23 | # (rt = do-cygnus) | |
24 | # config - configure native and all supported cross targets | |
25 | # (rt = do1-config, do-native-config for cross) | |
26 | # build - build native and all supported cross targets | |
27 | # (rt = do1-build, build-native for cross) | |
28 | # 3build - build 3stage native and all supported cross targets | |
29 | # (rt = all, build-cygnus for cross) | |
30 | # build-all-latest - build 3stage native and all supported cross targets | |
31 | # (rt = $(canonhost)-stamp-3stage-done, build-latest for cross) | |
32 | # clean - remove objdir directories, stamp files | |
33 | # (rt = clean) | |
34 | # | |
35 | # To configure/build for fewer targets, specify TARGETS="native cross1 ...". | |
36 | ||
37 | TREE = devo | |
38 | include $(TREE)/release-info | |
39 | ||
40 | TEST_INSTALL_DISK = /galt | |
41 | ||
42 | INSTALLDIR = $(TEST_INSTALL_DISK)/$(TREE)-test/$(RELEASE_TAG) | |
43 | ||
44 | ifndef host | |
45 | host := $(shell $(TREE)/config.guess) | |
46 | endif | |
47 | ||
48 | NATIVE = native | |
49 | ||
50 | GCC = gcc -O | |
51 | CFLAGS = -g | |
52 | CXXFLAGS = -g -O | |
53 | MAKEINFOFLAGS = | |
54 | ||
55 | log = 1>$(canonhost)-build-log 2>&1 | |
56 | clog = 1>$(canonhost)-check-log 2>&1 | |
57 | cyglog = 1> $(canonhost)-x-$$i-cygnus-build-log 2>&1 | |
58 | latestlog = 1> $(canonhost)-x-$$i-latest-build-log 2>&1 | |
59 | natlog = 1> $(canonhost)-x-$$i-native-build-log 2>&1 | |
60 | ||
61 | canonhost := $(shell $(TREE)/config.sub $(host)) | |
62 | ||
63 | # Convert config.guess results to a simpler form. | |
64 | ifeq ($(canonhost),sparc-sun-solaris2.1) | |
65 | canonhost := sparc-sun-solaris2 | |
66 | endif | |
67 | ifeq ($(canonhost),sparc-sun-solaris2.3) | |
68 | canonhost := sparc-sun-solaris2 | |
69 | endif | |
70 | ifeq ($(canonhost),mips-dec-ultrix4.2) | |
71 | canonhost := mips-dec-ultrix | |
72 | endif | |
73 | ifeq ($(canonhost),mips-sgi-irix4.0.1) | |
74 | canonhost := mips-sgi-irix4 | |
75 | endif | |
76 | ifeq ($(canonhost),mips-sgi-irix4.0.5H) | |
77 | canonhost := mips-sgi-irix4 | |
78 | endif | |
79 | ifeq ($(canonhost),rs6000-ibm-aix3.2) | |
80 | canonhost := rs6000-ibm-aix | |
81 | endif | |
82 | ifeq ($(canonhost),i486-unknown-sco3.2v4.0) | |
83 | canonhost := i386-sco3.2v4 | |
84 | endif | |
85 | ifeq ($(canonhost),i386-unknown-sco3.2v4.0) | |
86 | canonhost := i386-sco3.2v4 | |
87 | endif | |
88 | ifeq ($(canonhost),i386-unknown-sco3.2v4) | |
89 | canonhost := i386-sco3.2v4 | |
90 | endif | |
91 | ifeq ($(canonhost),i386-unknown-go32) | |
92 | canonhost := i386-go32 | |
93 | endif | |
94 | ifeq ($(canonhost),i386-unknown-sysv4.2) | |
95 | canonhost := i386-sysv4.2 | |
96 | endif | |
97 | ifeq ($(canonhost),i386-lynx-lynxos) | |
98 | canonhost := i386-lynx | |
99 | endif | |
100 | ifeq ($(canonhost),m68k-lynx-lynxos) | |
101 | canonhost := m68k-lynx | |
102 | endif | |
103 | ifeq ($(canonhost),rs6000-lynx-lynxos2.2.2) | |
104 | canonhost := rs6000-lynx | |
105 | endif | |
106 | ||
107 | ifeq ($(canonhost),sparc-sun-sunos4.1.3) | |
108 | TARGETS = $(NATIVE) \ | |
109 | i386-go32 \ | |
110 | a29k-amd-udi \ | |
111 | h8300-hms \ | |
112 | i386-aout \ | |
113 | i386-lynx \ | |
114 | i960-vxworks \ | |
115 | mips-idt-ecoff mips64-elf mips-elf \ | |
116 | m68k-aout m68k-vxworks m68k-coff \ | |
117 | m68k-lynx \ | |
118 | sh-hms \ | |
119 | sparc-aout sparc-lynx sparc-vxworks \ | |
120 | sparclite-aout sparclite-vxworks \ | |
121 | sparclite-coff z8k-coff | |
122 | GCC = gcc -O -pipe | |
123 | all: all-cygnus | |
124 | endif | |
125 | ||
126 | ifeq ($(canonhost),m68k-sun-sunos4.1.1) | |
127 | TARGETS = $(NATIVE) \ | |
128 | m68k-coff | |
129 | GCC = gcc -O -msoft-float | |
130 | CC = cc -J | |
131 | all: all-cygnus | |
132 | endif | |
133 | ||
134 | ifeq ($(canonhost),sparc-sun-solaris2) | |
135 | TARGETS = $(NATIVE) \ | |
136 | a29k-amd-udi \ | |
137 | i960-vxworks \ | |
138 | m68k-aout m68k-coff m68k-vxworks \ | |
139 | m88k-coff \ | |
140 | mipsel-idt-ecoff sparc-lynx | |
141 | CC = cc -Xs | |
142 | GCC = gcc -O -pipe | |
143 | all: all-cygnus | |
144 | endif | |
145 | ||
146 | ifeq ($(canonhost),mips-dec-ultrix) | |
147 | TARGETS = $(NATIVE) m68k-aout | |
148 | CC = cc -Wf,-XNg1000 | |
149 | all: all-cygnus | |
150 | endif | |
151 | ||
152 | ifeq ($(canonhost),mips-sgi-irix4) | |
153 | TARGETS = $(NATIVE) \ | |
154 | mips-idt-ecoff sh-hms \ | |
155 | mips64-elf | |
156 | CC = cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000 | |
157 | all: all-cygnus | |
158 | endif | |
159 | ||
160 | ifeq ($(canonhost),rs6000-ibm-aix) | |
161 | TARGETS = $(NATIVE) \ | |
162 | i960-vxworks \ | |
163 | m68k-aout | |
164 | all: all-cygnus | |
165 | endif | |
166 | ||
167 | ifeq ($(canonhost),m68k-hp-hpux) | |
168 | TARGETS = $(NATIVE) m68k-aout | |
169 | TMPDIR := $(shell mkdir $(canonhost)-tmpdir; cd $(canonhost)-tmpdir ; pwd) | |
170 | CC = cc -Wp,-P | |
171 | #CFLAGS = +O1000 | |
172 | CFLAGS = | |
173 | all: all-cygnus | |
174 | endif | |
175 | ||
176 | ifeq ($(canonhost),hppa1.1-hp-hpux) | |
177 | TARGETS = \ | |
178 | $(NATIVE) \ | |
179 | i960-vxworks \ | |
180 | m68k-aout m68k-vxworks | |
181 | CC = cc -Wp,-H256000 | |
182 | #CFLAGS = +Obb2000 | |
183 | CFLAGS = -g | |
184 | all: all-cygnus | |
185 | endif | |
186 | ||
187 | ifeq ($(canonhost),i386-sco3.2v4) | |
188 | TARGETS = $(NATIVE) i386-aout | |
189 | all: all-cygnus | |
190 | endif | |
191 | ||
192 | ifeq ($(canonhost),i386-go32) | |
193 | TARGETS = \ | |
194 | a29k-amd-udi \ | |
195 | h8300-hms \ | |
196 | i386-aout \ | |
197 | m68k-aout m68k-coff \ | |
198 | mips-idt-ecoff \ | |
199 | sh-hms \ | |
200 | sparclite-aout | |
201 | CC = i386-go32-gcc | |
202 | GCC = i386-go32-gcc -O | |
203 | CFLAGS = | |
204 | CXXFLAGS = -O | |
205 | MAKEINFOFLAGS = --no-split | |
206 | all: all-dos | |
207 | endif | |
208 | ||
209 | ifeq ($(canonhost),i386-sysv4.2) | |
210 | TARGETS = $(NATIVE) i386-netware | |
211 | CC = cc | |
212 | all: all-cygnus | |
213 | endif | |
214 | ||
215 | ifeq ($(canonhost),i386-lynx) | |
216 | TARGETS = $(NATIVE) | |
217 | CC = /bin/gcc | |
218 | all: all-cygnus | |
219 | SHELL=/bin/bash | |
220 | endif | |
221 | ||
222 | ifeq ($(canonhost),m68k-lynx) | |
223 | TARGETS = $(NATIVE) | |
224 | CC = /bin/gcc | |
225 | all: all-cygnus | |
226 | SHELL=/bin/bash | |
227 | endif | |
228 | ||
229 | ifeq ($(canonhost),sparc-lynx) | |
230 | TARGETS = $(NATIVE) | |
231 | CC = /bin/gcc | |
232 | all: all-cygnus | |
233 | SHELL=/bin/bash | |
234 | endif | |
235 | ||
236 | ifeq ($(canonhost),rs6000-lynx) | |
237 | TARGETS = $(NATIVE) | |
238 | CC = /usr/cygnus/progressive/bin/gcc | |
239 | all: all-cygnus | |
240 | SHELL=/bin/bash | |
241 | endif | |
242 | ||
243 | FLAGS_TO_PASS := \ | |
244 | "GCC=$(GCC)" \ | |
245 | "CC=$(CC)" \ | |
246 | "CFLAGS=$(CFLAGS)" \ | |
247 | "CXXFLAGS=$(CXXFLAGS)" \ | |
248 | "host=$(canonhost)" \ | |
249 | "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \ | |
250 | "RELEASE_TAG=$(RELEASE_TAG)" \ | |
251 | "SHELL=$(SHELL)" | |
252 | ||
253 | # set GNU_MAKE and CONFIG_SHELL correctly in sub-builds | |
254 | ifeq ($(patsubst %-lynxos,lynxos,$(canonhost)),lynxos) | |
255 | FLAGS_TO_PASS := $(FLAGS_TO_PASS) "GNU_MAKE=$(MAKE)" "CONFIG_SHELL=/bin/bash" | |
256 | endif | |
257 | ||
258 | all-emacs: | |
259 | @echo build started at `date` | |
260 | [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) | |
261 | -rm -f $(ROOTING)/$(RELEASE_TAG) | |
262 | ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) | |
263 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1 > $(canonhost)-emacs-native-log 2>&1 | |
264 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do-latest > $(canonhost)-emacs-latest-log 2>&1 | |
265 | @echo done at `date` | |
266 | ||
267 | all-cygnus: | |
268 | @echo build started at `date` | |
269 | [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) | |
270 | -rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) | |
271 | @for i in $(TARGETS) ; do \ | |
272 | if [ "$$i" = "native" ] ; then \ | |
273 | if [ ! -f $(canonhost)-stamp-3stage-done ] ; then \ | |
274 | echo "3staging $(canonhost) native" ; \ | |
275 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \ | |
276 | echo " completed successfully" ; \ | |
277 | else \ | |
278 | true ; \ | |
279 | fi ; \ | |
280 | else \ | |
281 | echo "building $(canonhost) cross to $$i" ; \ | |
282 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-cygnus $(cyglog) && \ | |
283 | echo " completed successfully" ; \ | |
284 | fi ; \ | |
285 | done | |
286 | @if [ ! -f $(canonhost)-stamp-3stage-checked ] ; then \ | |
287 | echo checking $(canonhost) native ; \ | |
288 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-check-3stage $(clog) ; \ | |
289 | touch $(canonhost)-stamp-3stage-checked ; \ | |
290 | else \ | |
291 | true ; \ | |
292 | fi | |
293 | @echo done at `date` | |
294 | ||
295 | native: | |
296 | @echo build started at `date` | |
297 | [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) | |
298 | rm -f $(ROOTING)/$(RELEASE_TAG) | |
299 | ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) | |
300 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) | |
301 | @echo done at `date` | |
302 | ||
303 | build-cygnus: | |
304 | @echo build started at `date` | |
305 | @for i in $(TARGETS) ; do \ | |
306 | if [ "$$i" = "native" ] ; then \ | |
307 | if [ ! -f $(canonhost)-3stage-done ] ; then \ | |
308 | echo "3staging $(canonhost) native" ; \ | |
309 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \ | |
310 | echo " completed successfully" ; \ | |
311 | fi ; \ | |
312 | else \ | |
313 | echo "building $(canonhost) cross to $$i:" `date` ; \ | |
314 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \ | |
315 | echo " completed successfully" ; \ | |
316 | fi ; \ | |
317 | done | |
318 | @echo done at `date` | |
319 | ||
320 | build-latest: | |
321 | @echo build started at `date` | |
322 | @for i in $(TARGETS) ; do \ | |
323 | if [ "$$i" != "native" ] ; then \ | |
324 | echo "building $(canonhost) cross to $$i:" `date` ; \ | |
325 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(latestlog) && \ | |
326 | echo " completed successfully" ; \ | |
327 | fi ; \ | |
328 | done | |
329 | @echo done at `date` | |
330 | ||
331 | all-native: | |
332 | [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) | |
333 | rm -f $(ROOTING)/$(RELEASE_TAG) | |
334 | ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) | |
335 | @for i in $(TARGETS) ; do \ | |
336 | echo "building $(canonhost) cross to $$i" ; \ | |
337 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native $(natlog) && \ | |
338 | echo " completed successfully" ; \ | |
339 | done | |
340 | ||
341 | all-cross: | |
342 | [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR) | |
343 | rm -f $(ROOTING)/$(RELEASE_TAG) | |
344 | ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) | |
345 | @for i in $(TARGETS) ; do \ | |
346 | echo "building $(canonhost) cross to $$i" ; \ | |
347 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(cyglog) && \ | |
348 | echo " completed successfully" ; \ | |
349 | done | |
350 | ||
351 | do-dos: | |
352 | $(MAKE) -f build-all.mk build=$(host) host=i386-go32 all-dos | |
353 | all-dos: | |
354 | @for i in $(TARGETS) ; do \ | |
355 | echo "building $(canonhost) cross to $$i" ; \ | |
356 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) host=$(host) target=$$i do-dos $(cyglog) && \ | |
357 | echo " completed successfully at `date`" ; \ | |
358 | done | |
359 | ||
360 | config: | |
361 | @for i in $(TARGETS) ; do \ | |
362 | if [ "$$i" = "native" ] ; then \ | |
363 | echo "config stage1 for $(canonhost)" ; \ | |
364 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-config $(log) && \ | |
365 | echo " completed successfully" ; \ | |
366 | else \ | |
367 | echo "config $(canonhost) cross to $$i" ; \ | |
368 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native-config $(cyglog) && \ | |
369 | echo " completed successfully" ; \ | |
370 | fi ; \ | |
371 | done | |
372 | ||
373 | ||
374 | build: | |
375 | @for i in $(TARGETS) ; do \ | |
376 | if [ "$$i" = "native" ] ; then \ | |
377 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-build $(log) && \ | |
378 | echo " completed successfully" ; \ | |
379 | else \ | |
380 | echo "building $(canonhost) cross to $$i" ; \ | |
381 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-native $(natlog) && \ | |
382 | echo " completed successfully" ; \ | |
383 | fi ; \ | |
384 | done | |
385 | ||
386 | ||
387 | 3build: | |
388 | @for i in $(TARGETS) ; do \ | |
389 | if [ "$$i" = "native" ] ; then \ | |
390 | echo "building 3stage for $(canonhost)" ; \ | |
391 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) all $(log) && \ | |
392 | echo " completed successfully" ; \ | |
393 | else \ | |
394 | echo "building $(canonhost) cross to $$i" ; \ | |
395 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \ | |
396 | echo " completed successfully" ; \ | |
397 | fi ; \ | |
398 | done | |
399 | ||
400 | build-all-latest: | |
401 | @for i in $(TARGETS) ; do \ | |
402 | if [ "$$i" = "native" ] ; then \ | |
403 | echo "building 3stage for $(canonhost)" ; \ | |
404 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \ | |
405 | echo " completed successfully" ; \ | |
406 | else \ | |
407 | echo "building $(canonhost) cross to $$i" ; \ | |
408 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(cyglog) && \ | |
409 | echo " completed successfully" ; \ | |
410 | fi ; \ | |
411 | done | |
412 | ||
413 | clean: | |
414 | $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) clean $(log) | |
415 | ||
416 | ### Local Variables: | |
417 | ### fill-column: 131 | |
418 | ### End: |