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