cleanup after 94q2 migration
[deliverable/binutils-gdb.git] / build-all.mk
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-lynxos
99 endif
100 ifeq ($(canonhost),m68k-lynx-lynxos)
101 canonhost := m68k-lynxos
102 endif
103
104 ifeq ($(canonhost),sparc-sun-sunos4.1.3)
105 TARGETS = $(NATIVE) \
106 i386-go32 \
107 a29k-amd-udi \
108 h8300-hms \
109 i386-aout \
110 i386-lynx \
111 i386-netware \
112 i960-vxworks i960-intel-nindy \
113 mips-idt-ecoff \
114 m68k-aout m68k-vxworks m68k-coff \
115 m68k-lynx \
116 sh-hms \
117 sparc-aout sparc-vxworks \
118 sparclite-aout sparclite-vxworks \
119 z8k-coff
120 GCC = gcc -O -pipe
121 all: all-cygnus
122 endif
123
124 ifeq ($(canonhost),m68k-sun-sunos4.1.1)
125 TARGETS = $(NATIVE) \
126 m68k-coff
127 GCC = gcc -O -msoft-float
128 CC = cc -J
129 all: all-cygnus
130 endif
131
132 ifeq ($(canonhost),sparc-sun-solaris2)
133 TARGETS = $(NATIVE) \
134 a29k-amd-udi \
135 i960-vxworks \
136 m68k-aout m68k-coff \
137 m88k-coff \
138 mipsel-idt-ecoff \
139 sparclite-aout
140 CC = cc -Xs
141 GCC = gcc -O -pipe
142 all: all-cygnus
143 endif
144
145 ifeq ($(canonhost),mips-dec-ultrix)
146 TARGETS = $(NATIVE) m68k-aout
147 CC = cc -Wf,-XNg1000
148 all: all-cygnus
149 endif
150
151 ifeq ($(canonhost),mips-sgi-irix4)
152 TARGETS = $(NATIVE) \
153 mips-idt-ecoff sh-hms
154 CC = cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh2000
155 all: all-cygnus
156 endif
157
158 ifeq ($(canonhost),rs6000-ibm-aix)
159 TARGETS = $(NATIVE) \
160 i960-vxworks \
161 m68k-aout
162 all: all-cygnus
163 endif
164
165 ifeq ($(canonhost),m68k-hp-hpux)
166 TARGETS = $(NATIVE) m68k-aout
167 TMPDIR := $(shell mkdir $(canonhost)-tmpdir; cd $(canonhost)-tmpdir ; pwd)
168 CC = cc -Wp,-P
169 #CFLAGS = +O1000
170 CFLAGS =
171 all: all-cygnus
172 endif
173
174 ifeq ($(canonhost),hppa1.1-hp-hpux)
175 TARGETS = \
176 $(NATIVE) \
177 i960-vxworks \
178 m68k-aout m68k-vxworks
179 CC = cc
180 #CFLAGS = +Obb2000
181 CFLAGS = -g
182 all: all-native
183 endif
184
185 ifeq ($(canonhost),i386-sco3.2v4)
186 TARGETS = $(NATIVE) i386-aout
187 all: all-cygnus
188 endif
189
190 ifeq ($(canonhost),i386-go32)
191 TARGETS = \
192 a29k-amd-udi \
193 h8300-hms \
194 i386-aout \
195 m68k-aout m68k-coff \
196 mips-idt-ecoff \
197 sh-hms \
198 sparclite-aout
199 CC = i386-go32-gcc
200 GCC = i386-go32-gcc -O
201 CFLAGS =
202 CXXFLAGS = -O
203 MAKEINFOFLAGS = --no-split
204 all: all-cross
205 endif
206
207 ifeq ($(canonhost),i386-sysv4.2)
208 TARGETS = $(NATIVE) i386-netware
209 CC = cc
210 all: all-cygnus
211 endif
212
213 ifeq ($(canonhost),i386-lynxos)
214 TARGETS = $(NATIVE)
215 CC = /bin/gcc
216 all: all-cygnus
217 SHELL=/bin/bash
218 endif
219
220 ifeq ($(canonhost),m68k-lynxos)
221 TARGETS = $(NATIVE)
222 CC = /bin/gcc
223 all: all-cygnus
224 SHELL=/bin/bash
225 endif
226
227
228 FLAGS_TO_PASS := \
229 "GCC=$(GCC)" \
230 "CC=$(CC)" \
231 "CFLAGS=$(CFLAGS)" \
232 "CXXFLAGS=$(CXXFLAGS)" \
233 "host=$(canonhost)" \
234 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
235 "RELEASE_TAG=$(RELEASE_TAG)" \
236 "SHELL=$(SHELL)"
237
238 # set GNU_MAKE and CONFIG_SHELL correctly in sub-builds
239 ifeq ($(patsubst %-lynxos,lynxos,$(canonhost)),lynxos)
240 FLAGS_TO_PASS := $(FLAGS_TO_PASS) "GNU_MAKE=$(MAKE)" "CONFIG_SHELL=/bin/bash"
241 endif
242
243 all-emacs:
244 @echo build started at `date`
245 [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
246 -rm -f $(ROOTING)/$(RELEASE_TAG)
247 ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
248 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1 > $(canonhost)-emacs-native-log 2>&1
249 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do-latest > $(canonhost)-emacs-latest-log 2>&1
250 @echo done at `date`
251
252 all-cygnus:
253 @echo build started at `date`
254 [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
255 -rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
256 @for i in $(TARGETS) ; do \
257 if [ "$$i" = "native" ] ; then \
258 if [ ! -f $(canonhost)-stamp-3stage-done ] ; then \
259 echo "3staging $(canonhost) native" ; \
260 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \
261 echo " completed successfully" ; \
262 else \
263 true ; \
264 fi ; \
265 else \
266 echo "building $(canonhost) cross to $$i" ; \
267 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-cygnus $(cyglog) && \
268 echo " completed successfully" ; \
269 fi ; \
270 done
271 @if [ ! -f $(canonhost)-stamp-3stage-checked ] ; then \
272 echo checking $(canonhost) native ; \
273 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-check-3stage $(clog) ; \
274 touch $(canonhost)-stamp-3stage-checked ; \
275 else \
276 true ; \
277 fi
278 @echo done at `date`
279
280 native:
281 @echo build started at `date`
282 [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
283 rm -f $(ROOTING)/$(RELEASE_TAG)
284 ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
285 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log)
286 @echo done at `date`
287
288 build-cygnus:
289 @echo build started at `date`
290 @for i in $(TARGETS) ; do \
291 if [ "$$i" = "native" ] ; then \
292 if [ ! -f $(canonhost)-3stage-done ] ; then \
293 echo "3staging $(canonhost) native" ; \
294 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \
295 echo " completed successfully" ; \
296 fi ; \
297 else \
298 echo "building $(canonhost) cross to $$i:" `date` ; \
299 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \
300 echo " completed successfully" ; \
301 fi ; \
302 done
303 @echo done at `date`
304
305 build-latest:
306 @echo build started at `date`
307 @for i in $(TARGETS) ; do \
308 if [ "$$i" != "native" ] ; then \
309 echo "building $(canonhost) cross to $$i:" `date` ; \
310 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(latestlog) && \
311 echo " completed successfully" ; \
312 fi ; \
313 done
314 @echo done at `date`
315
316 all-native:
317 [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
318 rm -f $(ROOTING)/$(RELEASE_TAG)
319 ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
320 @for i in $(TARGETS) ; do \
321 echo "building $(canonhost) cross to $$i" ; \
322 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native $(natlog) && \
323 echo " completed successfully" ; \
324 done
325
326 all-cross:
327 [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
328 rm -f $(ROOTING)/$(RELEASE_TAG)
329 ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
330 @for i in $(TARGETS) ; do \
331 echo "building $(canonhost) cross to $$i" ; \
332 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(cyglog) && \
333 echo " completed successfully" ; \
334 done
335
336 config:
337 @for i in $(TARGETS) ; do \
338 if [ "$$i" = "native" ] ; then \
339 echo "config stage1 for $(canonhost)" ; \
340 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-config $(log) && \
341 echo " completed successfully" ; \
342 else \
343 echo "config $(canonhost) cross to $$i" ; \
344 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native-config $(cyglog) && \
345 echo " completed successfully" ; \
346 fi ; \
347 done
348
349
350 build:
351 @for i in $(TARGETS) ; do \
352 if [ "$$i" = "native" ] ; then \
353 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-build $(log) && \
354 echo " completed successfully" ; \
355 else \
356 echo "building $(canonhost) cross to $$i" ; \
357 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-native $(natlog) && \
358 echo " completed successfully" ; \
359 fi ; \
360 done
361
362
363 3build:
364 @for i in $(TARGETS) ; do \
365 if [ "$$i" = "native" ] ; then \
366 echo "building 3stage for $(canonhost)" ; \
367 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) all $(log) && \
368 echo " completed successfully" ; \
369 else \
370 echo "building $(canonhost) cross to $$i" ; \
371 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \
372 echo " completed successfully" ; \
373 fi ; \
374 done
375
376 build-all-latest:
377 @for i in $(TARGETS) ; do \
378 if [ "$$i" = "native" ] ; then \
379 echo "building 3stage for $(canonhost)" ; \
380 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \
381 echo " completed successfully" ; \
382 else \
383 echo "building $(canonhost) cross to $$i" ; \
384 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(cyglog) && \
385 echo " completed successfully" ; \
386 fi ; \
387 done
388
389 clean:
390 $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) clean $(log)
391
392 ### Local Variables:
393 ### fill-column: 131
394 ### End:
This page took 0.038165 seconds and 5 git commands to generate.