Fix minor slip in previous patch.
[deliverable/binutils-gdb.git] / Makefile.tpl
CommitLineData
52d7cdee 1[+ AutoGen5 template -*- Mode: Makefile -*-
405ea7a0
NN
2in
3+]
4
5# Makefile.in is generated from Makefile.tpl by 'autogen Makefile.def'.
6#
7# Makefile for directory with subdirs to build.
8# Copyright (C) 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997, 1998,
91f0e695 9# 1999, 2000, 2001, 2002, 2003 Free Software Foundation
405ea7a0
NN
10#
11# This file is free software; you can redistribute it and/or modify
12# it under the terms of the GNU General Public License as published by
13# the Free Software Foundation; either version 2 of the License, or
14# (at your option) any later version.
15#
16# This program is distributed in the hope that it will be useful,
17# but WITHOUT ANY WARRANTY; without even the implied warranty of
18# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19# GNU General Public License for more details.
20#
21# You should have received a copy of the GNU General Public License
22# along with this program; if not, write to the Free Software
23# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
24#
25
583d52d7
NN
26VPATH=@srcdir@
27links=@configlinks@
28
29build_alias=@build_alias@
30build_cpu=@build_cpu@
31build_vendor=@build_vendor@
32build_os=@build_os@
33build_canonical=@build_cpu@-@build_vendor@-@build_os@
34host_alias=@host_alias@
35host_cpu=@host_cpu@
36host_vendor=@host_vendor@
37host_os=@host_os@
38host_canonical=@host_cpu@-@host_vendor@-@host_os@
39target_alias=@target_alias@
40target_cpu=@target_cpu@
41target_vendor=@target_vendor@
42target_os=@target_os@
43target_canonical=@target_cpu@-@target_vendor@-@target_os@
44
45enable_shared = @enable_shared@
46enable_threads = @enable_threads@
47enable_version_specific_runtime_libs = @enable_version_specific_runtime_libs@
48# The file containing GCC's version number.
49gcc_version_trigger = @gcc_version_trigger@
50gcc_version = @gcc_version@
51
586c0873
NN
52# The gcc driver likes to know the arguments it was configured with.
53TOPLEVEL_CONFIGURE_ARGUMENTS=@TOPLEVEL_CONFIGURE_ARGUMENTS@
54
c66d951e
NN
55srcdir = @srcdir@
56
57prefix = @prefix@
58exec_prefix = @exec_prefix@
59
60bindir = @bindir@
61sbindir = @sbindir@
62libexecdir = @libexecdir@
63datadir = @datadir@
64sysconfdir = @sysconfdir@
65sharedstatedir = @sharedstatedir@
66localstatedir = @localstatedir@
67libdir = @libdir@
68includedir = @includedir@
69oldincludedir = @oldincludedir@
70infodir = @infodir@
71mandir = @mandir@
313b8244
AS
72gxx_include_dir = @gxx_include_dir@
73libstdcxx_incdir = @libstdcxx_incdir@
405ea7a0 74
c66d951e
NN
75tooldir = @tooldir@
76build_tooldir = @build_tooldir@
405ea7a0 77
c66d951e 78program_transform_name = @program_transform_name@
405ea7a0
NN
79
80man1dir = $(mandir)/man1
81man2dir = $(mandir)/man2
82man3dir = $(mandir)/man3
83man4dir = $(mandir)/man4
84man5dir = $(mandir)/man5
85man6dir = $(mandir)/man6
86man7dir = $(mandir)/man7
87man8dir = $(mandir)/man8
88man9dir = $(mandir)/man9
405ea7a0
NN
89# Directory in which the compiler finds executables, libraries, etc.
90libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(gcc_version)
91GDB_NLM_DEPS =
92
c66d951e 93SHELL = @config_shell@
405ea7a0
NN
94
95# pwd command to use. Allow user to override default by setting PWDCMD in
96# the environment to account for automounters. The make variable must not
97# be called PWDCMD, otherwise the value set here is passed to make
98# subprocesses and overrides the setting from the user's environment.
99PWD = $${PWDCMD-pwd}
100
101# INSTALL_PROGRAM_ARGS is changed by configure.in to use -x for a
102# cygwin host.
103INSTALL_PROGRAM_ARGS =
104
105INSTALL = $(SHELL) $$s/install-sh -c
106INSTALL_PROGRAM = $(INSTALL) $(INSTALL_PROGRAM_ARGS)
107INSTALL_SCRIPT = $(INSTALL)
108INSTALL_DATA = $(INSTALL) -m 644
109
852e5f18
NN
110AS = @AS@
111AR = @AR@
405ea7a0 112AR_FLAGS = rc
72e60e02 113RANLIB = @RANLIB@
d03be79e 114CC = @CC@
405ea7a0
NN
115
116# Special variables passed down in EXTRA_GCC_FLAGS. They are defined
117# here so that they can be overridden by Makefile fragments.
3866be5d 118BUILD_CC = $(CC_FOR_BUILD)
852e5f18
NN
119BUILD_PREFIX = @BUILD_PREFIX@
120BUILD_PREFIX_1 = @BUILD_PREFIX_1@
405ea7a0 121
d03be79e
NN
122CFLAGS = @CFLAGS@
123CXXFLAGS = @CXXFLAGS@
405ea7a0
NN
124
125LDFLAGS =
126LIBCFLAGS = $(CFLAGS)
127CFLAGS_FOR_BUILD = $(CFLAGS)
128# During gcc bootstrap, if we use some random cc for stage1 then
129# CFLAGS will be just -g. We want to ensure that TARGET libraries
130# (which we know are built with gcc) are built with optimizations so
131# prepend -O2 when setting CFLAGS_FOR_TARGET.
132CFLAGS_FOR_TARGET = -O2 $(CFLAGS)
133LDFLAGS_FOR_TARGET =
134LIBCFLAGS_FOR_TARGET = $(CFLAGS_FOR_TARGET)
135PICFLAG =
136PICFLAG_FOR_TARGET =
137
d03be79e 138CXX = @CXX@
405ea7a0
NN
139
140# Use -O2 to stress test the compiler.
141LIBCXXFLAGS = $(CXXFLAGS) -fno-implicit-templates
142CXXFLAGS_FOR_TARGET = $(CXXFLAGS)
143LIBCXXFLAGS_FOR_TARGET = $(CXXFLAGS_FOR_TARGET) -fno-implicit-templates
144
852e5f18
NN
145DLLTOOL = @DLLTOOL@
146WINDRES = @WINDRES@
405ea7a0 147
852e5f18 148NM = @NM@
405ea7a0 149
852e5f18 150LD = @LD@
405ea7a0 151
405ea7a0 152# These values are substituted by configure.
c66d951e
NN
153DEFAULT_YACC = @DEFAULT_YACC@
154DEFAULT_LEX = @DEFAULT_LEX@
155DEFAULT_M4 = @DEFAULT_M4@
405ea7a0 156
852e5f18
NN
157BISON=@BISON@
158USUAL_BISON = `if [ -f $$r/bison/bison ] ; then \
405ea7a0
NN
159 echo $$r/bison/bison -L $$s/bison/ ; \
160 else \
161 echo bison ; \
162 fi`
163
852e5f18
NN
164YACC=@YACC@
165USUAL_YACC = `if [ -f $$r/bison/bison ] ; then \
405ea7a0
NN
166 echo $$r/bison/bison -y -L $$s/bison/ ; \
167 elif [ -f $$r/byacc/byacc ] ; then \
168 echo $$r/byacc/byacc ; \
169 else \
170 echo ${DEFAULT_YACC} ; \
171 fi`
172
852e5f18
NN
173LEX=@LEX@
174USUAL_LEX = `if [ -f $$r/flex/flex ] ; \
405ea7a0
NN
175 then echo $$r/flex/flex ; \
176 else echo ${DEFAULT_LEX} ; fi`
177
178M4 = `if [ -f $$r/m4/m4 ] ; \
179 then echo $$r/m4/m4 ; \
180 else echo ${DEFAULT_M4} ; fi`
181
182# For an installed makeinfo, we require it to be from texinfo 4 or
183# higher, else we use the "missing" dummy.
852e5f18
NN
184MAKEINFO=@MAKEINFO@
185USUAL_MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
405ea7a0
NN
186 then echo $$r/texinfo/makeinfo/makeinfo ; \
187 else if (makeinfo --version \
188 | egrep 'texinfo[^0-9]*([1-3][0-9]|[4-9])') >/dev/null 2>&1; \
189 then echo makeinfo; else echo $$s/missing makeinfo; fi; fi`
190
191# This just becomes part of the MAKEINFO definition passed down to
192# sub-makes. It lets flags be given on the command line while still
193# using the makeinfo from the object tree.
194MAKEINFOFLAGS =
195
196EXPECT = `if [ -f $$r/expect/expect ] ; \
197 then echo $$r/expect/expect ; \
198 else echo expect ; fi`
199
200RUNTEST = `if [ -f $$s/dejagnu/runtest ] ; \
201 then echo $$s/dejagnu/runtest ; \
202 else echo runtest ; fi`
203
204
205# compilers to use to create programs which must be run in the build
206# environment.
852e5f18 207CC_FOR_BUILD = @CC_FOR_BUILD@
405ea7a0
NN
208CXX_FOR_BUILD = $(CXX)
209
f03b4789 210SUBDIRS = @configdirs@
405ea7a0
NN
211
212# This is set by the configure script to the list of directories which
213# should be built using the target tools.
58daee98 214TARGET_CONFIGDIRS = @target_configdirs@
405ea7a0
NN
215
216# Target libraries are put under this directory:
217# Changed by configure to $(target_alias) if cross.
58daee98 218TARGET_SUBDIR = @target_subdir@
405ea7a0
NN
219
220BUILD_CONFIGDIRS = libiberty
58daee98 221BUILD_SUBDIR = @build_subdir@
405ea7a0 222
405ea7a0
NN
223# This is set by the configure script to the arguments to use when configuring
224# directories built for the build system.
58daee98 225BUILD_CONFIGARGS = @build_configargs@
405ea7a0 226
15723a45
NN
227# This is set by the configure script to the arguments to use when configuring
228# directories built for the host system.
229HOST_CONFIGARGS = @host_configargs@
230
231# This is set by the configure script to the arguments to use when configuring
232# directories built for the target.
233TARGET_CONFIGARGS = @target_configargs@
234
405ea7a0
NN
235# This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
236# was used.
8607b6c9 237SET_LIB_PATH = @SET_LIB_PATH@
405ea7a0
NN
238
239# This is the name of the environment variable used for the path to
240# the libraries. This may be changed by configure.in.
8607b6c9 241RPATH_ENVVAR = @RPATH_ENVVAR@
405ea7a0
NN
242
243# This is the list of directories that may be needed in RPATH_ENVVAR
244# so that programs built for the host machine work.
245HOST_LIB_PATH = $$r/bfd:$$r/opcodes
246
247# This is the list of directories that may be needed in RPATH_ENVVAR
248# so that prorgams built for the target machine work.
249TARGET_LIB_PATH = $$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs:
250
251# configure.in sets SET_LIB_PATH to this if --enable-shared was used.
252# Some platforms don't like blank entries, so we remove duplicate,
253# leading and trailing colons.
254REALLY_SET_LIB_PATH = \
255 $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH):$(TARGET_LIB_PATH):$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
256
405ea7a0 257# Should be substed by configure.in
58daee98
NN
258FLAGS_FOR_TARGET = @FLAGS_FOR_TARGET@
259CC_FOR_TARGET = @CC_FOR_TARGET@
260CXX_FOR_TARGET = @CXX_FOR_TARGET@
930314a4 261RAW_CXX_FOR_TARGET = @RAW_CXX_FOR_TARGET@
58daee98 262CXX_FOR_TARGET_FOR_RECURSIVE_MAKE = @CXX_FOR_TARGET_FOR_RECURSIVE_MAKE@
930314a4 263RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE = @RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE@
58daee98 264GCJ_FOR_TARGET = @GCJ_FOR_TARGET@
405ea7a0
NN
265
266# If GCC_FOR_TARGET is not overriden on the command line, then this
267# variable is passed down to the gcc Makefile, where it is used to
268# build libgcc2.a. We define it here so that it can itself be
269# overridden on the command line.
852e5f18
NN
270GCC_FOR_TARGET=@GCC_FOR_TARGET@
271USUAL_GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) $$r/gcc/xgcc -B$$r/gcc/ $(FLAGS_FOR_TARGET)
405ea7a0 272
852e5f18
NN
273AS_FOR_TARGET=@AS_FOR_TARGET@
274USUAL_AS_FOR_TARGET = ` \
405ea7a0
NN
275 if [ -f $$r/gas/as-new ] ; then \
276 echo $$r/gas/as-new ; \
277 elif [ -f $$r/gcc/xgcc ]; then \
278 $(CC_FOR_TARGET) -print-prog-name=as ; \
279 else \
280 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
281 echo $(AS); \
282 else \
43be203f 283 echo as | sed '$(program_transform_name)' ; \
405ea7a0
NN
284 fi; \
285 fi`
286
852e5f18
NN
287LD_FOR_TARGET=@LD_FOR_TARGET@
288USUAL_LD_FOR_TARGET = ` \
405ea7a0
NN
289 if [ -f $$r/ld/ld-new ] ; then \
290 echo $$r/ld/ld-new ; \
291 elif [ -f $$r/gcc/xgcc ]; then \
292 $(CC_FOR_TARGET) -print-prog-name=ld ; \
293 else \
294 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
295 echo $(LD); \
296 else \
43be203f 297 echo ld | sed '$(program_transform_name)' ; \
405ea7a0
NN
298 fi; \
299 fi`
300
852e5f18
NN
301DLLTOOL_FOR_TARGET=@DLLTOOL_FOR_TARGET@
302USUAL_DLLTOOL_FOR_TARGET = ` \
405ea7a0
NN
303 if [ -f $$r/binutils/dlltool ] ; then \
304 echo $$r/binutils/dlltool ; \
305 else \
306 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
307 echo $(DLLTOOL); \
308 else \
43be203f 309 echo dlltool | sed '$(program_transform_name)' ; \
405ea7a0
NN
310 fi; \
311 fi`
312
852e5f18
NN
313WINDRES_FOR_TARGET=@WINDRES_FOR_TARGET@
314USUAL_WINDRES_FOR_TARGET = ` \
405ea7a0
NN
315 if [ -f $$r/binutils/windres ] ; then \
316 echo $$r/binutils/windres ; \
317 else \
318 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
319 echo $(WINDRES); \
320 else \
43be203f 321 echo windres | sed '$(program_transform_name)' ; \
405ea7a0
NN
322 fi; \
323 fi`
324
852e5f18
NN
325AR_FOR_TARGET=@AR_FOR_TARGET@
326USUAL_AR_FOR_TARGET = ` \
405ea7a0
NN
327 if [ -f $$r/binutils/ar ] ; then \
328 echo $$r/binutils/ar ; \
329 else \
330 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
331 echo $(AR); \
332 else \
43be203f 333 echo ar | sed '$(program_transform_name)' ; \
405ea7a0
NN
334 fi; \
335 fi`
336
852e5f18
NN
337RANLIB_FOR_TARGET=@RANLIB_FOR_TARGET@
338USUAL_RANLIB_FOR_TARGET = ` \
405ea7a0
NN
339 if [ -f $$r/binutils/ranlib ] ; then \
340 echo $$r/binutils/ranlib ; \
341 else \
342 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
343 if [ x'$(RANLIB)' != x ]; then \
344 echo $(RANLIB); \
345 else \
346 echo ranlib; \
347 fi; \
348 else \
43be203f 349 echo ranlib | sed '$(program_transform_name)' ; \
405ea7a0
NN
350 fi; \
351 fi`
352
852e5f18
NN
353NM_FOR_TARGET=@NM_FOR_TARGET@
354USUAL_NM_FOR_TARGET = ` \
405ea7a0
NN
355 if [ -f $$r/binutils/nm-new ] ; then \
356 echo $$r/binutils/nm-new ; \
357 elif [ -f $$r/gcc/xgcc ]; then \
358 $(CC_FOR_TARGET) -print-prog-name=nm ; \
359 else \
360 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
361 echo $(NM); \
362 else \
43be203f 363 echo nm | sed '$(program_transform_name)' ; \
405ea7a0
NN
364 fi; \
365 fi`
366
367# The first rule in the file had better be this one. Don't put any above it.
368# This lives here to allow makefile fragments to contain dependencies.
369all: all.normal
370.PHONY: all
371
405ea7a0 372#### host and target specific makefile fragments come in here.
a0da8069
NN
373@target_makefile_frag@
374@alphaieee_frag@
375@ospace_frag@
376@host_makefile_frag@
405ea7a0
NN
377###
378
379# Flags to pass down to all sub-makes.
380# Please keep these in alphabetical order.
381BASE_FLAGS_TO_PASS = \
382 "AR_FLAGS=$(AR_FLAGS)" \
383 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
384 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
385 "BISON=$(BISON)" \
386 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
387 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
388 "CFLAGS=$(CFLAGS)" \
389 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
390 "GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
391 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
392 "CXXFLAGS=$(CXXFLAGS)" \
393 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
394 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
497f816e 395 "DESTDIR=$(DESTDIR)" \
405ea7a0
NN
396 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
397 "INSTALL=$(INSTALL)" \
398 "INSTALL_DATA=$(INSTALL_DATA)" \
399 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
400 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
401 "LDFLAGS=$(LDFLAGS)" \
402 "LEX=$(LEX)" \
403 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
404 "LIBCFLAGS=$(LIBCFLAGS)" \
405 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
406 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
407 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
408 "M4=$(M4)" \
409 "MAKE=$(MAKE)" \
410 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
411 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
412 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
413 "RPATH_ENVVAR=$(RPATH_ENVVAR)" \
414 "SHELL=$(SHELL)" \
415 "EXPECT=$(EXPECT)" \
416 "RUNTEST=$(RUNTEST)" \
417 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
418 "TARGET_SUBDIR=$(TARGET_SUBDIR)" \
419 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
420 "YACC=$(YACC)" \
421 "bindir=$(bindir)" \
422 "datadir=$(datadir)" \
423 "exec_prefix=$(exec_prefix)" \
424 "includedir=$(includedir)" \
425 "infodir=$(infodir)" \
426 "libdir=$(libdir)" \
427 "libexecdir=$(libexecdir)" \
428 "lispdir=$(lispdir)" \
429 "libstdcxx_incdir=$(libstdcxx_incdir)" \
430 "libsubdir=$(libsubdir)" \
431 "localstatedir=$(localstatedir)" \
432 "mandir=$(mandir)" \
433 "oldincludedir=$(oldincludedir)" \
434 "prefix=$(prefix)" \
435 "sbindir=$(sbindir)" \
436 "sharedstatedir=$(sharedstatedir)" \
437 "sysconfdir=$(sysconfdir)" \
438 "tooldir=$(tooldir)" \
439 "build_tooldir=$(build_tooldir)" \
440 "gxx_include_dir=$(gxx_include_dir)" \
441 "gcc_version=$(gcc_version)" \
442 "gcc_version_trigger=$(gcc_version_trigger)" \
443 "target_alias=$(target_alias)"
444
445# For any flags above that may contain shell code that varies from one
446# target library to another. When doing recursive invocations of the
447# top-level Makefile, we don't want the outer make to evaluate them,
448# so we pass these variables down unchanged. They must not contain
449# single nor double quotes.
450RECURSE_FLAGS = \
930314a4
NN
451 CXX_FOR_TARGET='$(CXX_FOR_TARGET_FOR_RECURSIVE_MAKE)' \
452 RAW_CXX_FOR_TARGET='$(RAW_CXX_FOR_TARGET_FOR_RECURSIVE_MAKE)' \
405ea7a0
NN
453
454# Flags to pass down to most sub-makes, in which we're building with
455# the host environment.
456# If any variables are added here, they must be added to do-*, below.
457EXTRA_HOST_FLAGS = \
458 'AR=$(AR)' \
459 'AS=$(AS)' \
460 'CC=$(CC)' \
461 'CXX=$(CXX)' \
462 'DLLTOOL=$(DLLTOOL)' \
463 'LD=$(LD)' \
464 'NM=$(NM)' \
465 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
466 'WINDRES=$(WINDRES)'
467
468FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
469
470# Flags that are concerned with the location of the X11 include files
471# and library files
472#
473# NOTE: until the top-level is getting the values via autoconf, it only
474# causes problems to have this top-level Makefile overriding the autoconf-set
475# values in child directories. Only variables that don't conflict with
476# autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
477#
478X11_FLAGS_TO_PASS = \
479 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
480 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
481
482# Flags to pass down to makes which are built with the target environment.
483# The double $ decreases the length of the command line; the variables
484# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
485# If any variables are added here, they must be added to do-*, below.
486EXTRA_TARGET_FLAGS = \
487 'AR=$$(AR_FOR_TARGET)' \
488 'AS=$$(AS_FOR_TARGET)' \
489 'CC=$$(CC_FOR_TARGET)' \
490 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
491 'CXX=$$(CXX_FOR_TARGET)' \
492 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
493 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
494 'LD=$$(LD_FOR_TARGET)' \
495 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
496 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
497 'NM=$$(NM_FOR_TARGET)' \
498 'RANLIB=$$(RANLIB_FOR_TARGET)' \
499 'WINDRES=$$(WINDRES_FOR_TARGET)'
500
501TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
502
503# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
504# unfortunately needs the native compiler and the target ar and
505# ranlib.
506# If any variables are added here, they must be added to do-*, below.
507# The HOST_* variables are a special case, which are used for the gcc
508# cross-building scheme.
509EXTRA_GCC_FLAGS = \
510 'AR=$(AR)' \
511 'AS=$(AS)' \
512 'CC=$(CC)' \
513 'CXX=$(CXX)' \
514 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
3866be5d 515 'BUILD_CC=$(CC_FOR_BUILD)' \
405ea7a0
NN
516 'BUILD_PREFIX=$(BUILD_PREFIX)' \
517 'BUILD_PREFIX_1=$(BUILD_PREFIX_1)' \
518 'NM=$(NM)' \
519 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
520 'WINDRES=$$(WINDRES_FOR_TARGET)' \
521 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
522 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
523 "`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s/.*=$$/XFOO=/`" \
524 "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s/.*=$$/XFOO=/`" \
525 "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s/.*=$$/XFOO=/`" \
526 "`echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
527 "`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
528 "`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s/.*=$$/XFOO=/`" \
529 "`echo 'ENQUIRE=$(ENQUIRE)' | sed -e s/.*=$$/XFOO=/`" \
530 "`echo 'STAGE1_CFLAGS=$(STAGE1_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
531 "`echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)' | sed -e s/.*=$$/XFOO=/`"
532
533GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
534
db1ac78d
NN
535configure-host: @configure_host_modules@
536configure-target: @configure_target_modules@
405ea7a0
NN
537
538# This is a list of the targets for which we can do a clean-{target}.
52d7cdee
NN
539CLEAN_MODULES =[+
540 FOR host_modules +][+
541 IF (not (or (exist? "no_clean") (exist? "with_x"))) +] \
542 clean-[+module+][+
543 ENDIF no_clean +][+
544 ENDFOR host_modules +]
405ea7a0
NN
545
546# All of the target modules that can be cleaned
52d7cdee
NN
547CLEAN_TARGET_MODULES =[+
548 FOR target_modules +][+
549 IF (not (exist? "no_clean")) +] \
550 clean-target-[+module+][+
551 ENDIF no_clean +][+
552 ENDFOR target_modules +]
405ea7a0
NN
553
554# All of the x11 modules that can be cleaned
852e5f18
NN
555CLEAN_X11_MODULES = [+ FOR host_modules +][+ IF with_x +]\
556 clean-[+module+] [+ ENDIF with_x +][+ ENDFOR host_modules +]
405ea7a0
NN
557
558# The target built for a native build.
3866be5d 559# This list only includes modules actually being configured and built.
405ea7a0 560.PHONY: all.normal
3866be5d
NN
561all.normal: @all_build_modules@ \
562 @all_host_modules@ \
563 @all_target_modules@
564
db1ac78d 565all-host: @all_host_modules@
3866be5d 566all-target: @all_target_modules@
405ea7a0
NN
567
568# Do a target for all the subdirectories. A ``make do-X'' will do a
569# ``make X'' in all subdirectories (because, in general, there is a
570# dependency (below) of X upon do-X, a ``make X'' will also do this,
571# but it may do additional work as well).
572# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
573# because it is so large that it can easily overflow the command line
574# length limit on some systems.
e393202e
NN
575[+ FOR recursive_targets +]
576.PHONY: do-[+target+]
577do-[+target+]:
578 @r=`${PWD}`; export r; \
405ea7a0
NN
579 s=`cd $(srcdir); ${PWD}`; export s; \
580 $(SET_LIB_PATH) \
581 for i in $(SUBDIRS) -dummy-; do \
582 if [ -f ./$$i/Makefile ]; then \
583 case $$i in \
584 gcc) \
585 for flag in $(EXTRA_GCC_FLAGS); do \
586 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
587 done; \
588 ;; \
589 *) \
590 for flag in $(EXTRA_HOST_FLAGS); do \
591 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
592 done; \
593 ;; \
594 esac ; \
1086bc09 595 (cd ./$$i && \
405ea7a0
NN
596 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
597 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
598 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
599 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1086bc09
NN
600 [+target+]) \
601 || exit 1; \
405ea7a0
NN
602 else true; fi; \
603 done
e393202e 604 # Break into two pieces
405ea7a0
NN
605 r=`${PWD}`; export r; \
606 s=`cd $(srcdir); ${PWD}`; export s; \
607 $(SET_LIB_PATH) \
608 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
609 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
610 for flag in $(EXTRA_TARGET_FLAGS); do \
611 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
612 done; \
1086bc09 613 (cd $(TARGET_SUBDIR)/$$i && \
405ea7a0
NN
614 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
615 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
616 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
617 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
1086bc09
NN
618 [+target+]) \
619 || exit 1; \
405ea7a0
NN
620 else true; fi; \
621 done
e393202e
NN
622[+ ENDFOR recursive_targets +]
623
405ea7a0
NN
624
625# Here are the targets which correspond to the do-X targets.
626
627.PHONY: info installcheck dvi install-info
628.PHONY: clean distclean mostlyclean maintainer-clean realclean
629.PHONY: local-clean local-distclean local-maintainer-clean
630info: do-info
631installcheck: do-installcheck
632dvi: do-dvi
633
43d92c63
NN
634# Make sure makeinfo is built before we do a `make info', if we're
635# in fact building texinfo.
636do-info: maybe-all-texinfo
405ea7a0
NN
637
638install-info: do-install-info dir.info
639 s=`cd $(srcdir); ${PWD}`; export s; \
640 if [ -f dir.info ] ; then \
497f816e 641 $(INSTALL_DATA) dir.info $(DESTDIR)$(infodir)/dir.info ; \
405ea7a0
NN
642 else true ; fi
643
644local-clean:
645 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
646
647local-distclean:
648 -rm -f Makefile config.status config.cache mh-frag mt-frag
e6bfb94a 649 -rm -f multilib.out multilib.tmp maybedep.tmp serdep.tmp
405ea7a0
NN
650 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
651 rm -rf $(TARGET_SUBDIR); \
652 else true; fi
653 -rm -f texinfo/po/Makefile texinfo/po/Makefile.in texinfo/info/Makefile
654 -rm -f texinfo/doc/Makefile texinfo/po/POTFILES
655 -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null
656 -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null
657 -rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null
658
659local-maintainer-clean:
660 @echo "This command is intended for maintainers to use;"
661 @echo "it deletes files that may require special tools to rebuild."
662
663clean: do-clean local-clean
664mostlyclean: do-mostlyclean local-clean
665distclean: do-distclean local-clean local-distclean
666maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
667maintainer-clean: local-distclean
668realclean: maintainer-clean
669
670# This rule is used to clean specific modules.
671.PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
672$(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
673 @dir=`echo $@ | sed -e 's/clean-//'`; \
674 if [ -f ./$${dir}/Makefile ] ; then \
675 r=`${PWD}`; export r; \
676 s=`cd $(srcdir); ${PWD}`; export s; \
677 $(SET_LIB_PATH) \
1086bc09 678 (cd $${dir} && $(MAKE) $(FLAGS_TO_PASS) clean); \
405ea7a0
NN
679 else \
680 true; \
681 fi
682
683.PHONY: $(CLEAN_TARGET_MODULES)
684$(CLEAN_TARGET_MODULES):
685 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
686 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
687 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
688 r=`${PWD}`; export r; \
689 s=`cd $(srcdir); ${PWD}`; export s; \
690 $(SET_LIB_PATH) \
1086bc09 691 (cd $(TARGET_SUBDIR)/$${dir} && $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
405ea7a0
NN
692 else \
693 true; \
694 fi
695
696clean-target: $(CLEAN_TARGET_MODULES) clean-target-libgcc
697clean-target-libgcc:
698 test ! -d gcc/libgcc || \
699 (cd gcc/libgcc && find . -type d -print) | \
700 while read d; do rm -f gcc/$$d/libgcc.a || : ; done
701 -rm -rf gcc/libgcc
702
703# Check target.
704
705.PHONY: check do-check
706check:
707 $(MAKE) do-check NOTPARALLEL=parallel-ok
708
3866be5d
NN
709# Only include modules actually being configured and built.
710do-check: @check_host_modules@ \
711 @check_target_modules@
405ea7a0
NN
712
713# Automated reporting of test results.
714
715warning.log: build.log
716 $(srcdir)/contrib/warn_summary build.log > $@
717
718mail-report.log:
719 if test x'$(BOOT_CFLAGS)' != x''; then \
720 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
721 fi; \
722 $(srcdir)/contrib/test_summary -t >$@
723 chmod +x $@
724 echo If you really want to send e-mail, run ./$@ now
725
726mail-report-with-warnings.log: warning.log
727 if test x'$(BOOT_CFLAGS)' != x''; then \
728 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
729 fi; \
730 $(srcdir)/contrib/test_summary -t -i warning.log >$@
731 chmod +x $@
732 echo If you really want to send e-mail, run ./$@ now
733
734# Installation targets.
735
ae831be5 736.PHONY: install uninstall
3866be5d
NN
737install: installdirs @install_host_modules@ @install_target_modules@
738
739install-target: @install_target_modules@
405ea7a0
NN
740
741uninstall:
742 @echo "the uninstall target is not supported in this tree"
743
405ea7a0
NN
744.PHONY: install.all
745install.all: install-no-fixedincludes
746 @if [ -f ./gcc/Makefile ] ; then \
747 r=`${PWD}` ; export r ; \
748 $(SET_LIB_PATH) \
1086bc09 749 (cd ./gcc && \
405ea7a0
NN
750 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
751 else \
752 true ; \
753 fi
754
755# install-no-fixedincludes is used because Cygnus can not distribute
756# the fixed header files.
757.PHONY: install-no-fixedincludes
3866be5d
NN
758install-no-fixedincludes: installdirs @install_host_modules_nogcc@ \
759 @install_target_modules@ gcc-no-fixedincludes
405ea7a0 760
15723a45 761### other supporting targets
405ea7a0 762
15723a45
NN
763MAKEDIRS= \
764 $(DESTDIR)$(prefix) \
765 $(DESTDIR)$(exec_prefix)
766.PHONY: installdirs
767installdirs: mkinstalldirs
768 $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
769
770dir.info: do-install-info
771 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
497f816e 772 $(srcdir)/texinfo/gen-info-dir $(DESTDIR)$(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
15723a45
NN
773 mv -f dir.info.new dir.info ; \
774 else true ; \
405ea7a0
NN
775 fi
776
15723a45
NN
777dist:
778 @echo "Building a full distribution of this tree isn't done"
779 @echo "via 'make dist'. Check out the etc/ subdirectory"
780
781etags tags: TAGS
782
783# Right now this just builds TAGS in each subdirectory. emacs19 has the
784# ability to use several tags files at once, so there is probably no need
785# to combine them into one big TAGS file (like CVS 1.3 does). We could
786# (if we felt like it) have this Makefile write a piece of elisp which
787# the user could load to tell emacs19 where all the TAGS files we just
788# built are.
789TAGS: do-TAGS
790
15723a45
NN
791# --------------------------------------
792# Modules which run on the build machine
793# --------------------------------------
794[+ FOR build_modules +]
930314a4
NN
795.PHONY: configure-build-[+module+] maybe-configure-build-[+module+]
796maybe-configure-build-[+module+]:
e6bfb94a
AO
797configure-build-[+module+]:
798 @test ! -f $(BUILD_SUBDIR)/[+module+]/Makefile || exit 0; \
799 [ -d $(BUILD_SUBDIR)/[+module+] ] || \
800 mkdir $(BUILD_SUBDIR)/[+module+];\
405ea7a0
NN
801 r=`${PWD}`; export r; \
802 s=`cd $(srcdir); ${PWD}`; export s; \
803 AR="$(AR_FOR_BUILD)"; export AR; \
804 AS="$(AS_FOR_BUILD)"; export AS; \
805 CC="$(CC_FOR_BUILD)"; export CC; \
806 CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
807 CXX="$(CXX_FOR_BUILD)"; export CXX; \
808 CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
809 GCJ="$(GCJ_FOR_BUILD)"; export GCJ; \
810 DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
811 LD="$(LD_FOR_BUILD)"; export LD; \
812 LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
813 NM="$(NM_FOR_BUILD)"; export NM; \
814 RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
815 WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
e393202e
NN
816 echo Configuring in $(BUILD_SUBDIR)/[+module+]; \
817 cd "$(BUILD_SUBDIR)/[+module+]" || exit 1; \
405ea7a0
NN
818 case $(srcdir) in \
819 /* | [A-Za-z]:[\\/]*) \
820 topdir=$(srcdir) ;; \
821 *) \
822 case "$(BUILD_SUBDIR)" in \
823 .) topdir="../$(srcdir)" ;; \
824 *) topdir="../../$(srcdir)" ;; \
825 esac ;; \
826 esac; \
827 if [ "$(srcdir)" = "." ] ; then \
828 if [ "$(BUILD_SUBDIR)" != "." ] ; then \
e393202e 829 if $(SHELL) $$s/symlink-tree $${topdir}/[+module+] "no-such-file" ; then \
405ea7a0
NN
830 if [ -f Makefile ]; then \
831 if $(MAKE) distclean; then \
832 true; \
833 else \
834 exit 1; \
835 fi; \
836 else \
837 true; \
838 fi; \
839 else \
840 exit 1; \
841 fi; \
842 else \
843 true; \
844 fi; \
845 srcdiroption="--srcdir=."; \
846 libsrcdir="."; \
847 else \
e393202e
NN
848 srcdiroption="--srcdir=$${topdir}/[+module+]"; \
849 libsrcdir="$$s/[+module+]"; \
405ea7a0 850 fi; \
930314a4
NN
851 rm -f no-such-file || : ; \
852 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
853 $(BUILD_CONFIGARGS) $${srcdiroption} \
854 --with-build-subdir="$(BUILD_SUBDIR)" \
15723a45
NN
855 || exit 1
856
857.PHONY: all-build-[+module+] maybe-all-build-[+module+]
858maybe-all-build-[+module+]:
859all-build-[+module+]: configure-build-[+module+]
860 @r=`${PWD}`; export r; \
861 s=`cd $(srcdir); ${PWD}`; export s; \
862 (cd $(BUILD_SUBDIR)/[+module+] && $(MAKE) all)
e393202e 863[+ ENDFOR build_modules +]
405ea7a0 864
15723a45
NN
865# --------------------------------------
866# Modules which run on the host machine
867# --------------------------------------
3866be5d 868[+ FOR host_modules +]
e2b9e2dc
NN
869.PHONY: configure-[+module+] maybe-configure-[+module+]
870maybe-configure-[+module+]:
e6bfb94a
AO
871configure-[+module+]:
872 @test ! -f [+module+]/Makefile || exit 0; \
873 [ -d [+module+] ] || mkdir [+module+]; \
e2b9e2dc
NN
874 r=`${PWD}`; export r; \
875 s=`cd $(srcdir); ${PWD}`; export s; \
876 CC="$(CC)"; export CC; \
877 CFLAGS="$(CFLAGS)"; export CFLAGS; \
878 CXX="$(CXX)"; export CXX; \
879 CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
880 if [ z$(build_canonical) != z$(host_canoncial) ] ; then \
881 AR="$(AR)"; export AR; \
882 AS="$(AS)"; export AS; \
883 CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
884 DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
885 LD="$(LD)"; export LD; \
886 NM="$(NM)"; export NM; \
887 RANLIB="$(RANLIB)"; export RANLIB; \
888 WINDRES="$(WINDRES)"; export WINDRES; \
889 OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
890 OBJDUMP="$(OBJDUMP)"; export OBJDUMP; \
891 fi; \
892 echo Configuring in [+module+]; \
893 cd [+module+] || exit 1; \
894 case $(srcdir) in \
895 \.) \
896 srcdiroption="--srcdir=."; \
897 libsrcdir=".";; \
898 /* | [A-Za-z]:[\\/]*) \
899 srcdiroption="--srcdir=$(srcdir)/[+module+]"; \
900 libsrcdir="$$s/[+module+]";; \
901 *) \
902 srcdiroption="--srcdir=../$(srcdir)/[+module+]"; \
903 libsrcdir="$$s/[+module+]";; \
904 esac; \
905 $(SHELL) $${libsrcdir}/configure \
906 $(HOST_CONFIGARGS) $${srcdiroption} \
907 || exit 1
908
930314a4
NN
909.PHONY: all-[+module+] maybe-all-[+module+]
910maybe-all-[+module+]:
db1ac78d 911all-[+module+]: configure-[+module+]
930314a4 912 @r=`${PWD}`; export r; \
405ea7a0
NN
913 s=`cd $(srcdir); ${PWD}`; export s; \
914 $(SET_LIB_PATH) \
1086bc09 915 (cd [+module+] && $(MAKE) $(FLAGS_TO_PASS)[+
3866be5d
NN
916 IF with_x
917 +] $(X11_FLAGS_TO_PASS)[+
930314a4 918 ENDIF with_x +] all)
405ea7a0 919
3866be5d
NN
920[+ IF no_check +]
921.PHONY: check-[+module+]
922check-[+module+]:
923[+ ELIF no_check_cross +]
924.PHONY: check-[+module+]
925# This module is only tested in a native toolchain.
926check-[+module+]:
405ea7a0 927 @if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
405ea7a0
NN
928 r=`${PWD}`; export r; \
929 s=`cd $(srcdir); ${PWD}`; export s; \
930 $(SET_LIB_PATH) \
1086bc09 931 (cd [+module+] && $(MAKE) $(FLAGS_TO_PASS)[+
3866be5d
NN
932 IF with_x
933 +] $(X11_FLAGS_TO_PASS)[+
934 ENDIF with_x +] check); \
405ea7a0 935 fi
3866be5d
NN
936[+ ELSE check +]
937.PHONY: check-[+module+]
938check-[+module+]:
930314a4 939 @r=`${PWD}`; export r; \
405ea7a0
NN
940 s=`cd $(srcdir); ${PWD}`; export s; \
941 $(SET_LIB_PATH) \
1086bc09 942 (cd [+module+] && $(MAKE) $(FLAGS_TO_PASS)[+
3866be5d
NN
943 IF with_x
944 +] $(X11_FLAGS_TO_PASS)[+
930314a4 945 ENDIF with_x +] check)
3866be5d 946[+ ENDIF no_check +]
405ea7a0 947
3866be5d 948[+ IF no_install +]
930314a4
NN
949.PHONY: install-[+module+] maybe-install-[+module+]
950maybe-install-[+module+]:
3866be5d
NN
951install-[+module+]:
952[+ ELSE install +]
930314a4
NN
953.PHONY: install-[+module+] maybe-install-[+module+]
954maybe-install-[+module+]:
3866be5d 955install-[+module+]: installdirs
930314a4 956 @r=`${PWD}`; export r; \
405ea7a0
NN
957 s=`cd $(srcdir); ${PWD}`; export s; \
958 $(SET_LIB_PATH) \
1086bc09 959 (cd [+module+] && $(MAKE) $(FLAGS_TO_PASS)[+
3866be5d
NN
960 IF with_x
961 +] $(X11_FLAGS_TO_PASS)[+
930314a4 962 ENDIF with_x +] install)
3866be5d
NN
963[+ ENDIF no_install +]
964[+ ENDFOR host_modules +]
405ea7a0 965
15723a45
NN
966# ---------------------------------------
967# Modules which run on the target machine
968# ---------------------------------------
e393202e 969[+ FOR target_modules +]
930314a4
NN
970.PHONY: configure-target-[+module+] maybe-configure-target-[+module+]
971maybe-configure-target-[+module+]:
15723a45 972
1086bc09
NN
973# There's only one multilib.out. Cleverer subdirs shouldn't need it copied.
974$(TARGET_SUBDIR)/[+module+]/multilib.out: multilib.out
e6bfb94a
AO
975 @[ -d $(TARGET_SUBDIR)/[+module+] ] || \
976 mkdir $(TARGET_SUBDIR)/[+module+]; \
977 rm -f $(TARGET_SUBDIR)/[+module+]/Makefile || : ; \
1086bc09 978 cp multilib.out $(TARGET_SUBDIR)/[+module+]/multilib.out
15723a45 979
e6bfb94a
AO
980configure-target-[+module+]: $(TARGET_SUBDIR)/[+module+]/multilib.out
981 @test ! -f $(TARGET_SUBDIR)/[+module+]/Makefile || exit 0; \
982 [ -d $(TARGET_SUBDIR)/[+module+] ] || \
983 mkdir $(TARGET_SUBDIR)/[+module+];\
405ea7a0
NN
984 r=`${PWD}`; export r; \
985 s=`cd $(srcdir); ${PWD}`; export s; \
986 $(SET_LIB_PATH) \
987 AR="$(AR_FOR_TARGET)"; export AR; \
988 AS="$(AS_FOR_TARGET)"; export AS; \
989 CC="$(CC_FOR_TARGET)"; export CC; \
3decd77d
DD
990 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
991 CPPFLAGS="$(CFLAGS_FOR_TARGET)"; export CPPFLAGS; \[+
930314a4
NN
992 IF raw_cxx +]
993 CXX_FOR_TARGET="$(RAW_CXX_FOR_TARGET)"; export CXX_FOR_TARGET; \
994 CXX="$(RAW_CXX_FOR_TARGET)"; export CXX; \[+
995 ELSE normal_cxx +]
996 CXX="$(CXX_FOR_TARGET)"; export CXX; \[+
997 ENDIF raw_cxx +]
405ea7a0
NN
998 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
999 GCJ="$(GCJ_FOR_TARGET)"; export GCJ; \
1000 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1001 LD="$(LD_FOR_TARGET)"; export LD; \
1002 LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
1003 NM="$(NM_FOR_TARGET)"; export NM; \
1004 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1005 WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
e393202e
NN
1006 echo Configuring in $(TARGET_SUBDIR)/[+module+]; \
1007 cd "$(TARGET_SUBDIR)/[+module+]" || exit 1; \
405ea7a0
NN
1008 case $(srcdir) in \
1009 /* | [A-Za-z]:[\\/]*) \
1010 topdir=$(srcdir) ;; \
1011 *) \
1012 case "$(TARGET_SUBDIR)" in \
1013 .) topdir="../$(srcdir)" ;; \
1014 *) topdir="../../$(srcdir)" ;; \
1015 esac ;; \
1016 esac; \
1017 if [ "$(srcdir)" = "." ] ; then \
1018 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
e393202e 1019 if $(SHELL) $$s/symlink-tree $${topdir}/[+module+] "no-such-file" ; then \
405ea7a0
NN
1020 if [ -f Makefile ]; then \
1021 if $(MAKE) distclean; then \
1022 true; \
1023 else \
1024 exit 1; \
1025 fi; \
1026 else \
1027 true; \
1028 fi; \
1029 else \
1030 exit 1; \
1031 fi; \
1032 else \
1033 true; \
1034 fi; \
1035 srcdiroption="--srcdir=."; \
1036 libsrcdir="."; \
1037 else \
e393202e
NN
1038 srcdiroption="--srcdir=$${topdir}/[+module+]"; \
1039 libsrcdir="$$s/[+module+]"; \
405ea7a0 1040 fi; \
930314a4
NN
1041 rm -f no-such-file || : ; \
1042 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
1043 $(TARGET_CONFIGARGS) $${srcdiroption} \
1044 --with-target-subdir="$(TARGET_SUBDIR)" \
15723a45 1045 || exit 1
405ea7a0 1046
930314a4
NN
1047.PHONY: all-target-[+module+] maybe-all-target-[+module+]
1048maybe-all-target-[+module+]:
15723a45 1049all-target-[+module+]: configure-target-[+module+]
930314a4 1050 @r=`${PWD}`; export r; \
405ea7a0
NN
1051 s=`cd $(srcdir); ${PWD}`; export s; \
1052 $(SET_LIB_PATH) \
1086bc09 1053 (cd $(TARGET_SUBDIR)/[+module+] && \
930314a4
NN
1054 $(MAKE) $(TARGET_FLAGS_TO_PASS) [+
1055 IF raw_cxx
1056 +] 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' [+
1057 ENDIF raw_cxx
1058 +] all)
3866be5d
NN
1059[+ IF no_check +]
1060# Dummy target for uncheckable module.
1061.PHONY: check-target-[+module+]
1062check-target-[+module+]:
1063[+ ELSE check +]
e393202e
NN
1064.PHONY: check-target-[+module+]
1065check-target-[+module+]:
930314a4 1066 @r=`${PWD}`; export r; \
405ea7a0
NN
1067 s=`cd $(srcdir); ${PWD}`; export s; \
1068 $(SET_LIB_PATH) \
1086bc09 1069 (cd $(TARGET_SUBDIR)/[+module+] && \
930314a4
NN
1070 $(MAKE) $(TARGET_FLAGS_TO_PASS) [+
1071 IF raw_cxx
1072 +] 'CXX=$$(RAW_CXX_FOR_TARGET)' 'CXX_FOR_TARGET=$$(RAW_CXX_FOR_TARGET)' [+
1073 ENDIF raw_cxx
1074 +] check)
e393202e 1075[+ ENDIF no_check +]
930314a4
NN
1076[+ IF no_install +]
1077.PHONY: install-target-[+module+] maybe-install-target-[+module+]
1078maybe-install-target-[+module+]:
1079# Dummy target for uninstallable.
1080install-target-[+module+]:
1081[+ ELSE install +]
1082.PHONY: install-target-[+module+] maybe-install-target-[+module+]
1083maybe-install-target-[+module+]:
e393202e 1084install-target-[+module+]: installdirs
930314a4 1085 @r=`${PWD}`; export r; \
405ea7a0
NN
1086 s=`cd $(srcdir); ${PWD}`; export s; \
1087 $(SET_LIB_PATH) \
1086bc09 1088 (cd $(TARGET_SUBDIR)/[+module+] && \
930314a4 1089 $(MAKE) $(TARGET_FLAGS_TO_PASS) install)
e393202e
NN
1090[+ ENDIF no_install +]
1091[+ ENDFOR target_modules +]
405ea7a0 1092
15723a45
NN
1093# ----------
1094# GCC module
1095# ----------
1096
1097# Unfortunately, while gcc _should_ be a host module,
1098# libgcc is a target module, and gen* programs are
1099# build modules. So GCC is a sort of hybrid.
1100
405ea7a0 1101# gcc is the only module which uses GCC_FLAGS_TO_PASS.
e2b9e2dc
NN
1102.PHONY: configure-gcc maybe-configure-gcc
1103maybe-configure-gcc:
e6bfb94a
AO
1104configure-gcc:
1105 @test ! -f gcc/Makefile || exit 0; \
1106 [ -d gcc ] || mkdir gcc; \
e2b9e2dc
NN
1107 r=`${PWD}`; export r; \
1108 s=`cd $(srcdir); ${PWD}`; export s; \
1109 CC="$(CC)"; export CC; \
1110 CFLAGS="$(CFLAGS)"; export CFLAGS; \
1111 CXX="$(CXX)"; export CXX; \
1112 CXXFLAGS="$(CXXFLAGS)"; export CXXFLAGS; \
586c0873 1113 TOPLEVEL_CONFIGURE_ARGUMENTS="$(TOPLEVEL_CONFIGURE_ARGUMENTS)"; export TOPLEVEL_CONFIGURE_ARGUMENTS; \
e2b9e2dc
NN
1114 if [ z$(build_canonical) != z$(host_canoncial) ] ; then \
1115 AR="$(AR)"; export AR; \
1116 AS="$(AS)"; export AS; \
1117 CC_FOR_BUILD="$(CC_FOR_BUILD)"; export CC_FOR_BUILD; \
1118 DLLTOOL="$(DLLTOOL)"; export DLLTOOL; \
1119 LD="$(LD)"; export LD; \
1120 NM="$(NM)"; export NM; \
1121 RANLIB="$(RANLIB)"; export RANLIB; \
1122 WINDRES="$(WINDRES)"; export WINDRES; \
1123 OBJCOPY="$(OBJCOPY)"; export OBJCOPY; \
1124 OBJDUMP="$(OBJDUMP)"; export OBJDUMP; \
1125 fi; \
1126 echo Configuring in gcc; \
1127 cd gcc || exit 1; \
1128 case $(srcdir) in \
1129 \.) \
1130 srcdiroption="--srcdir=."; \
1131 libsrcdir=".";; \
1132 /* | [A-Za-z]:[\\/]*) \
1133 srcdiroption="--srcdir=$(srcdir)/gcc"; \
1134 libsrcdir="$$s/gcc";; \
1135 *) \
1136 srcdiroption="--srcdir=../$(srcdir)/gcc"; \
1137 libsrcdir="$$s/gcc";; \
1138 esac; \
1139 $(SHELL) $${libsrcdir}/configure \
1140 $(HOST_CONFIGARGS) $${srcdiroption} \
1141 || exit 1
1142
b72e6a2d
JM
1143# Don't 'make all' in gcc if it's already been made by 'bootstrap'; that
1144# causes trouble. This wart will be fixed eventually by moving
db1ac78d 1145# the bootstrap behavior to this file.
930314a4
NN
1146.PHONY: all-gcc maybe-all-gcc
1147maybe-all-gcc:
db1ac78d 1148all-gcc: configure-gcc
b72e6a2d
JM
1149 @if [ -f gcc/stage_last ] ; then \
1150 r=`${PWD}`; export r; \
1151 s=`cd $(srcdir); ${PWD}`; export s; \
1152 $(SET_LIB_PATH) \
1086bc09 1153 (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) quickstrap); \
db1ac78d 1154 else \
405ea7a0
NN
1155 r=`${PWD}`; export r; \
1156 s=`cd $(srcdir); ${PWD}`; export s; \
1157 $(SET_LIB_PATH) \
1086bc09 1158 (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
405ea7a0
NN
1159 fi
1160
1161# Building GCC uses some tools for rebuilding "source" files
1162# like texinfo, bison/byacc, etc. So we must depend on those.
1163#
1164# While building GCC, it may be necessary to run various target
1165# programs like the assembler, linker, etc. So we depend on
1166# those too.
1167#
1168# In theory, on an SMP all those dependencies can be resolved
1169# in parallel.
1170#
1aa8389d 1171.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap
db1ac78d 1172bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean bubblestrap quickstrap cleanstrap restrap: all-bootstrap configure-gcc
405ea7a0
NN
1173 @r=`${PWD}`; export r; \
1174 s=`cd $(srcdir); ${PWD}`; export s; \
1175 $(SET_LIB_PATH) \
1176 echo "Bootstrapping the compiler"; \
1177 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $@
1178 @r=`${PWD}`; export r; \
1179 s=`cd $(srcdir); ${PWD}`; export s; \
1180 case "$@" in \
1181 *bootstrap4-lean ) \
1182 msg="Comparing stage3 and stage4 of the compiler"; \
1183 compare=compare3-lean ;; \
1184 *bootstrap4 ) msg="Comparing stage3 and stage4 of the compiler"; \
1185 compare=compare3 ;; \
1186 *-lean ) msg="Comparing stage2 and stage3 of the compiler"; \
1187 compare=compare-lean ;; \
1188 * ) msg="Comparing stage2 and stage3 of the compiler"; \
1189 compare=compare ;; \
1190 esac; \
1191 $(SET_LIB_PATH) \
1192 echo "$$msg"; \
1193 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
1194 @r=`${PWD}`; export r; \
1195 s=`cd $(srcdir); ${PWD}` ; export s; \
1196 $(SET_LIB_PATH) \
1197 echo "Building runtime libraries"; \
1198 $(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) all
1199
1200.PHONY: cross
1201cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
1202 @r=`${PWD}`; export r; \
1203 s=`cd $(srcdir); ${PWD}`; export s; \
1204 $(SET_LIB_PATH) \
1205 echo "Building the C and C++ compiler"; \
1206 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
1207 @r=`${PWD}`; export r; \
1208 s=`cd $(srcdir); ${PWD}` ; export s; \
1209 $(SET_LIB_PATH) \
1210 echo "Building runtime libraries"; \
1211 $(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) \
1212 LANGUAGES="c c++" all
1213
1214.PHONY: check-gcc
1215check-gcc:
1216 @if [ -f ./gcc/Makefile ] ; then \
1217 r=`${PWD}`; export r; \
1218 s=`cd $(srcdir); ${PWD}`; export s; \
1219 $(SET_LIB_PATH) \
1086bc09 1220 (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
405ea7a0
NN
1221 else \
1222 true; \
1223 fi
1224
7d695d07
JM
1225.PHONY: check-gcc-c++
1226check-gcc-c++:
405ea7a0
NN
1227 @if [ -f ./gcc/Makefile ] ; then \
1228 r=`${PWD}`; export r; \
1229 s=`cd $(srcdir); ${PWD}`; export s; \
1230 $(SET_LIB_PATH) \
1086bc09 1231 (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \
405ea7a0
NN
1232 else \
1233 true; \
7d695d07
JM
1234 fi
1235
1236.PHONY: check-c++
e9e45685
JM
1237check-c++:
1238 $(MAKE) check-target-libstdc++-v3 check-gcc-c++ NOTPARALLEL=parallel-ok
405ea7a0 1239
930314a4
NN
1240.PHONY: install-gcc maybe-install-gcc
1241maybe-install-gcc:
405ea7a0
NN
1242install-gcc:
1243 @if [ -f ./gcc/Makefile ] ; then \
1244 r=`${PWD}`; export r; \
1245 s=`cd $(srcdir); ${PWD}`; export s; \
1246 $(SET_LIB_PATH) \
1086bc09 1247 (cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
405ea7a0
NN
1248 else \
1249 true; \
1250 fi
1251
15723a45
NN
1252# Install the gcc headers files, but not the fixed include files,
1253# which Cygnus is not allowed to distribute. This rule is very
1254# dependent on the workings of the gcc Makefile.in.
1255.PHONY: gcc-no-fixedincludes
1256gcc-no-fixedincludes:
1257 @if [ -f ./gcc/Makefile ]; then \
1258 rm -rf gcc/tmp-include; \
1259 mv gcc/include gcc/tmp-include 2>/dev/null; \
1260 mkdir gcc/include; \
1261 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
1262 touch gcc/stmp-fixinc gcc/include/fixed; \
1263 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
1264 r=`${PWD}`; export r; \
1265 s=`cd $(srcdir); ${PWD}` ; export s; \
1266 $(SET_LIB_PATH) \
1086bc09 1267 (cd ./gcc && \
15723a45
NN
1268 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1269 rm -rf gcc/include; \
1270 mv gcc/tmp-include gcc/include 2>/dev/null; \
1271 else true; fi
1272
ae831be5
NN
1273# --------------------------------------
1274# Dependencies between different modules
1275# --------------------------------------
405ea7a0 1276
ae831be5
NN
1277# There are two types of dependencies here: 'hard' dependencies, where one
1278# module simply won't build without the other; and 'soft' dependencies, where
1279# if the depended-on module is missing, the depending module will do without
1280# or find a substitute somewhere (perhaps installed). Soft dependencies
1281# are specified by depending on a 'maybe-' target. If you're not sure,
1282# it's safer to use a soft dependency.
1283
1284# Host modules specific to gcc.
e2b9e2dc 1285# GCC needs to identify certain tools.
b4a77b47 1286configure-gcc: maybe-configure-binutils maybe-configure-gas maybe-configure-ld maybe-configure-bison maybe-configure-flex
ae831be5
NN
1287all-gcc: maybe-all-libiberty maybe-all-bison maybe-all-byacc maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib
1288# This is a slightly kludgy method of getting dependencies on
1289# all-build-libiberty correct; it would be better to build it every time.
1290all-gcc: maybe-all-build-libiberty
1291all-bootstrap: maybe-all-libiberty maybe-all-texinfo maybe-all-bison maybe-all-byacc maybe-all-binutils maybe-all-gas maybe-all-ld maybe-all-zlib
1292
1293# Host modules specific to gdb.
e2b9e2dc 1294# GDB needs to know that the simulator is being built.
b4a77b47 1295configure-gdb: maybe-configure-tcl maybe-configure-tk maybe-configure-sim
ae831be5
NN
1296GDB_TK = @GDB_TK@
1297all-gdb: maybe-all-libiberty maybe-all-opcodes maybe-all-bfd maybe-all-mmalloc maybe-all-readline maybe-all-bison maybe-all-byacc maybe-all-sim $(gdbnlmrequirements) $(GDB_TK)
1298install-gdb: maybe-install-tcl maybe-install-tk maybe-install-itcl maybe-install-tix maybe-install-libgui
59da4fe6 1299configure-libgui: maybe-configure-tcl maybe-configure-tk
ae831be5
NN
1300all-libgui: maybe-all-tcl maybe-all-tk maybe-all-itcl
1301
1302# Host modules specific to binutils.
b4a77b47 1303configure-bfd: configure-libiberty
930314a4
NN
1304all-bfd: maybe-all-libiberty maybe-all-intl
1305all-binutils: maybe-all-libiberty maybe-all-opcodes maybe-all-bfd maybe-all-flex maybe-all-bison maybe-all-byacc maybe-all-intl
ae831be5
NN
1306# We put install-opcodes before install-binutils because the installed
1307# binutils might be on PATH, and they might need the shared opcodes
1308# library.
1309install-binutils: maybe-install-opcodes
1310all-gas: maybe-all-libiberty maybe-all-opcodes maybe-all-bfd maybe-all-intl
1311all-gprof: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-intl
1312all-ld: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-bison maybe-all-byacc maybe-all-flex maybe-all-intl
1313all-opcodes: maybe-all-bfd maybe-all-libiberty
1314
1315# Other host modules in the 'src' repository.
930314a4 1316all-dejagnu: maybe-all-tcl maybe-all-expect maybe-all-tk
b4a77b47 1317configure-expect: maybe-configure-tcl maybe-configure-tk
930314a4 1318all-expect: maybe-all-tcl maybe-all-tk
b4a77b47 1319configure-itcl: maybe-configure-tcl maybe-configure-tk
ae831be5
NN
1320all-itcl: maybe-all-tcl maybe-all-tk
1321# We put install-tcl before install-itcl because itcl wants to run a
1322# program on installation which uses the Tcl libraries.
1323install-itcl: maybe-install-tcl
122bfa92 1324all-sid: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-tcl maybe-all-tk
ae831be5 1325install-sid: maybe-install-tcl maybe-install-tk
a36d530e 1326all-sim: maybe-all-libiberty maybe-all-bfd maybe-all-opcodes maybe-all-readline maybe-configure-gdb
b4a77b47 1327configure-tk: maybe-configure-tcl
ae831be5 1328all-tk: maybe-all-tcl
b4a77b47 1329configure-tix: maybe-configure-tcl maybe-configure-tk
ae831be5
NN
1330all-tix: maybe-all-tcl maybe-all-tk
1331all-texinfo: maybe-all-libiberty
1332
1333# Other host modules. Warning, these are not well tested.
1334all-autoconf: maybe-all-m4 maybe-all-texinfo
1335all-automake: maybe-all-m4 maybe-all-texinfo
1336all-bison: maybe-all-texinfo
1337all-diff: maybe-all-libiberty
1338all-fastjar: maybe-all-zlib maybe-all-libiberty
930314a4
NN
1339all-fileutils: maybe-all-libiberty
1340all-flex: maybe-all-libiberty maybe-all-bison maybe-all-byacc
930314a4
NN
1341all-gzip: maybe-all-libiberty
1342all-hello: maybe-all-libiberty
930314a4
NN
1343all-m4: maybe-all-libiberty maybe-all-texinfo
1344all-make: maybe-all-libiberty
930314a4
NN
1345all-patch: maybe-all-libiberty
1346all-prms: maybe-all-libiberty
930314a4
NN
1347all-recode: maybe-all-libiberty
1348all-sed: maybe-all-libiberty
1349all-send-pr: maybe-all-prms
930314a4 1350all-tar: maybe-all-libiberty
930314a4 1351all-uudecode: maybe-all-libiberty
ae831be5
NN
1352
1353ALL_GCC = maybe-all-gcc
1354ALL_GCC_C = $(ALL_GCC) maybe-all-target-newlib maybe-all-target-libgloss
1355ALL_GCC_CXX = $(ALL_GCC_C) maybe-all-target-libstdc++-v3
1356
1357# Target modules specific to gcc.
b4a77b47
DD
1358configure-target-boehm-gc: $(ALL_GCC_C) maybe-configure-target-qthreads
1359configure-target-fastjar: maybe-configure-target-zlib
930314a4 1360all-target-fastjar: maybe-all-target-zlib maybe-all-target-libiberty
b4a77b47 1361configure-target-libf2c: $(ALL_GCC_C)
ae831be5 1362all-target-libf2c: maybe-all-target-libiberty
b4a77b47
DD
1363configure-target-libffi: $(ALL_GCC_C)
1364configure-target-libjava: $(ALL_GCC_C) maybe-configure-target-zlib maybe-configure-target-boehm-gc maybe-configure-target-qthreads maybe-configure-target-libffi
ae831be5 1365all-target-libjava: maybe-all-fastjar maybe-all-target-zlib maybe-all-target-boehm-gc maybe-all-target-qthreads maybe-all-target-libffi
b4a77b47 1366configure-target-libobjc: $(ALL_GCC_C)
ae831be5 1367all-target-libobjc: maybe-all-target-libiberty
b4a77b47 1368configure-target-libstdc++-v3: $(ALL_GCC_C)
ae831be5 1369all-target-libstdc++-v3: maybe-all-target-libiberty
b4a77b47 1370configure-target-zlib: $(ALL_GCC_C)
a9590527 1371
ae831be5 1372# Target modules in the 'src' repository.
b4a77b47
DD
1373configure-target-examples: $(ALL_GCC_C)
1374configure-target-libgloss: $(ALL_GCC)
ae831be5 1375all-target-libgloss: maybe-configure-target-newlib
b4a77b47
DD
1376configure-target-libiberty: $(ALL_GCC_C)
1377configure-target-libtermcap: $(ALL_GCC_C)
1378configure-target-newlib: $(ALL_GCC)
7dda0df6 1379configure-target-rda: $(ALL_GCC_C)
b4a77b47 1380configure-target-winsup: $(ALL_GCC_C)
ae831be5 1381all-target-winsup: maybe-all-target-libiberty maybe-all-target-libtermcap
a9590527 1382
ae831be5 1383# Other target modules. Warning, these are not well tested.
b4a77b47 1384configure-target-gperf: $(ALL_GCC_CXX)
ae831be5 1385all-target-gperf: maybe-all-target-libiberty maybe-all-target-libstdc++-v3
b4a77b47 1386configure-target-qthreads: $(ALL_GCC_C)
907a7241 1387
930314a4
NN
1388# Dependencies of maybe-foo on foo. These are used because, for example,
1389# all-gcc only depends on all-gas if gas is present and being configured.
1390@maybe_dependencies@
1391
a2cc058a
NN
1392# Serialization dependencies. Host configures don't work well in parallel to
1393# each other, due to contention over config.cache. Target configures and
1394# build configures are similar.
1395@serialization_dependencies@
1396
15723a45
NN
1397# --------------------------------
1398# Regenerating top level configury
1399# --------------------------------
405ea7a0 1400
1086bc09
NN
1401# Multilib.out tells target dirs what multilibs they should build.
1402# There is really only one copy. We use the 'timestamp' method to
1403# work around various timestamp bugs on some systems.
1404# We use move-if-change so that it's only considered updated when it
1405# actually changes, because it has to depend on a phony target.
e6bfb94a 1406multilib.out: maybe-all-gcc
1086bc09
NN
1407 @r=`${PWD}`; export r; \
1408 echo "Checking multilib configuration..."; \
1409 $(CC_FOR_TARGET) --print-multi-lib > multilib.tmp 2> /dev/null ; \
1410 $(SHELL) $(srcdir)/move-if-change multilib.tmp multilib.out ; \
1086bc09 1411
405ea7a0 1412# Rebuilding Makefile.in, using autogen.
43be203f 1413AUTOGEN = autogen
6b784d9f 1414$(srcdir)/Makefile.in: @MAINT@ $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
43be203f 1415 cd $(srcdir) && $(AUTOGEN) Makefile.def
405ea7a0 1416
a0da8069 1417# Rebuilding Makefile.
43be203f
AO
1418Makefile: $(srcdir)/Makefile.in config.status
1419 CONFIG_FILES=$@ CONFIG_HEADERS= $(SHELL) ./config.status
1420
1421config.status: configure $(gcc_version_trigger)
a0da8069 1422 $(SHELL) ./config.status --recheck
405ea7a0 1423
a0da8069 1424# Rebuilding configure.
43be203f 1425AUTOCONF = autoconf
6b784d9f 1426$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in $(srcdir)/config/acx.m4
43be203f 1427 cd $(srcdir) && $(AUTOCONF)
405ea7a0 1428#
405ea7a0
NN
1429
1430.NOEXPORT:
1431MAKEOVERRIDES=
1432
43be203f
AO
1433# Tell GNU make 3.79 not to run the top level in parallel. This
1434# prevents contention for $builddir/$target/config.cache, as well
1435# as minimizing scatter in file system caches.
1436NOTPARALLEL = .NOTPARALLEL
1437$(NOTPARALLEL):
1438
405ea7a0 1439# end of Makefile.in
This page took 0.113364 seconds and 4 git commands to generate.