1 # Build all of the targets for any given host.....
3 # This file is going to be ugly. It will be VERY specific to the
4 # Cygnus environment and build-process.
9 include $(TREE)/release-info
11 TEST_INSTALL_DISK = /tug
13 INSTALLDIR = $(TEST_INSTALL_DISK)/$(TREE)-test/$(RELEASE_TAG)
16 host := $(shell $(TREE)/config.guess)
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
32 canonhost := $(shell $(TREE)/config.sub $(host))
34 # Convert config.guess results to a simpler form.
35 ifeq ($(canonhost),sparc-sun-solaris2.1)
36 canonhost := sparc-sun-solaris2
38 ifeq ($(canonhost),mips-dec-ultrix4.2)
39 canonhost := mips-dec-ultrix
41 ifeq ($(canonhost),mips-sgi-irix4.0.1)
42 canonhost := mips-sgi-irix4
44 ifeq ($(canonhost),rs6000-ibm-aix3.2)
45 canonhost := rs6000-ibm-aix
47 ifeq ($(canonhost),i486-unknown-sco3.2v4.0)
48 canonhost := i386-sco3.2v4
50 ifeq ($(canonhost),i386-unknown-sco3.2v4.0)
51 canonhost := i386-sco3.2v4
53 ifeq ($(canonhost),i386-unknown-sco3.2v4)
54 canonhost := i386-sco3.2v4
56 ifeq ($(canonhost),i386-unknown-go32)
57 canonhost := i386-go32
59 ifeq ($(canonhost),i386-unknown-sysv4.2)
60 canonhost := i386-sysv4.2
62 ifeq ($(canonhost),i386-lynx-lynxos)
63 canonhost := i386-lynxos
65 ifeq ($(canonhost),m68k-lynx-lynxos)
66 canonhost := m68k-lynxos
69 ifeq ($(canonhost),sparc-sun-sunos4.1.3)
77 i960-vxworks i960-intel-nindy \
79 m68k-aout m68k-vxworks m68k-coff \
82 sparc-aout sparc-vxworks \
83 sparclite-aout sparclite-vxworks \
89 ifeq ($(canonhost),m68k-sun-sunos4.1.1)
91 m68k-aout m68k-coff i960-intel-nindy
92 GCC = gcc -O -msoft-float
97 ifeq ($(canonhost),sparc-sun-solaris2)
101 i960-vxworks i960-intel-nindy \
102 m68k-aout m68k-coff m68k-vxworks \
104 mips-idt-ecoff mipsel-idt-ecoff \
105 sparc-aout sparc-vxworks sparclite-aout
111 ifeq ($(canonhost),mips-dec-ultrix)
112 TARGETS = $(NATIVE) m68k-aout
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
124 ifeq ($(canonhost),rs6000-ibm-aix)
125 TARGETS = $(NATIVE) \
126 i960-vxworks i960-intel-nindy \
131 ifeq ($(canonhost),m68k-hp-hpux)
132 TARGETS = $(NATIVE) m68k-aout
133 TMPDIR := $(shell mkdir $(canonhost)-tmpdir; cd $(canonhost)-tmpdir ; pwd)
140 ifeq ($(canonhost),hppa1.1-hp-hpux)
144 m68k-aout m68k-vxworks
151 ifeq ($(canonhost),i386-sco3.2v4)
152 TARGETS = $(NATIVE) i386-aout
156 ifeq ($(canonhost),i386-go32)
161 m68k-aout m68k-coff \
166 GCC = i386-go32-gcc -O
169 MAKEINFOFLAGS = --no-split
173 ifeq ($(canonhost),i386-sysv4.2)
179 ifeq ($(canonhost),i386-lynxos)
186 ifeq ($(canonhost),m68k-lynxos)
198 "CXXFLAGS=$(CXXFLAGS)" \
199 "host=$(canonhost)" \
200 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
201 "RELEASE_TAG=$(RELEASE_TAG)" \
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"
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
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" ; \
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" ; \
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 ; \
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)
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \
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" ; \