]> Git Repo - binutils.git/blob - build-all.mk
* c-exp.y (yylex): Don't try to deal with nested types.
[binutils.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 #
7
8 TREE    = devo
9 include $(TREE)/release-info
10
11 TEST_INSTALL_DISK = /tug
12
13 INSTALLDIR = $(TEST_INSTALL_DISK)/$(TREE)-test/$(RELEASE_TAG)
14
15 ifndef host
16 host := $(shell $(TREE)/config.guess)
17 endif
18
19 NATIVE  = native
20
21 GCC      = gcc -O 
22 CFLAGS   = -g
23 CXXFLAGS = -g -O
24 MAKEINFOFLAGS =
25
26 log     = 1>$(canonhost)-build-log 2>&1
27 clog    = 1>$(canonhost)-check-log 2>&1
28 cyglog    = 1> $(canonhost)-x-$$i-cygnus-build-log 2>&1
29 latestlog = 1> $(canonhost)-x-$$i-latest-build-log 2>&1
30 natlog    = 1> $(canonhost)-x-$$i-native-build-log 2>&1
31
32 canonhost := $(shell $(TREE)/config.sub $(host))
33
34 # Convert config.guess results to a simpler form.
35 ifeq ($(canonhost),sparc-sun-solaris2.1)
36 canonhost := sparc-sun-solaris2
37 endif
38 ifeq ($(canonhost),mips-dec-ultrix4.2)
39 canonhost := mips-dec-ultrix
40 endif
41 ifeq ($(canonhost),mips-sgi-irix4.0.1)
42 canonhost := mips-sgi-irix4
43 endif
44 ifeq ($(canonhost),rs6000-ibm-aix3.2)
45 canonhost := rs6000-ibm-aix
46 endif
47 ifeq ($(canonhost),i486-unknown-sco3.2v4.0)
48 canonhost := i386-sco3.2v4
49 endif
50 ifeq ($(canonhost),i386-unknown-sco3.2v4.0)
51 canonhost := i386-sco3.2v4
52 endif
53 ifeq ($(canonhost),i386-unknown-sco3.2v4)
54 canonhost := i386-sco3.2v4
55 endif
56 ifeq ($(canonhost),i386-unknown-go32)
57 canonhost := i386-go32
58 endif
59 ifeq ($(canonhost),i386-unknown-sysv4.2)
60 canonhost := i386-sysv4.2
61 endif
62 ifeq ($(canonhost),i386-lynx-lynxos)
63 canonhost := i386-lynxos
64 endif
65 ifeq ($(canonhost),m68k-lynx-lynxos)
66 canonhost := m68k-lynxos
67 endif
68
69 ifeq ($(canonhost),sparc-sun-sunos4.1.3)
70 TARGETS = $(NATIVE) \
71         i386-go32       \
72         a29k-amd-udi    \
73         h8300-hms       \
74         i386-aout       \
75         i386-lynx       \
76         i386-netware    \
77         i960-vxworks    i960-intel-nindy \
78         mips-idt-ecoff  \
79         m68k-aout       m68k-vxworks    m68k-coff \
80         m68k-lynx       \
81         sh-hms          \
82         sparc-aout      sparc-vxworks   \
83         sparclite-aout  sparclite-vxworks \
84         z8k-coff
85 GCC = gcc -O -pipe
86 all: all-cygnus
87 endif
88
89 ifeq ($(canonhost),m68k-sun-sunos4.1.1)
90 TARGETS = $(NATIVE) \
91         m68k-aout       m68k-coff       i960-intel-nindy 
92 GCC = gcc -O -msoft-float
93 CC = cc -J
94 all: all-cygnus
95 endif
96
97 ifeq ($(canonhost),sparc-sun-solaris2)
98 TARGETS = $(NATIVE) \
99         a29k-amd-udi \
100         i386-aout \
101         i960-vxworks    i960-intel-nindy \
102         m68k-aout       m68k-coff       m68k-vxworks \
103         m88k-coff       \
104         mips-idt-ecoff  mipsel-idt-ecoff \
105         sparc-aout      sparc-vxworks   sparclite-aout
106 CC = cc -Xs
107 GCC = gcc -O -pipe
108 all: all-cygnus
109 endif
110
111 ifeq ($(canonhost),mips-dec-ultrix)
112 TARGETS = $(NATIVE) m68k-aout
113 CC = cc -Wf,-XNg1000
114 all: all-cygnus
115 endif
116
117 ifeq ($(canonhost),mips-sgi-irix4)
118 TARGETS = $(NATIVE) \
119         mips-idt-ecoff  sh-hms
120 CC = cc -cckr -Wf,-XNg1500 -Wf,-XNk1000 -Wf,-XNh1500
121 all: all-cygnus
122 endif
123
124 ifeq ($(canonhost),rs6000-ibm-aix)
125 TARGETS = $(NATIVE) \
126         i960-vxworks    i960-intel-nindy \
127         m68k-vxworks
128 all: all-cygnus
129 endif
130
131 ifeq ($(canonhost),m68k-hp-hpux)
132 TARGETS = $(NATIVE)     m68k-aout
133 TMPDIR := $(shell mkdir $(canonhost)-tmpdir; cd $(canonhost)-tmpdir ; pwd)
134 CC = cc -Wp,-P 
135 #CFLAGS = +O1000 
136 CFLAGS = 
137 all: all-cygnus
138 endif
139
140 ifeq ($(canonhost),hppa1.1-hp-hpux)
141 TARGETS = \
142         $(NATIVE) \
143         i960-vxworks \
144         m68k-aout       m68k-vxworks
145 CC = cc 
146 #CFLAGS = +Obb2000
147 CFLAGS = -g
148 all: all-native
149 endif
150
151 ifeq ($(canonhost),i386-sco3.2v4)
152 TARGETS = $(NATIVE) i386-aout
153 all: all-cygnus
154 endif
155
156 ifeq ($(canonhost),i386-go32)
157 TARGETS = \
158         a29k-amd-udi \
159         h8300-hms       \
160         i386-aout       \
161         m68k-aout       m68k-coff \
162         mips-idt-ecoff  \
163         sh-hms          \
164         sparclite-aout
165 CC = i386-go32-gcc
166 GCC = i386-go32-gcc -O
167 CFLAGS =
168 CXXFLAGS = -O
169 MAKEINFOFLAGS = --no-split
170 all: all-cross
171 endif
172
173 ifeq ($(canonhost),i386-sysv4.2)
174 TARGETS = $(NATIVE) 
175 CC = cc
176 all: all-cygnus
177 endif
178
179 ifeq ($(canonhost),i386-lynxos)
180 TARGETS = $(NATIVE)
181 CC = /bin/gcc
182 all: all-cygnus
183 SHELL=/bin/bash
184 endif
185
186 ifeq ($(canonhost),m68k-lynxos)
187 TARGETS = $(NATIVE)
188 CC = /bin/gcc
189 all: all-cygnus
190 SHELL=/bin/bash
191 endif
192
193
194 FLAGS_TO_PASS := \
195         "GCC=$(GCC)" \
196         "CC=$(CC)" \
197         "CFLAGS=$(CFLAGS)" \
198         "CXXFLAGS=$(CXXFLAGS)" \
199         "host=$(canonhost)" \
200         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
201         "RELEASE_TAG=$(RELEASE_TAG)" \
202         "SHELL=$(SHELL)"
203
204 # set GNU_MAKE and CONFIG_SHELL correctly in sub-builds
205 ifeq ($(patsubst %-lynxos,lynxos,$(canonhost)),lynxos)
206 FLAGS_TO_PASS := $(FLAGS_TO_PASS) "GNU_MAKE=$(MAKE)" "CONFIG_SHELL=/bin/bash"
207 endif
208
209 all-emacs:
210         @echo build started at `date`
211         [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
212         -rm -f $(ROOTING)/$(RELEASE_TAG)
213         ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) 
214         $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1 > $(canonhost)-emacs-native-log 2>&1 
215         $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do-latest > $(canonhost)-emacs-latest-log 2>&1 
216         @echo done at `date`
217
218 all-cygnus:
219         @echo build started at `date`
220         [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
221         -rm -f $(ROOTING)/$(RELEASE_TAG) && ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) 
222         @for i in $(TARGETS) ; do \
223           if [ "$$i" = "native" ] ; then \
224             if [ ! -f $(canonhost)-stamp-3stage-done ] ; then \
225               echo "3staging $(canonhost) native" ; \
226               $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \
227                  echo "     completed successfully" ; \
228             else \
229               true ; \
230             fi ; \
231           else \
232             echo "building $(canonhost) cross to $$i" ; \
233             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-cygnus $(cyglog) && \
234                echo "     completed successfully" ; \
235           fi ; \
236         done
237         @if [ ! -f $(canonhost)-stamp-3stage-checked ] ; then \
238           echo checking $(canonhost) native ; \
239           $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-check-3stage $(clog) ; \
240           touch $(canonhost)-stamp-3stage-checked ; \
241         else \
242           true ; \
243         fi
244         @echo done at `date`
245
246 native:
247         @echo build started at `date`
248         [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
249         rm -f $(ROOTING)/$(RELEASE_TAG)
250         ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG) 
251         $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log)
252         @echo done at `date`
253
254 build-cygnus:
255         @echo build started at `date`
256         @for i in $(TARGETS) ; do \
257           if [ "$$i" = "native" ] ; then \
258             if [ ! -f $(canonhost)-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             fi ; \
263           else \
264             echo "building $(canonhost) cross to $$i:" `date` ; \
265             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \
266                echo "     completed successfully" ; \
267           fi ; \
268         done
269         @echo done at `date`
270
271 build-latest:
272         @echo build started at `date`
273         @for i in $(TARGETS) ; do \
274           if [ "$$i" != "native" ] ; then \
275             echo "building $(canonhost) cross to $$i:" `date` ; \
276             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(latestlog) && \
277                echo "     completed successfully" ; \
278           fi ; \
279         done
280         @echo done at `date`
281
282 all-native:
283         [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
284         rm -f $(ROOTING)/$(RELEASE_TAG)
285         ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
286         @for i in $(TARGETS) ; do \
287             echo "building $(canonhost) cross to $$i" ; \
288             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native $(natlog) && \
289                echo "     completed successfully" ; \
290         done
291
292 all-cross:
293         [ -d $(INSTALLDIR) ] || mkdir $(INSTALLDIR)
294         rm -f $(ROOTING)/$(RELEASE_TAG)
295         ln -s $(INSTALLDIR) $(ROOTING)/$(RELEASE_TAG)
296         @for i in $(TARGETS) ; do \
297             echo "building $(canonhost) cross to $$i" ; \
298             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build=$(build) do-cygnus $(cyglog) && \
299                echo "     completed successfully" ; \
300         done
301
302 config:
303         @for i in $(TARGETS) ; do \
304           if [ "$$i" = "native" ] ; then \
305             echo "config stage1 for $(canonhost)" ; \
306             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-config $(log) && \
307                echo "     completed successfully" ; \
308           else \
309             echo "config $(canonhost) cross to $$i" ; \
310             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i do-native-config $(cyglog) && \
311                echo "     completed successfully" ;  \
312           fi ; \
313         done
314
315
316 build:
317         @for i in $(TARGETS) ; do \
318           if [ "$$i" = "native" ] ; then \
319             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) do1-build $(log) && \
320                echo "     completed successfully" ; \
321           else \
322             echo "building $(canonhost) cross to $$i" ; \
323             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-native $(natlog) && \
324                echo "     completed successfully" ; \
325           fi ; \
326         done
327
328
329 3build:
330         @for i in $(TARGETS) ; do \
331           if [ "$$i" = "native" ] ; then \
332             echo "building 3stage for $(canonhost)" ; \
333             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) all $(log) && \
334                echo "     completed successfully" ; \
335           else \
336             echo "building $(canonhost) cross to $$i" ; \
337             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-cygnus $(cyglog) && \
338                echo "     completed successfully" ; \
339           fi ; \
340         done
341
342 build-all-latest:
343         @for i in $(TARGETS) ; do \
344           if [ "$$i" = "native" ] ; then \
345             echo "building 3stage for $(canonhost)" ; \
346             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) $(canonhost)-stamp-3stage-done $(log) && \
347                echo "     completed successfully" ; \
348           else \
349             echo "building $(canonhost) cross to $$i" ; \
350             $(MAKE) -f test-build.mk $(FLAGS_TO_PASS) target=$$i build-latest $(cyglog) && \
351                echo "     completed successfully" ; \
352           fi ; \
353         done
354
355 ### Local Variables:
356 ### fill-column: 131
357 ### End:
This page took 0.044524 seconds and 4 git commands to generate.