Fix `make bootstrap' failures where libraries are compiled with wrong compiler.
[gcc.git] / Makefile.in
1 #
2 # Makefile for directory with subdirs to build.
3 # Copyright (C) 1990, 91, 92, 93, 94, 95, 96, 97, 1998 Free Software Foundation
4 #
5 # This file is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2 of the License, or
8 # (at your option) any later version.
9 #
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
14 #
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
18 #
19
20 srcdir = .
21
22 prefix = /usr/local
23
24 exec_prefix = $(prefix)
25 bindir = $(exec_prefix)/bin
26 libdir = $(exec_prefix)/lib
27 tooldir = $(exec_prefix)/$(target)
28
29 program_transform_name =
30
31 datadir = $(prefix)/share
32 mandir = $(prefix)/man
33 man1dir = $(mandir)/man1
34 man2dir = $(mandir)/man2
35 man3dir = $(mandir)/man3
36 man4dir = $(mandir)/man4
37 man5dir = $(mandir)/man5
38 man6dir = $(mandir)/man6
39 man7dir = $(mandir)/man7
40 man8dir = $(mandir)/man8
41 man9dir = $(mandir)/man9
42 infodir = $(prefix)/info
43 includedir = $(prefix)/include
44 # Directory in which the compiler finds executables, libraries, etc.
45 libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
46 GDB_NLM_DEPS =
47
48 SHELL = /bin/sh
49
50 # INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
51 # cygwin32 host.
52 INSTALL_PROGRAM_ARGS =
53
54 INSTALL = $(SHELL) $$s/install-sh -c
55 INSTALL_PROGRAM = $(INSTALL) $(INSTALL_PROGRAM_ARGS)
56 INSTALL_SCRIPT = $(INSTALL)
57 INSTALL_DATA = $(INSTALL) -m 644
58
59 INSTALL_DOSREL = install-dosrel-fake
60
61 AS = as
62 AR = ar
63 AR_FLAGS = rc
64 CC = cc
65
66 # Special variables passed down in EXTRA_GCC_FLAGS. They are defined
67 # here so that they can be overridden by Makefile fragments.
68 HOST_CC = $(CC_FOR_BUILD)
69 HOST_PREFIX =
70 HOST_PREFIX_1 = loser-
71
72 # These flag values are normally overridden by the configure script.
73 CFLAGS = -g
74 CXXFLAGS = -g -O2
75
76 LIBCFLAGS = $(CFLAGS)
77 CFLAGS_FOR_TARGET = $(CFLAGS)
78 LDFLAGS_FOR_TARGET =
79 LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
80 PICFLAG =
81 PICFLAG_FOR_TARGET =
82
83 CXX = c++
84
85 # Use -O2 to stress test the compiler.
86 LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
87 CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
88 LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
89
90 RANLIB = ranlib
91
92 DLLTOOL = dlltool
93 WINDRES = windres
94
95 NM = nm
96
97 LD = ld
98
99 # Not plain GZIP, since gzip looks there for extra command-line options.
100 GZIPPROG = gzip
101
102 # These values are substituted by configure.
103 DEFAULT_YACC = yacc
104 DEFAULT_LEX = lex
105 DEFAULT_M4 = m4
106
107 BISON = `if [ -f $$r/bison/bison ] ; then \
108 echo $$r/bison/bison -L $$s/bison/ ; \
109 else \
110 echo bison ; \
111 fi`
112
113 YACC = `if [ -f $$r/bison/bison ] ; then \
114 echo $$r/bison/bison -y -L $$s/bison/ ; \
115 elif [ -f $$r/byacc/byacc ] ; then \
116 echo $$r/byacc/byacc ; \
117 else \
118 echo ${DEFAULT_YACC} ; \
119 fi`
120
121 LEX = `if [ -f $$r/flex/flex ] ; \
122 then echo $$r/flex/flex ; \
123 else echo ${DEFAULT_LEX} ; fi`
124
125 M4 = `if [ -f $$r/m4/m4 ] ; \
126 then echo $$r/m4/m4 ; \
127 else echo ${DEFAULT_M4} ; fi`
128
129 MAKEINFO = `if [ -f $$r/texinfo/makeinfo/Makefile ] ; \
130 then echo $$r/texinfo/makeinfo/makeinfo ; \
131 else echo makeinfo ; fi`
132
133 # This just becomes part of the MAKEINFO definition passed down to
134 # sub-makes. It lets flags be given on the command line while still
135 # using the makeinfo from the object tree.
136 MAKEINFOFLAGS =
137
138 EXPECT = `if [ -f $$r/expect/expect ] ; \
139 then echo $$r/expect/expect ; \
140 else echo expect ; fi`
141
142 RUNTEST = `if [ -f $$s/dejagnu/runtest ] ; \
143 then echo $$s/dejagnu/runtest ; \
144 else echo runtest ; fi`
145
146
147 # compilers to use to create programs which must be run in the build
148 # environment.
149 CC_FOR_BUILD = $(CC)
150 CXX_FOR_BUILD = $(CXX)
151
152 SUBDIRS = "this is set via configure, don't edit this"
153 OTHERS =
154
155 # This is set by the configure script to the list of directories which
156 # should be built using the target tools.
157 TARGET_CONFIGDIRS = libiberty libgloss newlib libio librx libstdc++ libg++ libf2c libchill winsup
158
159 # Target libraries are put under this directory:
160 # Changed by configure to $(target_alias) if cross.
161 TARGET_SUBDIR = .
162
163 # This is set by the configure script to the arguments passed to configure.
164 CONFIG_ARGUMENTS =
165
166 # This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
167 # was used.
168 SET_LIB_PATH =
169
170 # This is the name of the environment variable used for the path to
171 # the libraries. This may be changed by configure.in.
172 RPATH_ENVVAR = LD_LIBRARY_PATH
173
174 # configure.in sets SET_LIB_PATH to this if --enable-shared was used.
175 REALLY_SET_LIB_PATH = \
176 $(RPATH_ENVVAR)=$$r/bfd:$$r/opcodes:$$$(RPATH_ENVVAR); \
177 export $(RPATH_ENVVAR);
178
179 ALL = all.normal
180 INSTALL_TARGET = installdirs \
181 install-gcc \
182 $(INSTALL_MODULES) \
183 $(INSTALL_TARGET_MODULES) \
184 $(INSTALL_X11_MODULES) \
185 $(INSTALL_DOSREL)
186
187 INSTALL_TARGET_CROSS = installdirs \
188 install-gcc-cross \
189 $(INSTALL_MODULES) \
190 $(INSTALL_TARGET_MODULES) \
191 $(INSTALL_X11_MODULES) \
192 $(INSTALL_DOSREL)
193
194 CC_FOR_TARGET = ` \
195 if [ -f $$r/gcc/xgcc ] ; then \
196 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
197 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
198 echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/$(TARGET_SUBDIR)/newlib/ -L$$r/$(TARGET_SUBDIR)/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
199 else \
200 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
201 fi; \
202 else \
203 echo $$r/gcc/xgcc -B$$r/gcc/; \
204 fi; \
205 else \
206 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
207 echo $(CC); \
208 else \
209 t='$(program_transform_name)'; echo gcc | sed -e 's/x/x/' $$t; \
210 fi; \
211 fi`
212
213 # If CC_FOR_TARGET is not overriden on the command line, then this
214 # variable is passed down to the gcc Makefile, where it is used to
215 # build libgcc2.a. We define it here so that it can itself be
216 # overridden on the command line.
217 GCC_FOR_TARGET = $$r/gcc/xgcc -B$$r/gcc/
218
219
220 CXX_FOR_TARGET = ` \
221 if [ -f $$r/gcc/xgcc ] ; then \
222 if [ -f $$r/$(TARGET_SUBDIR)/newlib/Makefile ] ; then \
223 if [ -f $$r/$(TARGET_SUBDIR)/winsup/Makefile ] ; then \
224 echo $$r/gcc/xgcc -B$$r/gcc/ -B$$r/$(TARGET_SUBDIR)/newlib/ -L$$r/winsup -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
225 else \
226 echo $$r/gcc/xgcc -B$$r/gcc/ -idirafter $$r/$(TARGET_SUBDIR)/newlib/targ-include -idirafter $$s/newlib/libc/include -nostdinc; \
227 fi; \
228 else \
229 echo $$r/gcc/xgcc -B$$r/gcc/; \
230 fi; \
231 else \
232 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
233 echo $(CXX); \
234 else \
235 t='$(program_transform_name)'; echo c++ | sed -e 's/x/x/' $$t; \
236 fi; \
237 fi`
238
239 AS_FOR_TARGET = ` \
240 if [ -f $$r/gas/as-new ] ; then \
241 echo $$r/gas/as-new ; \
242 else \
243 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
244 echo $(AS); \
245 else \
246 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
247 fi; \
248 fi`
249
250 LD_FOR_TARGET = ` \
251 if [ -f $$r/ld/ld-new ] ; then \
252 echo $$r/ld/ld-new ; \
253 else \
254 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
255 echo $(LD); \
256 else \
257 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
258 fi; \
259 fi`
260
261 DLLTOOL_FOR_TARGET = ` \
262 if [ -f $$r/binutils/dlltool ] ; then \
263 echo $$r/binutils/dlltool ; \
264 else \
265 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
266 echo $(DLLTOOL); \
267 else \
268 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
269 fi; \
270 fi`
271
272 WINDRES_FOR_TARGET = ` \
273 if [ -f $$r/binutils/windres ] ; then \
274 echo $$r/binutils/windres ; \
275 else \
276 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
277 echo $(WINDRES); \
278 else \
279 t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
280 fi; \
281 fi`
282
283 AR_FOR_TARGET = ` \
284 if [ -f $$r/binutils/ar ] ; then \
285 echo $$r/binutils/ar ; \
286 else \
287 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
288 echo $(AR); \
289 else \
290 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
291 fi; \
292 fi`
293
294 RANLIB_FOR_TARGET = ` \
295 if [ -f $$r/binutils/ranlib ] ; then \
296 echo $$r/binutils/ranlib ; \
297 else \
298 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
299 echo $(RANLIB); \
300 else \
301 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
302 fi; \
303 fi`
304
305 NM_FOR_TARGET = ` \
306 if [ -f $$r/binutils/nm-new ] ; then \
307 echo $$r/binutils/nm-new ; \
308 else \
309 if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
310 echo $(NM); \
311 else \
312 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
313 fi; \
314 fi`
315
316 #### host and target specific makefile fragments come in here.
317 ###
318
319 # Flags to pass down to all sub-makes.
320 # Please keep these in alphabetical order.
321 BASE_FLAGS_TO_PASS = \
322 "AR_FLAGS=$(AR_FLAGS)" \
323 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
324 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
325 "BISON=$(BISON)" \
326 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
327 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
328 "CFLAGS=$(CFLAGS)" \
329 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
330 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
331 "CXXFLAGS=$(CXXFLAGS)" \
332 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
333 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
334 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
335 "INSTALL=$(INSTALL)" \
336 "INSTALL_DATA=$(INSTALL_DATA)" \
337 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
338 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
339 "LDFLAGS=$(LDFLAGS)" \
340 "LEX=$(LEX)" \
341 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
342 "LIBCFLAGS=$(LIBCFLAGS)" \
343 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
344 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
345 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
346 "M4=$(M4)" \
347 "MAKE=$(MAKE)" \
348 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
349 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
350 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
351 "SHELL=$(SHELL)" \
352 "EXPECT=$(EXPECT)" \
353 "RUNTEST=$(RUNTEST)" \
354 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
355 "TARGET_SUBDIR=$(TARGET_SUBDIR)" \
356 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
357 "YACC=$(YACC)" \
358 "exec_prefix=$(exec_prefix)" \
359 "prefix=$(prefix)" \
360 "tooldir=$(tooldir)" \
361 "gxx_include_dir=$(gxx_include_dir)" \
362 "gcc_version=$(gcc_version)" \
363 "gcc_version_trigger=$(gcc_version_trigger)" \
364 "target_alias=$(target_alias)" \
365 "libsubdir=$(libsubdir)"
366
367 # Flags to pass down to most sub-makes, in which we're building with
368 # the host environment.
369 # If any variables are added here, they must be added to do-*, below.
370 EXTRA_HOST_FLAGS = \
371 'AR=$(AR)' \
372 'AS=$(AS)' \
373 'CC=$(CC)' \
374 'CXX=$(CXX)' \
375 'DLLTOOL=$(DLLTOOL)' \
376 'LD=$(LD)' \
377 'NM=$(NM)' \
378 'RANLIB=$(RANLIB)' \
379 'WINDRES=$(WINDRES)'
380
381 FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
382
383 # Flags that are concerned with the location of the X11 include files
384 # and library files
385 #
386 # NOTE: until the top-level is getting the values via autoconf, it only
387 # causes problems to have this top-level Makefile overriding the autoconf-set
388 # values in child directories. Only variables that don't conflict with
389 # autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
390 #
391 X11_FLAGS_TO_PASS = \
392 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
393 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
394
395 # Flags to pass down to makes which are built with the target environment.
396 # The double $ decreases the length of the command line; the variables
397 # are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
398 # If any variables are added here, they must be added to do-*, below.
399 EXTRA_TARGET_FLAGS = \
400 'AR=$$(AR_FOR_TARGET)' \
401 'AS=$$(AS_FOR_TARGET)' \
402 'CC=$$(CC_FOR_TARGET)' \
403 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
404 'CXX=$$(CXX_FOR_TARGET)' \
405 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
406 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
407 'LD=$$(LD_FOR_TARGET)' \
408 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
409 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
410 'NM=$$(NM_FOR_TARGET)' \
411 'RANLIB=$$(RANLIB_FOR_TARGET)' \
412 'WINDRES=$$(WINDRES_FOR_TARGET)'
413
414 TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
415
416 # Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
417 # unfortunately needs the native compiler and the target ar and
418 # ranlib.
419 # If any variables are added here, they must be added to do-*, below.
420 # The HOST_* variables are a special case, which are used for the gcc
421 # cross-building scheme.
422 EXTRA_GCC_FLAGS = \
423 'AR=$$(AR_FOR_TARGET)' \
424 'AS=$(AS)' \
425 'CC=$(CC)' \
426 'CXX=$(CXX)' \
427 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
428 'HOST_CC=$(CC_FOR_BUILD)' \
429 'HOST_PREFIX=$(HOST_PREFIX)' \
430 'HOST_PREFIX_1=$(HOST_PREFIX_1)' \
431 'NM=$(NM)' \
432 'RANLIB=$$(RANLIB_FOR_TARGET)' \
433 'WINDRES=$$(WINDRES_FOR_TARGET)' \
434 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
435 "`if test x'$(LANGUAGES)' != x; then echo 'LANGUAGES=$(LANGUAGES)'; else echo 'XFOO=bar'; fi`" \
436 "`if test x'$(STMP_FIXPROTO)' != x; then echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)'; else echo 'XFOO=bar'; fi`" \
437 "`if test x'$(LIMITS_H_TEST)' != x; then echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)'; else echo 'XFOO=bar'; fi`" \
438 "`if test x'$(LIBGCC1_TEST)' != x; then echo 'LIBGCC1_TEST=$(LIBGCC1_TEST)'; else echo 'XFOO=bar'; fi`" \
439 "`if test x'$(LIBGCC2_CFLAGS)' != x; then echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
440 "`if test x'$(LIBGCC2_DEBUG_CFLAGS)' != x; then echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)'; else echo 'XFOO=bar'; fi`" \
441 "`if test x'$(LIBGCC2_INCLUDES)' != x; then echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)'; else echo 'XFOO=bar'; fi`" \
442 "`if test x'$(ENQUIRE)' != x; then echo 'ENQUIRE=$(ENQUIRE)'; else echo 'XFOO=bar'; fi`" \
443 "`if test x'$(BOOT_CFLAGS)' != x; then echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)'; else echo 'XFOO=bar'; fi`"
444
445 GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
446
447 # This is a list of the targets for all of the modules which are compiled
448 # using $(FLAGS_TO_PASS).
449 ALL_MODULES = \
450 all-apache \
451 all-autoconf \
452 all-automake \
453 all-bash \
454 all-bfd \
455 all-binutils \
456 all-bison \
457 all-byacc \
458 all-cvs \
459 all-db \
460 all-dejagnu \
461 all-diff \
462 all-dosutils \
463 all-etc \
464 all-fileutils \
465 all-findutils \
466 all-find \
467 all-flex \
468 all-gas \
469 all-gawk \
470 all-gnuserv \
471 all-gprof \
472 all-grep \
473 all-grez \
474 all-gzip \
475 all-hello \
476 all-indent \
477 all-inet \
478 all-ispell \
479 all-itcl \
480 all-ld \
481 all-libiberty \
482 all-m4 \
483 all-make \
484 all-mmalloc \
485 all-opcodes \
486 all-patch \
487 all-perl \
488 all-prms \
489 all-rcs \
490 all-readline \
491 all-release \
492 all-recode \
493 all-sed \
494 all-send-pr \
495 all-shellutils \
496 all-sim \
497 all-sn \
498 all-tar \
499 all-tcl \
500 all-texinfo \
501 all-textutils \
502 all-tgas \
503 all-time \
504 all-uudecode \
505 all-wdiff
506
507 # This is a list of the check targets for all of the modules which are
508 # compiled using $(FLAGS_TO_PASS).
509 #
510 # The list is in two parts. The first lists those tools which
511 # are tested as part of the host's native tool-chain, and not
512 # tested in a cross configuration.
513 NATIVE_CHECK_MODULES = \
514 check-bison \
515 check-byacc \
516 check-flex
517
518 CROSS_CHECK_MODULES = \
519 check-apache \
520 check-autoconf \
521 check-automake \
522 check-bash \
523 check-bfd \
524 check-binutils \
525 check-cvs \
526 check-db \
527 check-dejagnu \
528 check-diff \
529 check-etc \
530 check-fileutils \
531 check-findutils \
532 check-find \
533 check-gas \
534 check-gawk \
535 check-gnuserv \
536 check-gprof \
537 check-grep \
538 check-gzip \
539 check-hello \
540 check-indent \
541 check-inet \
542 check-ispell \
543 check-itcl \
544 check-ld \
545 check-libiberty \
546 check-m4 \
547 check-make \
548 check-mmcheckoc \
549 check-opcodes \
550 check-patch \
551 check-perl \
552 check-prms \
553 check-rcs \
554 check-readline \
555 check-recode \
556 check-sed \
557 check-send-pr \
558 check-shellutils \
559 check-sn \
560 check-sim \
561 check-tar \
562 check-tcl \
563 check-texinfo \
564 check-textutils \
565 check-tgas \
566 check-time \
567 check-uudecode \
568 check-wdiff
569
570 CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
571
572 # This is a list of the install targets for all of the modules which are
573 # compiled using $(FLAGS_TO_PASS).
574 # We put install-opcodes before install-binutils because the installed
575 # binutils might be on PATH, and they might need the shared opcodes
576 # library.
577 INSTALL_MODULES = \
578 install-apache \
579 install-autoconf \
580 install-automake \
581 install-bash \
582 install-bfd \
583 install-opcodes \
584 install-binutils \
585 install-bison \
586 install-byacc \
587 install-cvs \
588 install-db \
589 install-dejagnu \
590 install-diff \
591 install-dosutils \
592 install-etc \
593 install-fileutils \
594 install-findutils \
595 install-find \
596 install-flex \
597 install-gas \
598 install-gawk \
599 install-gnuserv \
600 install-gprof \
601 install-grep \
602 install-grez \
603 install-gzip \
604 install-hello \
605 install-indent \
606 install-inet \
607 install-ispell \
608 install-itcl \
609 install-ld \
610 install-libiberty \
611 install-m4 \
612 install-make \
613 install-mmalloc \
614 install-patch \
615 install-perl \
616 install-prms \
617 install-rcs \
618 install-readline \
619 install-recode \
620 install-sed \
621 install-send-pr \
622 install-shellutils \
623 install-sim \
624 install-sn \
625 install-tar \
626 install-tcl \
627 install-textutils \
628 install-tgas \
629 install-time \
630 install-uudecode \
631 install-wdiff
632
633 # This is a list of the targets for all of the modules which are compiled
634 # using $(X11_FLAGS_TO_PASS).
635 ALL_X11_MODULES = \
636 all-emacs \
637 all-emacs19 \
638 all-gdb \
639 all-expect \
640 all-gash \
641 all-guile \
642 all-tclX \
643 all-tk \
644 all-tix
645
646 # This is a list of the check targets for all of the modules which are
647 # compiled using $(X11_FLAGS_TO_PASS).
648 CHECK_X11_MODULES = \
649 check-emacs \
650 check-gdb \
651 check-guile \
652 check-expect \
653 check-gash \
654 check-tclX \
655 check-tk \
656 check-tix
657
658 # This is a list of the install targets for all the modules which are
659 # compiled using $(X11_FLAGS_TO_PASS).
660 INSTALL_X11_MODULES = \
661 install-emacs \
662 install-emacs19 \
663 install-gdb \
664 install-guile \
665 install-expect \
666 install-gash \
667 install-tclX \
668 install-tk \
669 install-tix
670
671 # This is a list of the targets for all of the modules which are compiled
672 # using $(TARGET_FLAGS_TO_PASS).
673 ALL_TARGET_MODULES = \
674 all-target-libio \
675 all-target-libstdc++ \
676 all-target-librx \
677 all-target-libg++ \
678 all-target-newlib \
679 all-target-libf2c \
680 all-target-libchill \
681 all-target-winsup \
682 all-target-libgloss \
683 all-target-libiberty \
684 all-target-gperf \
685 all-target-examples
686
687 # This is a list of the configure targets for all of the modules which
688 # are compiled using the target tools.
689 CONFIGURE_TARGET_MODULES = \
690 configure-target-libio \
691 configure-target-libstdc++ \
692 configure-target-librx \
693 configure-target-libg++ \
694 configure-target-newlib \
695 configure-target-libf2c \
696 configure-target-libchill \
697 configure-target-winsup \
698 configure-target-libgloss \
699 configure-target-libiberty \
700 configure-target-gperf \
701 configure-target-examples
702
703 # This is a list of the check targets for all of the modules which are
704 # compiled using $(TARGET_FLAGS_TO_PASS).
705 CHECK_TARGET_MODULES = \
706 check-target-libio \
707 check-target-libstdc++ \
708 check-target-libg++ \
709 check-target-newlib \
710 check-target-libf2c \
711 check-target-libchill \
712 check-target-winsup \
713 check-target-libiberty \
714 check-target-gperf
715
716 # This is a list of the install targets for all of the modules which are
717 # compiled using $(TARGET_FLAGS_TO_PASS).
718 INSTALL_TARGET_MODULES = \
719 install-target-libio \
720 install-target-libstdc++ \
721 install-target-libg++ \
722 install-target-newlib \
723 install-target-libf2c \
724 install-target-libchill \
725 install-target-winsup \
726 install-target-libgloss \
727 install-target-libiberty \
728 install-target-gperf
729
730 # This is a list of the targets for which we can do a clean-{target}.
731 CLEAN_MODULES = \
732 clean-apache \
733 clean-autoconf \
734 clean-automake \
735 clean-bash \
736 clean-bfd \
737 clean-binutils \
738 clean-bison \
739 clean-byacc \
740 clean-cvs \
741 clean-db \
742 clean-dejagnu \
743 clean-diff \
744 clean-dosutils \
745 clean-etc \
746 clean-fileutils \
747 clean-findutils \
748 clean-find \
749 clean-flex \
750 clean-gas \
751 clean-gawk \
752 clean-gnuserv \
753 clean-gprof \
754 clean-grep \
755 clean-grez \
756 clean-gzip \
757 clean-hello \
758 clean-indent \
759 clean-inet \
760 clean-ispell \
761 clean-itcl \
762 clean-ld \
763 clean-libiberty \
764 clean-m4 \
765 clean-make \
766 clean-mmalloc \
767 clean-opcodes \
768 clean-patch \
769 clean-perl \
770 clean-prms \
771 clean-rcs \
772 clean-readline \
773 clean-release \
774 clean-recode \
775 clean-sed \
776 clean-send-pr \
777 clean-shellutils \
778 clean-sim \
779 clean-sn \
780 clean-tar \
781 clean-tcl \
782 clean-texinfo \
783 clean-textutils \
784 clean-tgas \
785 clean-time \
786 clean-uudecode \
787 clean-wdiff
788
789 # All of the target modules that can be cleaned
790 CLEAN_TARGET_MODULES = \
791 clean-target-libio \
792 clean-target-libstdc++ \
793 clean-target-librx \
794 clean-target-libg++ \
795 clean-target-newlib \
796 clean-target-libf2c \
797 clean-target-libchill \
798 clean-target-winsup \
799 clean-target-libgloss \
800 clean-target-libiberty \
801 clean-target-gperf \
802 clean-target-examples
803
804 # All of the x11 modules that can be cleaned
805 CLEAN_X11_MODULES = \
806 clean-emacs \
807 clean-emacs19 \
808 clean-gdb \
809 clean-expect \
810 clean-gash \
811 clean-guile \
812 clean-tclX \
813 clean-tk \
814 clean-tix
815
816 # The first rule in the file had better be this one. Don't put any above it.
817 all: all.normal
818 .PHONY: all
819
820 # The target built for a native build.
821 .PHONY: all.normal
822 all.normal: \
823 $(ALL_MODULES) \
824 $(ALL_X11_MODULES) \
825 $(ALL_TARGET_MODULES) \
826 all-gcc
827
828 # Do a target for all the subdirectories. A ``make do-X'' will do a
829 # ``make X'' in all subdirectories (because, in general, there is a
830 # dependency (below) of X upon do-X, a ``make X'' will also do this,
831 # but it may do additional work as well).
832 # This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
833 # because it is so large that it can easily overflow the command line
834 # length limit on some systems.
835 DO_X = \
836 do-clean \
837 do-distclean \
838 do-dvi \
839 do-info \
840 do-install-info \
841 do-installcheck \
842 do-mostlyclean \
843 do-maintainer-clean \
844 do-TAGS
845 .PHONY: $(DO_X)
846 $(DO_X):
847 @target=`echo $@ | sed -e 's/^do-//'`; \
848 r=`pwd`; export r; \
849 s=`cd $(srcdir); pwd`; export s; \
850 $(SET_LIB_PATH) \
851 for i in $(SUBDIRS) -dummy-; do \
852 if [ -f ./$$i/Makefile ]; then \
853 case $$i in \
854 gcc) \
855 for flag in $(EXTRA_GCC_FLAGS); do \
856 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
857 done; \
858 ;; \
859 *) \
860 for flag in $(EXTRA_HOST_FLAGS); do \
861 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
862 done; \
863 ;; \
864 esac ; \
865 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
866 if (cd ./$$i; \
867 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
868 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
869 "RANLIB=$${RANLIB}" \
870 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
871 $${target}); \
872 then true; else exit 1; fi; \
873 else true; fi; \
874 done
875 @target=`echo $@ | sed -e 's/^do-//'`; \
876 r=`pwd`; export r; \
877 s=`cd $(srcdir); pwd`; export s; \
878 $(SET_LIB_PATH) \
879 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
880 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
881 for flag in $(EXTRA_TARGET_FLAGS); do \
882 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'|"`; \
883 done; \
884 export AR AS CC CXX LD NM RANLIB DLLTOOL WINDRES; \
885 if (cd $(TARGET_SUBDIR)/$$i; \
886 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
887 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
888 "RANLIB=$${RANLIB}" \
889 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
890 $${target}); \
891 then true; else exit 1; fi; \
892 else true; fi; \
893 done
894
895 # Here are the targets which correspond to the do-X targets.
896
897 .PHONY: info installcheck dvi install-info
898 .PHONY: clean distclean mostlyclean maintainer-clean realclean
899 .PHONY: local-clean local-distclean local-maintainer-clean
900 info: do-info
901 installcheck: do-installcheck
902 dvi: do-dvi
903
904 # Make sure makeinfo is built before we do a `make info'.
905 do-info: all-texinfo
906
907 install-info: do-install-info dir.info
908 s=`cd $(srcdir); pwd`; export s; \
909 if [ -f dir.info ] ; then \
910 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
911 else true ; fi
912
913 local-clean:
914 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
915
916 local-distclean:
917 -rm -f Makefile config.status config.cache mh-frag mt-frag
918 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
919 rm -rf $(TARGET_SUBDIR); \
920 else true; fi
921
922 local-maintainer-clean:
923 @echo "This command is intended for maintainers to use;"
924 @echo "it deletes files that may require special tools to rebuild."
925
926 clean: do-clean local-clean
927 mostlyclean: do-mostlyclean local-clean
928 distclean: do-distclean local-clean local-distclean
929 maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
930 maintainer-clean: local-distclean
931 realclean: maintainer-clean
932
933 # This rule is used to clean specific modules.
934 .PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
935 $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
936 @dir=`echo $@ | sed -e 's/clean-//'`; \
937 if [ -f ./$${dir}/Makefile ] ; then \
938 r=`pwd`; export r; \
939 s=`cd $(srcdir); pwd`; export s; \
940 $(SET_LIB_PATH) \
941 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
942 else \
943 true; \
944 fi
945
946 .PHONY: $(CLEAN_TARGET_MODULES)
947 $(CLEAN_TARGET_MODULES):
948 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
949 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
950 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
951 r=`pwd`; export r; \
952 s=`cd $(srcdir); pwd`; export s; \
953 $(SET_LIB_PATH) \
954 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
955 else \
956 true; \
957 fi
958
959 clean-target: $(CLEAN_TARGET_MODULES)
960
961 # Check target.
962
963 .PHONY: check
964 check: $(CHECK_MODULES) \
965 $(CHECK_TARGET_MODULES) \
966 $(CHECK_X11_MODULES) \
967 check-gcc
968
969 # Automated reporting of test results.
970
971 warning.log: build.log
972 $(srcdir)/contrib/warn_summary build.log > $@
973
974 mail-report.log:
975 if test x'$(BOOT_CFLAGS)' != x''; then \
976 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
977 fi; \
978 $(srcdir)/contrib/test_summary -t >$@
979 chmod +x $@
980 echo If you really want to send e-mail, run ./$@ now
981
982 mail-report-with-warnings.log: warning.log
983 if test x'$(BOOT_CFLAGS)' != x''; then \
984 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
985 fi; \
986 $(srcdir)/contrib/test_summary -t -i warning.log >$@
987 chmod +x $@
988 echo If you really want to send e-mail, run ./$@ now
989
990 # Installation targets.
991
992 .PHONY: install install-cross uninstall source-vault binary-vault vault-install
993 install: $(INSTALL_TARGET)
994 install-cross: $(INSTALL_TARGET_CROSS)
995
996 uninstall:
997 @echo "the uninstall target is not supported in this tree"
998
999 source-vault:
1000 $(MAKE) -f ./release/Build-A-Release \
1001 host=$(host_alias) source-vault
1002
1003 binary-vault:
1004 $(MAKE) -f ./release/Build-A-Release \
1005 host=$(host_alias) target=$(target_alias)
1006
1007 vault-install:
1008 @if [ -f ./release/vault-install ] ; then \
1009 ./release/vault-install $(host_alias) $(target_alias) ; \
1010 else \
1011 true ; \
1012 fi
1013
1014 .PHONY: install.all
1015 install.all: install-no-fixedincludes
1016 @if [ -f ./gcc/Makefile ] ; then \
1017 r=`pwd` ; export r ; \
1018 $(SET_LIB_PATH) \
1019 (cd ./gcc; \
1020 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
1021 else \
1022 true ; \
1023 fi
1024
1025 # inet-install is used because the I*Net wants DejaGNU installed but
1026 # not built. Similarly, gzip is built but not installed.
1027 inet-install:
1028 $(MAKE) INSTALL_MODULES="`echo $(INSTALL_MODULES) | sed -e 's/install-dejagnu//' -e 's/install-gzip//'`" install
1029
1030 # install-no-fixedincludes is used because Cygnus can not distribute
1031 # the fixed header files.
1032 .PHONY: install-no-fixedincludes
1033 install-no-fixedincludes: \
1034 installdirs \
1035 $(INSTALL_MODULES) \
1036 $(INSTALL_TARGET_MODULES) \
1037 $(INSTALL_X11_MODULES) \
1038 gcc-no-fixedincludes
1039
1040 # Install the gcc headers files, but not the fixed include files,
1041 # which Cygnus is not allowed to distribute. This rule is very
1042 # dependent on the workings of the gcc Makefile.in.
1043 .PHONY: gcc-no-fixedincludes
1044 gcc-no-fixedincludes:
1045 @if [ -f ./gcc/Makefile ]; then \
1046 rm -rf gcc/tmp-include; \
1047 mv gcc/include gcc/tmp-include 2>/dev/null; \
1048 mkdir gcc/include; \
1049 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
1050 touch gcc/stmp-fixinc gcc/include/fixed; \
1051 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
1052 r=`pwd`; export r; \
1053 s=`cd $(srcdir); pwd` ; export s; \
1054 $(SET_LIB_PATH) \
1055 (cd ./gcc; \
1056 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1057 rm -rf gcc/include; \
1058 mv gcc/tmp-include gcc/include 2>/dev/null; \
1059 else true; fi
1060
1061 # This rule is used to build the modules which use FLAGS_TO_PASS. To
1062 # build a target all-X means to cd to X and make all.
1063 #
1064 # all-gui, and all-libproc are handled specially because
1065 # they are still experimental, and if they fail to build, that
1066 # shouldn't stop "make all".
1067 .PHONY: $(ALL_MODULES) all-gui all-libproc
1068 $(ALL_MODULES) all-gui all-libproc:
1069 @dir=`echo $@ | sed -e 's/all-//'`; \
1070 if [ -f ./$${dir}/Makefile ] ; then \
1071 r=`pwd`; export r; \
1072 s=`cd $(srcdir); pwd`; export s; \
1073 $(SET_LIB_PATH) \
1074 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1075 else \
1076 true; \
1077 fi
1078
1079 # These rules are used to check the modules which use FLAGS_TO_PASS.
1080 # To build a target check-X means to cd to X and make check. Some
1081 # modules are only tested in a native toolchain.
1082
1083 .PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
1084 $(NATIVE_CHECK_MODULES):
1085 @if [ "$(host_canonical)" = "$(target_canonical)" ] ; then \
1086 dir=`echo $@ | sed -e 's/check-//'`; \
1087 if [ -f ./$${dir}/Makefile ] ; then \
1088 r=`pwd`; export r; \
1089 s=`cd $(srcdir); pwd`; export s; \
1090 $(SET_LIB_PATH) \
1091 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1092 else \
1093 true; \
1094 fi; \
1095 fi
1096
1097 $(CROSS_CHECK_MODULES):
1098 @dir=`echo $@ | sed -e 's/check-//'`; \
1099 if [ -f ./$${dir}/Makefile ] ; then \
1100 r=`pwd`; export r; \
1101 s=`cd $(srcdir); pwd`; export s; \
1102 $(SET_LIB_PATH) \
1103 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1104 else \
1105 true; \
1106 fi
1107
1108 # This rule is used to install the modules which use FLAGS_TO_PASS.
1109 # To build a target install-X means to cd to X and make install.
1110 .PHONY: $(INSTALL_MODULES)
1111 $(INSTALL_MODULES): installdirs
1112 @dir=`echo $@ | sed -e 's/install-//'`; \
1113 if [ -f ./$${dir}/Makefile ] ; then \
1114 r=`pwd`; export r; \
1115 s=`cd $(srcdir); pwd`; export s; \
1116 $(SET_LIB_PATH) \
1117 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1118 else \
1119 true; \
1120 fi
1121
1122 # This rule is used to configure the modules which are built with the
1123 # target tools.
1124 .PHONY: $(CONFIGURE_TARGET_MODULES)
1125 $(CONFIGURE_TARGET_MODULES):
1126 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1127 if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
1128 r=`pwd`; export r; \
1129 $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
1130 if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
1131 if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
1132 if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
1133 rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1134 else \
1135 echo "Multilibs changed for $${dir}, reconfiguring"; \
1136 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
1137 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1138 fi; \
1139 else \
1140 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1141 fi; \
1142 fi; \
1143 fi; exit 0 # break command into two pieces
1144 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1145 if [ ! -d $(TARGET_SUBDIR) ]; then \
1146 true; \
1147 elif [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1148 true; \
1149 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1150 if [ -d $(srcdir)/$${dir} ]; then \
1151 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
1152 r=`pwd`; export r; \
1153 s=`cd $(srcdir); pwd`; export s; \
1154 $(SET_LIB_PATH) \
1155 AR="$(AR_FOR_TARGET)"; export AR; \
1156 AS="$(AS_FOR_TARGET)"; export AS; \
1157 CC="$(CC_FOR_TARGET)"; export CC; \
1158 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1159 CXX="$(CXX_FOR_TARGET)"; export CXX; \
1160 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
1161 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1162 LD="$(LD_FOR_TARGET)"; export LD; \
1163 LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
1164 NM="$(NM_FOR_TARGET)"; export NM; \
1165 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1166 WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
1167 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
1168 cd $(TARGET_SUBDIR)/$${dir}; \
1169 case $(srcdir) in \
1170 /*) \
1171 topdir=$(srcdir) ;; \
1172 *) \
1173 case "$(TARGET_SUBDIR)" in \
1174 .) topdir="../$(srcdir)" ;; \
1175 *) topdir="../../$(srcdir)" ;; \
1176 esac ;; \
1177 esac; \
1178 if [ "$(srcdir)" = "." ] ; then \
1179 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1180 if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1181 if [ -f Makefile ]; then \
1182 if $(MAKE) distclean; then \
1183 true; \
1184 else \
1185 exit 1; \
1186 fi; \
1187 else \
1188 true; \
1189 fi; \
1190 else \
1191 exit 1; \
1192 fi; \
1193 else \
1194 true; \
1195 fi; \
1196 srcdiroption="--srcdir=."; \
1197 libsrcdir="."; \
1198 else \
1199 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1200 libsrcdir="$$s/$${dir}"; \
1201 fi; \
1202 if [ -f $${libsrcdir}/configure ] ; then \
1203 rm -f no-such-file; \
1204 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
1205 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1206 --with-target-subdir="$(TARGET_SUBDIR)"; \
1207 else \
1208 rm -f no-such-file; \
1209 CONFIG_SITE=no-such-file $(SHELL) $$s/configure \
1210 $(CONFIG_ARGUMENTS) $${srcdiroption} \
1211 --with-target-subdir="$(TARGET_SUBDIR)"; \
1212 fi; \
1213 else \
1214 true; \
1215 fi; \
1216 else \
1217 true; \
1218 fi
1219
1220 # This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1221 # To build a target all-X means to cd to X and make all.
1222 .PHONY: $(ALL_TARGET_MODULES)
1223 $(ALL_TARGET_MODULES):
1224 @dir=`echo $@ | sed -e 's/all-target-//'`; \
1225 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1226 r=`pwd`; export r; \
1227 s=`cd $(srcdir); pwd`; export s; \
1228 $(SET_LIB_PATH) \
1229 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
1230 else \
1231 true; \
1232 fi
1233
1234 # This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1235 # To build a target install-X means to cd to X and make install.
1236 .PHONY: $(CHECK_TARGET_MODULES)
1237 $(CHECK_TARGET_MODULES):
1238 @dir=`echo $@ | sed -e 's/check-target-//'`; \
1239 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1240 r=`pwd`; export r; \
1241 s=`cd $(srcdir); pwd`; export s; \
1242 $(SET_LIB_PATH) \
1243 (cd $(TARGET_SUBDIR)/$${dir};$(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
1244 else \
1245 true; \
1246 fi
1247
1248 # This rule is used to install the modules which use
1249 # TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1250 # and make install.
1251 .PHONY: $(INSTALL_TARGET_MODULES)
1252 $(INSTALL_TARGET_MODULES): installdirs
1253 @dir=`echo $@ | sed -e 's/install-target-//'`; \
1254 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1255 r=`pwd`; export r; \
1256 s=`cd $(srcdir); pwd`; export s; \
1257 $(SET_LIB_PATH) \
1258 (cd $(TARGET_SUBDIR)/$${dir}; \
1259 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1260 else \
1261 true; \
1262 fi
1263
1264 # This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1265 # To build a target all-X means to cd to X and make all.
1266 .PHONY: $(ALL_X11_MODULES)
1267 $(ALL_X11_MODULES):
1268 @dir=`echo $@ | sed -e 's/all-//'`; \
1269 if [ -f ./$${dir}/Makefile ] ; then \
1270 r=`pwd`; export r; \
1271 s=`cd $(srcdir); pwd`; export s; \
1272 $(SET_LIB_PATH) \
1273 (cd $${dir}; \
1274 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1275 else \
1276 true; \
1277 fi
1278
1279 # This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1280 # To build a target check-X means to cd to X and make all.
1281 .PHONY: $(CHECK_X11_MODULES)
1282 $(CHECK_X11_MODULES):
1283 @dir=`echo $@ | sed -e 's/check-//'`; \
1284 if [ -f ./$${dir}/Makefile ] ; then \
1285 r=`pwd`; export r; \
1286 s=`cd $(srcdir); pwd`; export s; \
1287 $(SET_LIB_PATH) \
1288 (cd $${dir}; \
1289 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1290 else \
1291 true; \
1292 fi
1293
1294 # This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1295 # To build a target install-X means to cd to X and make install.
1296 .PHONY: $(INSTALL_X11_MODULES)
1297 $(INSTALL_X11_MODULES): installdirs
1298 @dir=`echo $@ | sed -e 's/install-//'`; \
1299 if [ -f ./$${dir}/Makefile ] ; then \
1300 r=`pwd`; export r; \
1301 s=`cd $(srcdir); pwd`; export s; \
1302 $(SET_LIB_PATH) \
1303 (cd $${dir}; \
1304 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1305 else \
1306 true; \
1307 fi
1308
1309 # gcc is the only module which uses GCC_FLAGS_TO_PASS.
1310 .PHONY: all-gcc
1311 all-gcc:
1312 @if [ -f ./gcc/Makefile ] ; then \
1313 r=`pwd`; export r; \
1314 s=`cd $(srcdir); pwd`; export s; \
1315 $(SET_LIB_PATH) \
1316 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1317 else \
1318 true; \
1319 fi
1320
1321 # Building GCC uses some tools for rebuilding "source" files
1322 # like texinfo, bison/byacc, etc. So we must depend on those.
1323 #
1324 # While building GCC, it may be necessary to run various target
1325 # programs like the assembler, linker, etc. So we depend on
1326 # those too.
1327 #
1328 # In theory, on an SMP all those dependencies can be resolved
1329 # in parallel.
1330 #
1331 .PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
1332 bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1333 @r=`pwd`; export r; \
1334 s=`cd $(srcdir); pwd`; export s; \
1335 $(SET_LIB_PATH) \
1336 echo "Bootstrapping the compiler"; \
1337 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $@
1338 @r=`pwd`; export r; \
1339 s=`cd $(srcdir); pwd`; export s; \
1340 case "$@" in \
1341 *bootstrap4-lean ) \
1342 msg="Comparing stage3 and stage4 of the compiler"; \
1343 compare=compare3-lean ;; \
1344 *bootstrap4 ) msg="Comparing stage3 and stage4 of the compiler"; \
1345 compare=compare3 ;; \
1346 *-lean ) msg="Comparing stage2 and stage3 of the compiler"; \
1347 compare=compare-lean ;; \
1348 * ) msg="Comparing stage2 and stage3 of the compiler"; \
1349 compare=compare ;; \
1350 esac; \
1351 $(SET_LIB_PATH) \
1352 echo "$$msg"; \
1353 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
1354 @r=`pwd`; export r; \
1355 s=`cd $(srcdir); pwd` ; export s; \
1356 $(SET_LIB_PATH) \
1357 echo "Building runtime libraries"; \
1358 $(MAKE) $(BASE_FLAGS_TO_PASS) all
1359
1360 .PHONY: cross
1361 cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1362 @r=`pwd`; export r; \
1363 s=`cd $(srcdir); pwd`; export s; \
1364 $(SET_LIB_PATH) \
1365 echo "Building the C and C++ compiler"; \
1366 cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
1367 @r=`pwd`; export r; \
1368 s=`cd $(srcdir); pwd` ; export s; \
1369 $(SET_LIB_PATH) \
1370 echo "Building runtime libraries"; \
1371 $(MAKE) $(BASE_FLAGS_TO_PASS) all LANGUAGES="c c++"
1372
1373 .PHONY: check-gcc
1374 check-gcc:
1375 @if [ -f ./gcc/Makefile ] ; then \
1376 r=`pwd`; export r; \
1377 s=`cd $(srcdir); pwd`; export s; \
1378 $(SET_LIB_PATH) \
1379 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1380 else \
1381 true; \
1382 fi
1383
1384 .PHONY: install-gcc
1385 install-gcc:
1386 @if [ -f ./gcc/Makefile ] ; then \
1387 r=`pwd`; export r; \
1388 s=`cd $(srcdir); pwd`; export s; \
1389 $(SET_LIB_PATH) \
1390 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1391 else \
1392 true; \
1393 fi
1394
1395 .PHONY: install-gcc-cross
1396 install-gcc-cross:
1397 @if [ -f ./gcc/Makefile ] ; then \
1398 r=`pwd`; export r; \
1399 s=`cd $(srcdir); pwd`; export s; \
1400 $(SET_LIB_PATH) \
1401 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
1402 else \
1403 true; \
1404 fi
1405 # EXPERIMENTAL STUFF
1406 # This rule is used to install the modules which use FLAGS_TO_PASS.
1407 # To build a target install-X means to cd to X and make install.
1408 .PHONY: install-dosrel
1409 install-dosrel: installdirs info
1410 @dir=`echo $@ | sed -e 's/install-//'`; \
1411 if [ -f ./$${dir}/Makefile ] ; then \
1412 r=`pwd`; export r; \
1413 s=`cd $(srcdir); pwd`; export s; \
1414 $(SET_LIB_PATH) \
1415 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1416 else \
1417 true; \
1418 fi
1419
1420 install-dosrel-fake:
1421
1422
1423 # This is a list of inter-dependencies among modules.
1424 all-apache:
1425 all-autoconf: all-m4 all-texinfo
1426 all-automake:
1427 all-bash:
1428 all-bfd:
1429 all-binutils: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc
1430 all-bison: all-texinfo
1431 all-byacc:
1432 all-cvs:
1433 all-db:
1434 all-dejagnu: all-tcl all-expect all-tk
1435 all-diff: all-libiberty
1436 all-emacs:
1437 all-emacs19: all-bison all-byacc
1438 all-etc:
1439 configure-target-examples: $(ALL_GCC)
1440 all-target-examples: configure-target-examples
1441 all-expect: all-tcl all-tk
1442 all-fileutils: all-libiberty
1443 all-findutils:
1444 all-find:
1445 all-flex: all-libiberty all-bison all-byacc
1446 all-gas: all-libiberty all-opcodes all-bfd
1447 all-gash: all-tcl
1448 all-gawk:
1449 ALL_GCC = all-gcc
1450 all-gcc: all-bison all-byacc all-binutils all-gas all-ld
1451 GDB_TK = all-tk all-tcl all-itcl all-tix
1452 all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1453 all-gnuserv:
1454 configure-target-gperf: $(ALL_GCC)
1455 all-target-gperf: configure-target-gperf all-target-libiberty all-target-libg++
1456 all-gprof: all-libiberty all-bfd all-opcodes
1457 all-grep: all-libiberty
1458 all-grez: all-libiberty all-bfd all-opcodes
1459 all-gui: all-gdb all-libproc all-target-librx
1460 all-guile:
1461 all-gzip: all-libiberty
1462 all-hello: all-libiberty
1463 all-indent:
1464 all-inet: all-tcl all-send-pr all-perl
1465 all-ispell: all-emacs19
1466 all-itcl: all-tcl all-tk
1467 all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex
1468 configure-target-libg++: $(ALL_GCC) configure-target-librx
1469 all-target-libg++: configure-target-libg++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio all-target-librx all-target-libstdc++
1470 configure-target-libgloss: $(ALL_GCC)
1471 all-target-libgloss: configure-target-libgloss configure-target-newlib
1472 configure-target-libio: $(ALL_GCC)
1473 all-target-libio: configure-target-libio all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1474 check-target-libio: all-target-libstdc++
1475 all-libiberty:
1476 configure-target-librx: $(ALL_GCC) configure-target-newlib
1477 all-target-librx: configure-target-librx
1478 configure-target-libstdc++: $(ALL_GCC)
1479 all-target-libstdc++: configure-target-libstdc++ all-gas all-ld all-gcc all-target-libiberty all-target-newlib all-target-libio
1480 all-target-libf2c: configure-target-libf2c all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1481 all-target-libchill: configure-target-libchill all-gas all-ld all-gcc all-target-libiberty all-target-newlib
1482 all-m4: all-libiberty
1483 all-make: all-libiberty
1484 all-mmalloc:
1485 configure-target-newlib: $(ALL_GCC)
1486 all-target-newlib: configure-target-newlib all-binutils all-gas all-gcc
1487 all-opcodes: all-bfd all-libiberty
1488 all-patch: all-libiberty
1489 all-perl:
1490 all-prms: all-libiberty
1491 all-rcs:
1492 all-readline:
1493 all-recode: all-libiberty
1494 all-sed: all-libiberty
1495 all-send-pr: all-prms
1496 all-shellutils:
1497 all-sim: all-libiberty all-bfd all-opcodes
1498 all-sn: all-tcl all-tk all-itcl all-db all-grep
1499 all-tar: all-libiberty
1500 all-tcl:
1501 all-tclX: all-tcl all-tk
1502 all-tk: all-tcl
1503 all-texinfo: all-libiberty
1504 all-textutils:
1505 all-tgas: all-libiberty all-bfd all-opcodes
1506 all-time:
1507 all-tix: all-tcl all-tk
1508 all-wdiff:
1509 all-target-winsup: all-target-newlib all-target-libiberty all-target-librx all-target-libio configure-target-winsup
1510 configure-target-winsup: configure-target-newlib
1511 all-uudecode: all-libiberty
1512 configure-target-libiberty: $(ALL_GCC)
1513 all-target-libiberty: configure-target-libiberty all-gcc all-ld all-target-newlib
1514 all-target: $(ALL_TARGET_MODULES)
1515 install-target: $(INSTALL_TARGET_MODULES)
1516
1517 ### other supporting targets
1518
1519 MAKEDIRS= \
1520 $(prefix) \
1521 $(exec_prefix)
1522 .PHONY: installdirs
1523 installdirs: mkinstalldirs
1524 $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
1525
1526 dir.info: do-install-info
1527 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1528 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1529 mv -f dir.info.new dir.info ; \
1530 else true ; \
1531 fi
1532
1533 dist:
1534 @echo "Building a full distribution of this tree isn't done"
1535 @echo "via 'make dist'. Check out the etc/ subdirectory"
1536
1537 etags tags: TAGS
1538
1539 # Right now this just builds TAGS in each subdirectory. emacs19 has the
1540 # ability to use several tags files at once, so there is probably no need
1541 # to combine them into one big TAGS file (like CVS 1.3 does). We could
1542 # (if we felt like it) have this Makefile write a piece of elisp which
1543 # the user could load to tell emacs19 where all the TAGS files we just
1544 # built are.
1545 TAGS: do-TAGS
1546
1547 # with the gnu make, this is done automatically.
1548
1549 Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) $(gcc_version_trigger)
1550 $(SHELL) ./config.status
1551
1552 #
1553 # Support for building net releases
1554
1555 # Files in devo used in any net release.
1556 # ChangeLog omitted because it may refer to files which are not in this
1557 # distribution (perhaps it would be better to include it anyway).
1558 DEVO_SUPPORT= README Makefile.in configure configure.in \
1559 config.guess config.sub config move-if-change \
1560 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1561 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
1562 mkinstalldirs ltconfig ltmain.sh missing ylwrap
1563
1564 # Files in devo/etc used in any net release.
1565 # ChangeLog omitted because it may refer to files which are not in this
1566 # distribution (perhaps it would be better to include it anyway).
1567 ETC_SUPPORT= Makefile.in configure configure.in standards.texi \
1568 make-stds.texi standards.info*
1569
1570 # When you use `make setup-dirs' or `make taz' you should always redefine
1571 # this macro.
1572 SUPPORT_FILES = list-of-support-files-for-tool-in-question
1573
1574 .PHONY: taz
1575
1576 taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) \
1577 texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1578 # Take out texinfo from a few places; make simple BISON=bison line.
1579 sed -e '/^all\.normal: /s/\all-texinfo //' \
1580 -e '/^ install-texinfo /d' \
1581 <Makefile.in >tmp
1582 mv -f tmp Makefile.in
1583 #
1584 ./configure sun4
1585 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
1586 || $(MAKE) $(CONFIGURE_TARGET_MODULES) ALL_GCC="" \
1587 CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1588 # Make links, and run "make diststuff" or "make info" when needed.
1589 rm -rf proto-toplev ; mkdir proto-toplev
1590 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1591 for d in $$dirs ; do \
1592 if [ -d $$d ]; then \
1593 if [ ! -f $$d/Makefile ] ; then true ; \
1594 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1595 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1596 elif grep '^info:' $$d/Makefile >/dev/null ; then \
1597 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1598 fi ; \
1599 if [ -d $$d/proto-$$d.dir ]; then \
1600 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1601 else \
1602 ln -s ../$$d proto-toplev/$$d ; \
1603 fi ; \
1604 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1605 done
1606 cd etc ; $(MAKE) info
1607 $(MAKE) distclean
1608 #
1609 mkdir proto-toplev/etc
1610 (cd proto-toplev/etc; \
1611 for i in $(ETC_SUPPORT); do \
1612 ln -s ../../etc/$$i . ; \
1613 done)
1614 #
1615 # Take out texinfo from configurable dirs
1616 rm proto-toplev/configure.in
1617 sed -e '/^host_tools=/s/texinfo //' \
1618 <configure.in >proto-toplev/configure.in
1619 #
1620 mkdir proto-toplev/texinfo
1621 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
1622 ln -s ../../texinfo/gpl.texinfo proto-toplev/texinfo/
1623 ln -s ../../texinfo/lgpl.texinfo proto-toplev/texinfo/
1624 if test -r texinfo/util/tex3patch ; then \
1625 mkdir proto-toplev/texinfo/util && \
1626 ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \
1627 else true; fi
1628 chmod og=u `find . -print`
1629 if grep AM_INIT_AUTOMAKE $(TOOL)/configure.in >/dev/null 2>&1; then \
1630 ver=`sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'`; \
1631 else \
1632 ver=`sed <$(TOOL)/Makefile.in -n 's/^VERSION *= *//p'`; \
1633 fi; \
1634 $(MAKE) -f Makefile.in do-tar-gz TOOL=$(TOOL) VER=$$ver
1635
1636 do-tar-gz:
1637 echo "==> Making $(TOOL)-$(VER).tar.gz"
1638 -rm -f $(TOOL)-$(VER)
1639 ln -s proto-toplev $(TOOL)-$(VER)
1640 tar cfh $(TOOL)-$(VER).tar $(TOOL)-$(VER)
1641 $(GZIPPROG) -v -9 $(TOOL)-$(VER).tar
1642
1643 TEXINFO_SUPPORT= texinfo/texinfo.tex texinfo/gpl.texinfo texinfo/lgpl.texinfo
1644 DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1645
1646 .PHONY: gas.tar.gz
1647 GAS_SUPPORT_DIRS= bfd include libiberty opcodes setup.com makefile.vms
1648 gas.tar.gz: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1649 $(MAKE) -f Makefile.in taz TOOL=gas \
1650 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1651
1652 # The FSF "binutils" release includes gprof and ld.
1653 .PHONY: binutils.tar.gz
1654 BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof setup.com makefile.vms
1655 binutils.tar.gz: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1656 $(MAKE) -f Makefile.in taz TOOL=binutils \
1657 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS) makeall.bat configure.bat"
1658
1659 .PHONY: gas+binutils.tar.gz
1660 GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
1661 gas+binutils.tar.gz: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1662 $(MAKE) -f Makefile.in taz TOOL=gas \
1663 SUPPORT_FILES="$(GASB_SUPPORT_DIRS) makeall.bat configure.bat"
1664
1665 .PHONY: libg++.tar.gz
1666 LIBGXX_SUPPORT_DIRS=include libstdc++ libio librx libiberty
1667 libg++.tar.gz: $(DIST_SUPPORT) libg++
1668 $(MAKE) -f Makefile.in taz TOOL=libg++ \
1669 SUPPORT_FILES="$(LIBGXX_SUPPORT_DIRS)"
1670
1671 GNATS_SUPPORT_DIRS=include libiberty send-pr
1672 gnats.tar.gz: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
1673 $(MAKE) -f Makefile.in taz TOOL=gnats \
1674 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
1675
1676 .PHONY: gdb.tar.gz
1677 GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils
1678 GDBTK_SUPPORT_DIRS= `if [ -d tcl -a -d tk ] ; then echo tcl tk ; fi`
1679 gdb.tar.gz: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
1680 $(MAKE) -f Makefile.in taz TOOL=gdb \
1681 SUPPORT_FILES="$(GDB_SUPPORT_DIRS) $(GDBTK_SUPPORT_DIRS)"
1682
1683 .PHONY: newlib.tar.gz
1684 NEWLIB_SUPPORT_DIRS=libgloss
1685 # taz configures for the sun4 target which won't configure newlib.
1686 # We need newlib configured so that the .info files are made.
1687 # Unfortunately, it is not enough to just configure newlib separately:
1688 # taz will build the .info files but since SUBDIRS won't contain newlib,
1689 # distclean won't be run (leaving Makefile, config.status, and the tmp files
1690 # used in building the .info files, eg: *.def, *.ref).
1691 # The problem isn't solvable however without a lot of extra work because
1692 # target libraries are built in subdir $(target_alias) which gets nuked during
1693 # the make distclean. For now punt on the issue of shipping newlib info files
1694 # with newlib net releases and wait for a day when some native target (sun4?)
1695 # supports newlib (if only minimally).
1696 newlib.tar.gz: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
1697 $(MAKE) -f Makefile.in taz TOOL=newlib \
1698 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
1699 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
1700
1701 .NOEXPORT:
1702 MAKEOVERRIDES=
1703
1704
1705 # end of Makefile.in