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