Zap __FUNCTION__.
[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
c66d951e
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
c66d951e
NN
48tooldir = @tooldir@
49build_tooldir = @build_tooldir@
252b5132 50
c66d951e 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
c66d951e 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
c376f4ed 127BZIPPROG = bzip2
b35ece4e 128MD5PROG = md5sum
252b5132
RH
129
130# These values are substituted by configure.
c66d951e
NN
131DEFAULT_YACC = @DEFAULT_YACC@
132DEFAULT_LEX = @DEFAULT_LEX@
133DEFAULT_M4 = @DEFAULT_M4@
252b5132
RH
134
135BISON = `if [ -f $$r/bison/bison ] ; then \
136 echo $$r/bison/bison -L $$s/bison/ ; \
137 else \
138 echo bison ; \
139 fi`
140
141YACC = `if [ -f $$r/bison/bison ] ; then \
142 echo $$r/bison/bison -y -L $$s/bison/ ; \
143 elif [ -f $$r/byacc/byacc ] ; then \
144 echo $$r/byacc/byacc ; \
145 else \
146 echo ${DEFAULT_YACC} ; \
147 fi`
148
149LEX = `if [ -f $$r/flex/flex ] ; \
150 then echo $$r/flex/flex ; \
151 else echo ${DEFAULT_LEX} ; fi`
152
153M4 = `if [ -f $$r/m4/m4 ] ; \
154 then echo $$r/m4/m4 ; \
155 else echo ${DEFAULT_M4} ; fi`
156
f08fa01d
HPN
157# For an installed makeinfo, we require it to be from texinfo 4 or
158# higher, else we use the "missing" dummy.
081ff160 159MAKEINFO = `if [ -f $$r/texinfo/makeinfo/makeinfo ] ; \
252b5132 160 then echo $$r/texinfo/makeinfo/makeinfo ; \
f08fa01d
HPN
161 else if (makeinfo --version \
162 | egrep 'texinfo[^0-9]*([1-3][0-9]|[4-9])') >/dev/null 2>&1; \
163 then echo makeinfo; else echo $$s/missing makeinfo; fi; fi`
252b5132
RH
164
165# This just becomes part of the MAKEINFO definition passed down to
166# sub-makes. It lets flags be given on the command line while still
167# using the makeinfo from the object tree.
168MAKEINFOFLAGS =
169
170EXPECT = `if [ -f $$r/expect/expect ] ; \
171 then echo $$r/expect/expect ; \
172 else echo expect ; fi`
173
174RUNTEST = `if [ -f $$s/dejagnu/runtest ] ; \
175 then echo $$s/dejagnu/runtest ; \
176 else echo runtest ; fi`
177
178
179# compilers to use to create programs which must be run in the build
180# environment.
181CC_FOR_BUILD = $(CC)
182CXX_FOR_BUILD = $(CXX)
183
184SUBDIRS = "this is set via configure, don't edit this"
185OTHERS =
186
187# This is set by the configure script to the list of directories which
188# should be built using the target tools.
58daee98 189TARGET_CONFIGDIRS = @target_configdirs@
252b5132
RH
190
191# Target libraries are put under this directory:
192# Changed by configure to $(target_alias) if cross.
58daee98 193TARGET_SUBDIR = @target_subdir@
252b5132 194
49b7683b 195BUILD_CONFIGDIRS = libiberty
58daee98 196BUILD_SUBDIR = @build_subdir@
49b7683b
DD
197
198# This is set by the configure script to the arguments to use when configuring
199# directories built for the target.
58daee98 200TARGET_CONFIGARGS = @target_configargs@
49b7683b
DD
201
202# This is set by the configure script to the arguments to use when configuring
203# directories built for the build system.
58daee98 204BUILD_CONFIGARGS = @build_configargs@
252b5132
RH
205
206# This is set by configure to REALLY_SET_LIB_PATH if --enable-shared
207# was used.
208SET_LIB_PATH =
209
210# This is the name of the environment variable used for the path to
211# the libraries. This may be changed by configure.in.
212RPATH_ENVVAR = LD_LIBRARY_PATH
213
0da52010
AO
214# This is the list of directories that may be needed in RPATH_ENVVAR
215# so that programs built for the host machine work.
216HOST_LIB_PATH = $$r/bfd:$$r/opcodes
217
218# This is the list of directories that may be needed in RPATH_ENVVAR
219# so that prorgams built for the target machine work.
75205f78 220TARGET_LIB_PATH = $$r/$(TARGET_SUBDIR)/libstdc++-v3/src/.libs:
0da52010 221
252b5132 222# configure.in sets SET_LIB_PATH to this if --enable-shared was used.
0da52010
AO
223# Some platforms don't like blank entries, so we remove duplicate,
224# leading and trailing colons.
252b5132 225REALLY_SET_LIB_PATH = \
0da52010 226 $(RPATH_ENVVAR)=`echo "$(HOST_LIB_PATH):$(TARGET_LIB_PATH):$$$(RPATH_ENVVAR)" | sed 's,::*,:,g;s,^:*,,;s,:*$$,,'`; export $(RPATH_ENVVAR);
252b5132
RH
227
228ALL = all.normal
229INSTALL_TARGET = installdirs \
230 install-gcc \
231 $(INSTALL_MODULES) \
232 $(INSTALL_TARGET_MODULES) \
233 $(INSTALL_X11_MODULES) \
234 $(INSTALL_DOSREL)
235
236INSTALL_TARGET_CROSS = installdirs \
237 install-gcc-cross \
238 $(INSTALL_MODULES) \
239 $(INSTALL_TARGET_MODULES) \
240 $(INSTALL_X11_MODULES) \
241 $(INSTALL_DOSREL)
242
9e449d3e 243# Should be substed by configure.in
58daee98
NN
244FLAGS_FOR_TARGET = @FLAGS_FOR_TARGET@
245CC_FOR_TARGET = @CC_FOR_TARGET@
246CXX_FOR_TARGET = @CXX_FOR_TARGET@
247CXX_FOR_TARGET_FOR_RECURSIVE_MAKE = @CXX_FOR_TARGET_FOR_RECURSIVE_MAKE@
248GCJ_FOR_TARGET = @GCJ_FOR_TARGET@
252b5132 249
9e449d3e 250# If GCC_FOR_TARGET is not overriden on the command line, then this
252b5132
RH
251# variable is passed down to the gcc Makefile, where it is used to
252# build libgcc2.a. We define it here so that it can itself be
253# overridden on the command line.
a08bafb5 254GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) $$r/gcc/xgcc -B$$r/gcc/ $(FLAGS_FOR_TARGET)
252b5132
RH
255
256AS_FOR_TARGET = ` \
257 if [ -f $$r/gas/as-new ] ; then \
258 echo $$r/gas/as-new ; \
dc70af01
AO
259 elif [ -f $$r/gcc/xgcc ]; then \
260 $(CC_FOR_TARGET) -print-prog-name=as ; \
252b5132 261 else \
3f152009 262 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
263 echo $(AS); \
264 else \
265 t='$(program_transform_name)'; echo as | sed -e 's/x/x/' $$t ; \
266 fi; \
267 fi`
268
269LD_FOR_TARGET = ` \
270 if [ -f $$r/ld/ld-new ] ; then \
271 echo $$r/ld/ld-new ; \
dc70af01
AO
272 elif [ -f $$r/gcc/xgcc ]; then \
273 $(CC_FOR_TARGET) -print-prog-name=ld ; \
252b5132 274 else \
3f152009 275 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
276 echo $(LD); \
277 else \
278 t='$(program_transform_name)'; echo ld | sed -e 's/x/x/' $$t ; \
279 fi; \
280 fi`
281
282DLLTOOL_FOR_TARGET = ` \
283 if [ -f $$r/binutils/dlltool ] ; then \
284 echo $$r/binutils/dlltool ; \
285 else \
3f152009 286 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
287 echo $(DLLTOOL); \
288 else \
289 t='$(program_transform_name)'; echo dlltool | sed -e 's/x/x/' $$t ; \
290 fi; \
291 fi`
292
293WINDRES_FOR_TARGET = ` \
294 if [ -f $$r/binutils/windres ] ; then \
295 echo $$r/binutils/windres ; \
296 else \
3f152009 297 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
298 echo $(WINDRES); \
299 else \
300 t='$(program_transform_name)'; echo windres | sed -e 's/x/x/' $$t ; \
301 fi; \
302 fi`
303
304AR_FOR_TARGET = ` \
305 if [ -f $$r/binutils/ar ] ; then \
306 echo $$r/binutils/ar ; \
307 else \
3f152009 308 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
309 echo $(AR); \
310 else \
311 t='$(program_transform_name)'; echo ar | sed -e 's/x/x/' $$t ; \
312 fi; \
313 fi`
314
315RANLIB_FOR_TARGET = ` \
316 if [ -f $$r/binutils/ranlib ] ; then \
317 echo $$r/binutils/ranlib ; \
318 else \
3f152009
AO
319 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
320 if [ x'$(RANLIB)' != x ]; then \
321 echo $(RANLIB); \
322 else \
323 echo ranlib; \
324 fi; \
252b5132
RH
325 else \
326 t='$(program_transform_name)'; echo ranlib | sed -e 's/x/x/' $$t ; \
327 fi; \
328 fi`
329
330NM_FOR_TARGET = ` \
331 if [ -f $$r/binutils/nm-new ] ; then \
332 echo $$r/binutils/nm-new ; \
dc70af01
AO
333 elif [ -f $$r/gcc/xgcc ]; then \
334 $(CC_FOR_TARGET) -print-prog-name=nm ; \
252b5132 335 else \
3f152009 336 if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
337 echo $(NM); \
338 else \
339 t='$(program_transform_name)'; echo nm | sed -e 's/x/x/' $$t ; \
340 fi; \
341 fi`
342
343# The first rule in the file had better be this one. Don't put any above it.
344# This lives here to allow makefile fragments to contain dependencies.
345all: all.normal
346.PHONY: all
347
348# These can be overridden by config/mt-*.
349# The _TARGET_ is because they're specified in mt-foo.
350# The _HOST_ is because they're programs that run on the host.
351EXTRA_TARGET_HOST_ALL_MODULES =
352EXTRA_TARGET_HOST_INSTALL_MODULES =
353EXTRA_TARGET_HOST_CHECK_MODULES =
354
355#### host and target specific makefile fragments come in here.
356###
357
358# Flags to pass down to all sub-makes.
359# Please keep these in alphabetical order.
360BASE_FLAGS_TO_PASS = \
361 "AR_FLAGS=$(AR_FLAGS)" \
362 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
363 "AS_FOR_TARGET=$(AS_FOR_TARGET)" \
364 "BISON=$(BISON)" \
365 "CC_FOR_BUILD=$(CC_FOR_BUILD)" \
366 "CC_FOR_TARGET=$(CC_FOR_TARGET)" \
367 "CFLAGS=$(CFLAGS)" \
368 "CFLAGS_FOR_TARGET=$(CFLAGS_FOR_TARGET)" \
75205f78 369 "GCJ_FOR_TARGET=$(GCJ_FOR_TARGET)" \
252b5132
RH
370 "CXX_FOR_BUILD=$(CXX_FOR_BUILD)" \
371 "CXXFLAGS=$(CXXFLAGS)" \
372 "CXXFLAGS_FOR_TARGET=$(CXXFLAGS_FOR_TARGET)" \
373 "CXX_FOR_TARGET=$(CXX_FOR_TARGET)" \
374 "DLLTOOL_FOR_TARGET=$(DLLTOOL_FOR_TARGET)" \
375 "INSTALL=$(INSTALL)" \
376 "INSTALL_DATA=$(INSTALL_DATA)" \
377 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
378 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
379 "LDFLAGS=$(LDFLAGS)" \
380 "LEX=$(LEX)" \
381 "LD_FOR_TARGET=$(LD_FOR_TARGET)" \
382 "LIBCFLAGS=$(LIBCFLAGS)" \
383 "LIBCFLAGS_FOR_TARGET=$(LIBCFLAGS_FOR_TARGET)" \
384 "LIBCXXFLAGS=$(LIBCXXFLAGS)" \
385 "LIBCXXFLAGS_FOR_TARGET=$(LIBCXXFLAGS_FOR_TARGET)" \
386 "M4=$(M4)" \
387 "MAKE=$(MAKE)" \
388 "MAKEINFO=$(MAKEINFO) $(MAKEINFOFLAGS)" \
389 "NM_FOR_TARGET=$(NM_FOR_TARGET)" \
390 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
391 "RPATH_ENVVAR=$(RPATH_ENVVAR)" \
392 "SHELL=$(SHELL)" \
393 "EXPECT=$(EXPECT)" \
394 "RUNTEST=$(RUNTEST)" \
395 "RUNTESTFLAGS=$(RUNTESTFLAGS)" \
396 "TARGET_SUBDIR=$(TARGET_SUBDIR)" \
397 "WINDRES_FOR_TARGET=$(WINDRES_FOR_TARGET)" \
398 "YACC=$(YACC)" \
399 "bindir=$(bindir)" \
400 "datadir=$(datadir)" \
401 "exec_prefix=$(exec_prefix)" \
402 "includedir=$(includedir)" \
403 "infodir=$(infodir)" \
404 "libdir=$(libdir)" \
405 "libexecdir=$(libexecdir)" \
406 "lispdir=$(lispdir)" \
75205f78
DD
407 "libstdcxx_incdir=$(libstdcxx_incdir)" \
408 "libsubdir=$(libsubdir)" \
252b5132
RH
409 "localstatedir=$(localstatedir)" \
410 "mandir=$(mandir)" \
411 "oldincludedir=$(oldincludedir)" \
412 "prefix=$(prefix)" \
413 "sbindir=$(sbindir)" \
414 "sharedstatedir=$(sharedstatedir)" \
415 "sysconfdir=$(sysconfdir)" \
416 "tooldir=$(tooldir)" \
ba73c63f 417 "build_tooldir=$(build_tooldir)" \
252b5132
RH
418 "gxx_include_dir=$(gxx_include_dir)" \
419 "gcc_version=$(gcc_version)" \
420 "gcc_version_trigger=$(gcc_version_trigger)" \
75205f78 421 "target_alias=$(target_alias)"
252b5132 422
dec0cb0c
AO
423# For any flags above that may contain shell code that varies from one
424# target library to another. When doing recursive invocations of the
425# top-level Makefile, we don't want the outer make to evaluate them,
426# so we pass these variables down unchanged. They must not contain
427# single nor double quotes.
428RECURSE_FLAGS = \
429 CXX_FOR_TARGET='$(CXX_FOR_TARGET_FOR_RECURSIVE_MAKE)'
430
252b5132
RH
431# Flags to pass down to most sub-makes, in which we're building with
432# the host environment.
433# If any variables are added here, they must be added to do-*, below.
434EXTRA_HOST_FLAGS = \
435 'AR=$(AR)' \
436 'AS=$(AS)' \
437 'CC=$(CC)' \
438 'CXX=$(CXX)' \
439 'DLLTOOL=$(DLLTOOL)' \
440 'LD=$(LD)' \
441 'NM=$(NM)' \
75205f78 442 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
252b5132
RH
443 'WINDRES=$(WINDRES)'
444
445FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_HOST_FLAGS)
446
447# Flags that are concerned with the location of the X11 include files
448# and library files
449#
450# NOTE: until the top-level is getting the values via autoconf, it only
451# causes problems to have this top-level Makefile overriding the autoconf-set
452# values in child directories. Only variables that don't conflict with
453# autoconf'ed ones should be passed by X11_FLAGS_TO_PASS for now.
454#
455X11_FLAGS_TO_PASS = \
456 'X11_EXTRA_CFLAGS=$(X11_EXTRA_CFLAGS)' \
457 'X11_EXTRA_LIBS=$(X11_EXTRA_LIBS)'
458
459# Flags to pass down to makes which are built with the target environment.
460# The double $ decreases the length of the command line; the variables
461# are set in BASE_FLAGS_TO_PASS, and the sub-make will expand them.
462# If any variables are added here, they must be added to do-*, below.
463EXTRA_TARGET_FLAGS = \
464 'AR=$$(AR_FOR_TARGET)' \
465 'AS=$$(AS_FOR_TARGET)' \
466 'CC=$$(CC_FOR_TARGET)' \
467 'CFLAGS=$$(CFLAGS_FOR_TARGET)' \
468 'CXX=$$(CXX_FOR_TARGET)' \
469 'CXXFLAGS=$$(CXXFLAGS_FOR_TARGET)' \
470 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
471 'LD=$$(LD_FOR_TARGET)' \
472 'LIBCFLAGS=$$(LIBCFLAGS_FOR_TARGET)' \
473 'LIBCXXFLAGS=$$(LIBCXXFLAGS_FOR_TARGET)' \
474 'NM=$$(NM_FOR_TARGET)' \
475 'RANLIB=$$(RANLIB_FOR_TARGET)' \
476 'WINDRES=$$(WINDRES_FOR_TARGET)'
477
478TARGET_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_TARGET_FLAGS)
479
480# Flags to pass down to gcc. gcc builds a library, libgcc.a, so it
481# unfortunately needs the native compiler and the target ar and
482# ranlib.
483# If any variables are added here, they must be added to do-*, below.
484# The HOST_* variables are a special case, which are used for the gcc
485# cross-building scheme.
486EXTRA_GCC_FLAGS = \
487 'AR=$(AR)' \
488 'AS=$(AS)' \
489 'CC=$(CC)' \
490 'CXX=$(CXX)' \
491 'DLLTOOL=$$(DLLTOOL_FOR_TARGET)' \
492 'HOST_CC=$(CC_FOR_BUILD)' \
27f15fdd
DD
493 'BUILD_PREFIX=$(BUILD_PREFIX)' \
494 'BUILD_PREFIX_1=$(BUILD_PREFIX_1)' \
252b5132 495 'NM=$(NM)' \
75205f78 496 "`echo 'RANLIB=$(RANLIB)' | sed -e s/.*=$$/XFOO=/`" \
252b5132
RH
497 'WINDRES=$$(WINDRES_FOR_TARGET)' \
498 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
75205f78 499 "CFLAGS_FOR_BUILD=$(CFLAGS_FOR_BUILD)" \
252b5132
RH
500 "`echo 'LANGUAGES=$(LANGUAGES)' | sed -e s/.*=$$/XFOO=/`" \
501 "`echo 'STMP_FIXPROTO=$(STMP_FIXPROTO)' | sed -e s/.*=$$/XFOO=/`" \
502 "`echo 'LIMITS_H_TEST=$(LIMITS_H_TEST)' | sed -e s/.*=$$/XFOO=/`" \
252b5132
RH
503 "`echo 'LIBGCC2_CFLAGS=$(LIBGCC2_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
504 "`echo 'LIBGCC2_DEBUG_CFLAGS=$(LIBGCC2_DEBUG_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
505 "`echo 'LIBGCC2_INCLUDES=$(LIBGCC2_INCLUDES)' | sed -e s/.*=$$/XFOO=/`" \
506 "`echo 'ENQUIRE=$(ENQUIRE)' | sed -e s/.*=$$/XFOO=/`" \
75205f78 507 "`echo 'STAGE1_CFLAGS=$(STAGE1_CFLAGS)' | sed -e s/.*=$$/XFOO=/`" \
252b5132
RH
508 "`echo 'BOOT_CFLAGS=$(BOOT_CFLAGS)' | sed -e s/.*=$$/XFOO=/`"
509
510GCC_FLAGS_TO_PASS = $(BASE_FLAGS_TO_PASS) $(EXTRA_GCC_FLAGS)
511
49b7683b
DD
512# This is a list of the targets for all of the modules which are compiled
513# using the build machine's native compiler. Configure edits the second
514# macro for build!=host builds.
515ALL_BUILD_MODULES_LIST = \
516 all-build-libiberty
c66d951e 517ALL_BUILD_MODULES = @all_build_modules@
49b7683b
DD
518
519# This is a list of the configure targets for all of the modules which
520# are compiled using the native tools.
521CONFIGURE_BUILD_MODULES = \
522 configure-build-libiberty
523
252b5132
RH
524# This is a list of the targets for all of the modules which are compiled
525# using $(FLAGS_TO_PASS).
526ALL_MODULES = \
252b5132
RH
527 all-ash \
528 all-autoconf \
529 all-automake \
530 all-bash \
531 all-bfd \
405ea7a0 532 all-opcodes \
252b5132
RH
533 all-binutils \
534 all-bison \
535 all-byacc \
536 all-bzip2 \
252b5132
RH
537 all-db \
538 all-dejagnu \
539 all-diff \
540 all-dosutils \
541 all-etc \
75205f78 542 all-fastjar \
252b5132
RH
543 all-fileutils \
544 all-findutils \
545 all-find \
546 all-flex \
547 all-gas \
548 all-gawk \
549 all-gettext \
550 all-gnuserv \
551 all-gprof \
552 all-grep \
252b5132
RH
553 all-gzip \
554 all-hello \
555 all-indent \
252b5132 556 all-intl \
405ea7a0 557 all-tcl \
252b5132
RH
558 all-itcl \
559 all-ld \
560 all-libgui \
561 all-libiberty \
562 all-libtool \
563 all-m4 \
564 all-make \
565 all-mmalloc \
252b5132
RH
566 all-patch \
567 all-perl \
568 all-prms \
569 all-rcs \
570 all-readline \
571 all-release \
572 all-recode \
573 all-sed \
574 all-send-pr \
575 all-shellutils \
8817b92e 576 all-sid \
252b5132 577 all-sim \
ba73c63f 578 all-snavigator \
252b5132 579 all-tar \
252b5132
RH
580 all-texinfo \
581 all-textutils \
252b5132
RH
582 all-time \
583 all-uudecode \
584 all-wdiff \
585 all-zip \
5cec67bf 586 all-zlib \
252b5132
RH
587 $(EXTRA_TARGET_HOST_ALL_MODULES)
588
589# This is a list of the check targets for all of the modules which are
590# compiled using $(FLAGS_TO_PASS).
591#
592# The list is in two parts. The first lists those tools which
593# are tested as part of the host's native tool-chain, and not
594# tested in a cross configuration.
595NATIVE_CHECK_MODULES = \
596 check-bison \
597 check-byacc \
75205f78 598 check-fastjar \
252b5132
RH
599 check-flex \
600 check-zip
601
602CROSS_CHECK_MODULES = \
252b5132
RH
603 check-ash \
604 check-autoconf \
605 check-automake \
606 check-bash \
607 check-bfd \
405ea7a0 608 check-opcodes \
252b5132
RH
609 check-binutils \
610 check-bzip2 \
252b5132
RH
611 check-db \
612 check-dejagnu \
613 check-diff \
614 check-etc \
615 check-fileutils \
616 check-findutils \
617 check-find \
618 check-gas \
619 check-gawk \
620 check-gettext \
621 check-gnuserv \
622 check-gprof \
623 check-grep \
624 check-gzip \
625 check-hello \
626 check-indent \
252b5132 627 check-intl \
405ea7a0 628 check-tcl \
252b5132
RH
629 check-itcl \
630 check-ld \
631 check-libgui \
632 check-libiberty \
633 check-libtool \
634 check-m4 \
635 check-make \
252b5132
RH
636 check-patch \
637 check-perl \
638 check-prms \
639 check-rcs \
640 check-readline \
641 check-recode \
642 check-sed \
643 check-send-pr \
644 check-shellutils \
8817b92e 645 check-sid \
252b5132 646 check-sim \
405ea7a0 647 check-snavigator \
252b5132 648 check-tar \
252b5132
RH
649 check-texinfo \
650 check-textutils \
252b5132
RH
651 check-time \
652 check-uudecode \
653 check-wdiff \
654 $(EXTRA_TARGET_HOST_CHECK_MODULES)
655
656CHECK_MODULES=$(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
657
658# This is a list of the install targets for all of the modules which are
659# compiled using $(FLAGS_TO_PASS).
660# We put install-opcodes before install-binutils because the installed
661# binutils might be on PATH, and they might need the shared opcodes
662# library.
663# We put install-tcl before install-itcl because itcl wants to run a
664# program on installation which uses the Tcl libraries.
665INSTALL_MODULES = \
252b5132
RH
666 install-ash \
667 install-autoconf \
668 install-automake \
669 install-bash \
670 install-bfd \
252b5132
RH
671 install-opcodes \
672 install-binutils \
673 install-bison \
674 install-byacc \
405ea7a0 675 install-bzip2 \
252b5132
RH
676 install-db \
677 install-dejagnu \
678 install-diff \
679 install-dosutils \
680 install-etc \
75205f78 681 install-fastjar \
252b5132
RH
682 install-fileutils \
683 install-findutils \
684 install-find \
685 install-flex \
686 install-gas \
687 install-gawk \
688 install-gettext \
689 install-gnuserv \
690 install-gprof \
691 install-grep \
252b5132
RH
692 install-gzip \
693 install-hello \
694 install-indent \
252b5132 695 install-intl \
252b5132 696 install-tcl \
252b5132
RH
697 install-itcl \
698 install-ld \
699 install-libgui \
700 install-libiberty \
701 install-libtool \
702 install-m4 \
703 install-make \
704 install-mmalloc \
705 install-patch \
706 install-perl \
707 install-prms \
708 install-rcs \
709 install-readline \
710 install-recode \
711 install-sed \
712 install-send-pr \
713 install-shellutils \
8817b92e 714 install-sid \
252b5132 715 install-sim \
ba73c63f 716 install-snavigator \
252b5132 717 install-tar \
252b5132 718 install-textutils \
252b5132
RH
719 install-time \
720 install-uudecode \
721 install-wdiff \
722 install-zip \
723 $(EXTRA_TARGET_HOST_INSTALL_MODULES)
724
725# This is a list of the targets for all of the modules which are compiled
726# using $(X11_FLAGS_TO_PASS).
727ALL_X11_MODULES = \
252b5132
RH
728 all-gdb \
729 all-expect \
252b5132
RH
730 all-guile \
731 all-tclX \
732 all-tk \
252b5132
RH
733 all-tix
734
735# This is a list of the check targets for all of the modules which are
736# compiled using $(X11_FLAGS_TO_PASS).
737CHECK_X11_MODULES = \
252b5132
RH
738 check-gdb \
739 check-guile \
740 check-expect \
252b5132
RH
741 check-tclX \
742 check-tk \
743 check-tix
744
745# This is a list of the install targets for all the modules which are
746# compiled using $(X11_FLAGS_TO_PASS).
747INSTALL_X11_MODULES = \
252b5132
RH
748 install-gdb \
749 install-guile \
750 install-expect \
252b5132
RH
751 install-tclX \
752 install-tk \
252b5132
RH
753 install-tix
754
755# This is a list of the targets for all of the modules which are compiled
756# using $(TARGET_FLAGS_TO_PASS).
757ALL_TARGET_MODULES = \
ba73c63f 758 all-target-libstdc++-v3 \
252b5132 759 all-target-newlib \
ba73c63f 760 all-target-libf2c \
ba73c63f 761 all-target-libobjc \
252b5132
RH
762 all-target-libtermcap \
763 all-target-winsup \
764 all-target-libgloss \
765 all-target-libiberty \
766 all-target-gperf \
767 all-target-examples \
ba73c63f
JM
768 all-target-libffi \
769 all-target-libjava \
770 all-target-zlib \
771 all-target-boehm-gc \
907a7241 772 all-target-qthreads
252b5132
RH
773
774# This is a list of the configure targets for all of the modules which
775# are compiled using the target tools.
776CONFIGURE_TARGET_MODULES = \
ba73c63f 777 configure-target-libstdc++-v3 \
252b5132 778 configure-target-newlib \
ba73c63f 779 configure-target-libf2c \
ba73c63f 780 configure-target-libobjc \
252b5132
RH
781 configure-target-libtermcap \
782 configure-target-winsup \
783 configure-target-libgloss \
784 configure-target-libiberty \
785 configure-target-gperf \
786 configure-target-examples \
ba73c63f
JM
787 configure-target-libffi \
788 configure-target-libjava \
789 configure-target-zlib \
790 configure-target-boehm-gc \
907a7241 791 configure-target-qthreads
252b5132
RH
792
793# This is a list of the check targets for all of the modules which are
794# compiled using $(TARGET_FLAGS_TO_PASS).
795CHECK_TARGET_MODULES = \
ba73c63f 796 check-target-libstdc++-v3 \
252b5132 797 check-target-newlib \
ba73c63f 798 check-target-libf2c \
ba73c63f 799 check-target-libobjc \
252b5132
RH
800 check-target-winsup \
801 check-target-libiberty \
907a7241 802 check-target-gperf \
ba73c63f
JM
803 check-target-libffi \
804 check-target-libjava \
805 check-target-zlib \
806 check-target-boehm-gc \
907a7241 807 check-target-qthreads
252b5132
RH
808
809# This is a list of the install targets for all of the modules which are
810# compiled using $(TARGET_FLAGS_TO_PASS).
811INSTALL_TARGET_MODULES = \
ba73c63f 812 install-target-libstdc++-v3 \
252b5132 813 install-target-newlib \
ba73c63f 814 install-target-libf2c \
ba73c63f 815 install-target-libobjc \
252b5132
RH
816 install-target-libtermcap \
817 install-target-winsup \
818 install-target-libgloss \
819 install-target-libiberty \
907a7241 820 install-target-gperf \
ba73c63f
JM
821 install-target-libjava \
822 install-target-zlib \
823 install-target-boehm-gc \
907a7241 824 install-target-qthreads
252b5132
RH
825
826# This is a list of the targets for which we can do a clean-{target}.
827CLEAN_MODULES = \
252b5132
RH
828 clean-ash \
829 clean-autoconf \
830 clean-automake \
831 clean-bash \
832 clean-bfd \
405ea7a0 833 clean-opcodes \
252b5132
RH
834 clean-binutils \
835 clean-bison \
836 clean-byacc \
837 clean-bzip2 \
252b5132
RH
838 clean-db \
839 clean-dejagnu \
840 clean-diff \
841 clean-dosutils \
842 clean-etc \
75205f78 843 clean-fastjar \
252b5132
RH
844 clean-fileutils \
845 clean-findutils \
846 clean-find \
847 clean-flex \
848 clean-gas \
849 clean-gawk \
850 clean-gettext \
851 clean-gnuserv \
852 clean-gprof \
853 clean-grep \
252b5132
RH
854 clean-gzip \
855 clean-hello \
856 clean-indent \
252b5132 857 clean-intl \
405ea7a0 858 clean-tcl \
252b5132
RH
859 clean-itcl \
860 clean-ld \
861 clean-libgui \
862 clean-libiberty \
863 clean-libtool \
864 clean-m4 \
865 clean-make \
866 clean-mmalloc \
252b5132
RH
867 clean-patch \
868 clean-perl \
869 clean-prms \
870 clean-rcs \
871 clean-readline \
872 clean-release \
873 clean-recode \
874 clean-sed \
875 clean-send-pr \
876 clean-shellutils \
8817b92e 877 clean-sid \
252b5132 878 clean-sim \
ba73c63f 879 clean-snavigator \
252b5132 880 clean-tar \
252b5132
RH
881 clean-texinfo \
882 clean-textutils \
252b5132
RH
883 clean-time \
884 clean-uudecode \
885 clean-wdiff \
5cec67bf 886 clean-zip \
405ea7a0 887 clean-zlib
252b5132
RH
888
889# All of the target modules that can be cleaned
890CLEAN_TARGET_MODULES = \
ba73c63f 891 clean-target-libstdc++-v3 \
252b5132 892 clean-target-newlib \
ba73c63f 893 clean-target-libf2c \
ba73c63f 894 clean-target-libobjc \
252b5132
RH
895 clean-target-winsup \
896 clean-target-libgloss \
897 clean-target-libiberty \
898 clean-target-gperf \
899 clean-target-examples \
ba73c63f
JM
900 clean-target-libffi \
901 clean-target-libjava \
902 clean-target-zlib \
903 clean-target-boehm-gc \
907a7241 904 clean-target-qthreads
252b5132
RH
905
906# All of the x11 modules that can be cleaned
907CLEAN_X11_MODULES = \
252b5132
RH
908 clean-gdb \
909 clean-expect \
252b5132
RH
910 clean-guile \
911 clean-tclX \
912 clean-tk \
913 clean-tix
914
915# The target built for a native build.
916.PHONY: all.normal
917all.normal: \
49b7683b 918 $(ALL_BUILD_MODULES) \
252b5132
RH
919 $(ALL_MODULES) \
920 $(ALL_X11_MODULES) \
921 $(ALL_TARGET_MODULES) \
922 all-gcc
923
924# Do a target for all the subdirectories. A ``make do-X'' will do a
925# ``make X'' in all subdirectories (because, in general, there is a
926# dependency (below) of X upon do-X, a ``make X'' will also do this,
927# but it may do additional work as well).
928# This target ensures that $(BASE_FLAGS_TO_PASS) appears only once,
929# because it is so large that it can easily overflow the command line
930# length limit on some systems.
931DO_X = \
932 do-clean \
933 do-distclean \
934 do-dvi \
935 do-info \
936 do-install-info \
937 do-installcheck \
938 do-mostlyclean \
939 do-maintainer-clean \
940 do-TAGS
941.PHONY: $(DO_X)
942$(DO_X):
943 @target=`echo $@ | sed -e 's/^do-//'`; \
d5de0a84
NC
944 r=`${PWD}`; export r; \
945 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
946 $(SET_LIB_PATH) \
947 for i in $(SUBDIRS) -dummy-; do \
948 if [ -f ./$$i/Makefile ]; then \
949 case $$i in \
950 gcc) \
951 for flag in $(EXTRA_GCC_FLAGS); do \
3f152009 952 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
252b5132
RH
953 done; \
954 ;; \
955 *) \
956 for flag in $(EXTRA_HOST_FLAGS); do \
3f152009 957 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
252b5132
RH
958 done; \
959 ;; \
960 esac ; \
252b5132
RH
961 if (cd ./$$i; \
962 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
963 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
75205f78 964 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
252b5132
RH
965 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
966 $${target}); \
967 then true; else exit 1; fi; \
968 else true; fi; \
969 done
970 @target=`echo $@ | sed -e 's/^do-//'`; \
d5de0a84
NC
971 r=`${PWD}`; export r; \
972 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
973 $(SET_LIB_PATH) \
974 for i in $(TARGET_CONFIGDIRS) -dummy-; do \
975 if [ -f $(TARGET_SUBDIR)/$$i/Makefile ]; then \
976 for flag in $(EXTRA_TARGET_FLAGS); do \
3f152009 977 eval `echo "$$flag" | sed -e "s|^\([^=]*\)=\(.*\)|\1='\2'; export \1|"`; \
252b5132 978 done; \
252b5132
RH
979 if (cd $(TARGET_SUBDIR)/$$i; \
980 $(MAKE) $(BASE_FLAGS_TO_PASS) "AR=$${AR}" "AS=$${AS}" \
981 "CC=$${CC}" "CXX=$${CXX}" "LD=$${LD}" "NM=$${NM}" \
75205f78 982 "`echo \"RANLIB=$${RANLIB}\" | sed -e 's/.*=$$/XFOO=/'`" \
252b5132
RH
983 "DLLTOOL=$${DLLTOOL}" "WINDRES=$${WINDRES}" \
984 $${target}); \
985 then true; else exit 1; fi; \
986 else true; fi; \
987 done
988
989# Here are the targets which correspond to the do-X targets.
990
991.PHONY: info installcheck dvi install-info
992.PHONY: clean distclean mostlyclean maintainer-clean realclean
993.PHONY: local-clean local-distclean local-maintainer-clean
994info: do-info
995installcheck: do-installcheck
996dvi: do-dvi
997
998# Make sure makeinfo is built before we do a `make info'.
999do-info: all-texinfo
1000
1001install-info: do-install-info dir.info
d5de0a84 1002 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1003 if [ -f dir.info ] ; then \
1004 $(INSTALL_DATA) dir.info $(infodir)/dir.info ; \
1005 else true ; fi
1006
1007local-clean:
1008 -rm -f *.a TEMP errs core *.o *~ \#* TAGS *.E *.log
1009
1010local-distclean:
1011 -rm -f Makefile config.status config.cache mh-frag mt-frag
1012 -if [ "$(TARGET_SUBDIR)" != "." ]; then \
1013 rm -rf $(TARGET_SUBDIR); \
1014 else true; fi
75205f78
DD
1015 -rm -f texinfo/po/Makefile texinfo/po/Makefile.in texinfo/info/Makefile
1016 -rm -f texinfo/doc/Makefile texinfo/po/POTFILES
1017 -rmdir texinfo/doc texinfo/info texinfo/intl texinfo/lib 2>/dev/null
1018 -rmdir texinfo/makeinfo texinfo/po texinfo/util 2>/dev/null
1019 -rmdir fastjar gcc libiberty texinfo zlib 2>/dev/null
252b5132
RH
1020
1021local-maintainer-clean:
1022 @echo "This command is intended for maintainers to use;"
1023 @echo "it deletes files that may require special tools to rebuild."
1024
1025clean: do-clean local-clean
1026mostlyclean: do-mostlyclean local-clean
1027distclean: do-distclean local-clean local-distclean
1028maintainer-clean: local-maintainer-clean do-maintainer-clean local-clean
1029maintainer-clean: local-distclean
1030realclean: maintainer-clean
1031
1032# This rule is used to clean specific modules.
1033.PHONY: $(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc
1034$(CLEAN_MODULES) $(CLEAN_X11_MODULES) clean-gcc:
1035 @dir=`echo $@ | sed -e 's/clean-//'`; \
1036 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1037 r=`${PWD}`; export r; \
1038 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1039 $(SET_LIB_PATH) \
1040 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) clean); \
1041 else \
1042 true; \
1043 fi
1044
1045.PHONY: $(CLEAN_TARGET_MODULES)
1046$(CLEAN_TARGET_MODULES):
1047 @dir=`echo $@ | sed -e 's/clean-target-//'`; \
1048 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1049 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
d5de0a84
NC
1050 r=`${PWD}`; export r; \
1051 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1052 $(SET_LIB_PATH) \
1053 (cd $(TARGET_SUBDIR)/$${dir}; $(MAKE) $(TARGET_FLAGS_TO_PASS) clean); \
1054 else \
1055 true; \
1056 fi
1057
5cec67bf
AO
1058clean-target: $(CLEAN_TARGET_MODULES) clean-target-libgcc
1059clean-target-libgcc:
1060 test ! -d gcc/libgcc || \
1061 (cd gcc/libgcc && find . -type d -print) | \
1062 while read d; do rm -f gcc/$$d/libgcc.a || : ; done
1063 -rm -rf gcc/libgcc
252b5132
RH
1064
1065# Check target.
1066
80413487
RH
1067.PHONY: check do-check
1068check:
1069 $(MAKE) do-check NOTPARALLEL=parallel-ok
1070
1071do-check: $(CHECK_MODULES) \
252b5132
RH
1072 $(CHECK_TARGET_MODULES) \
1073 $(CHECK_X11_MODULES) \
1074 check-gcc
1075
1076# Automated reporting of test results.
1077
1078warning.log: build.log
1079 $(srcdir)/contrib/warn_summary build.log > $@
1080
1081mail-report.log:
1082 if test x'$(BOOT_CFLAGS)' != x''; then \
1083 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
1084 fi; \
1085 $(srcdir)/contrib/test_summary -t >$@
1086 chmod +x $@
1087 echo If you really want to send e-mail, run ./$@ now
1088
1089mail-report-with-warnings.log: warning.log
1090 if test x'$(BOOT_CFLAGS)' != x''; then \
1091 BOOT_CFLAGS='$(BOOT_CFLAGS)'; export BOOT_CFLAGS; \
1092 fi; \
1093 $(srcdir)/contrib/test_summary -t -i warning.log >$@
1094 chmod +x $@
1095 echo If you really want to send e-mail, run ./$@ now
1096
1097# Installation targets.
1098
1099.PHONY: install install-cross uninstall source-vault binary-vault vault-install
1100install: $(INSTALL_TARGET)
1101install-cross: $(INSTALL_TARGET_CROSS)
1102
1103uninstall:
1104 @echo "the uninstall target is not supported in this tree"
1105
1106source-vault:
1107 $(MAKE) -f ./release/Build-A-Release \
1108 host=$(host_alias) source-vault
1109
1110binary-vault:
1111 $(MAKE) -f ./release/Build-A-Release \
1112 host=$(host_alias) target=$(target_alias)
1113
1114vault-install:
1115 @if [ -f ./release/vault-install ] ; then \
1116 ./release/vault-install $(host_alias) $(target_alias) ; \
1117 else \
1118 true ; \
1119 fi
1120
1121.PHONY: install.all
1122install.all: install-no-fixedincludes
1123 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84 1124 r=`${PWD}` ; export r ; \
252b5132
RH
1125 $(SET_LIB_PATH) \
1126 (cd ./gcc; \
1127 $(MAKE) $(FLAGS_TO_PASS) install-headers) ; \
1128 else \
1129 true ; \
1130 fi
1131
252b5132
RH
1132# install-no-fixedincludes is used because Cygnus can not distribute
1133# the fixed header files.
1134.PHONY: install-no-fixedincludes
1135install-no-fixedincludes: \
1136 installdirs \
1137 $(INSTALL_MODULES) \
1138 $(INSTALL_TARGET_MODULES) \
1139 $(INSTALL_X11_MODULES) \
1140 gcc-no-fixedincludes
1141
1142# Install the gcc headers files, but not the fixed include files,
1143# which Cygnus is not allowed to distribute. This rule is very
1144# dependent on the workings of the gcc Makefile.in.
1145.PHONY: gcc-no-fixedincludes
1146gcc-no-fixedincludes:
1147 @if [ -f ./gcc/Makefile ]; then \
1148 rm -rf gcc/tmp-include; \
1149 mv gcc/include gcc/tmp-include 2>/dev/null; \
1150 mkdir gcc/include; \
1151 cp $(srcdir)/gcc/gsyslimits.h gcc/include/syslimits.h; \
1152 touch gcc/stmp-fixinc gcc/include/fixed; \
1153 rm -f gcc/stmp-headers gcc/stmp-int-hdrs; \
d5de0a84
NC
1154 r=`${PWD}`; export r; \
1155 s=`cd $(srcdir); ${PWD}` ; export s; \
252b5132
RH
1156 $(SET_LIB_PATH) \
1157 (cd ./gcc; \
1158 $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1159 rm -rf gcc/include; \
1160 mv gcc/tmp-include gcc/include 2>/dev/null; \
1161 else true; fi
1162
49b7683b
DD
1163# This rule is used to build the modules which are built with the
1164# build machine's native compiler.
1165.PHONY: $(ALL_BUILD_MODULES)
1166$(ALL_BUILD_MODULES):
1167 dir=`echo $@ | sed -e 's/all-build-//'`; \
1168 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1169 r=`${PWD}`; export r; \
1170 s=`cd $(srcdir); ${PWD}`; export s; \
49b7683b
DD
1171 (cd $(BUILD_SUBDIR)/$${dir} && $(MAKE) all); \
1172 else \
1173 true; \
1174 fi
1175
1176# This rule is used to configure the modules which are built with the
1177# native tools.
1178.PHONY: $(CONFIGURE_BUILD_MODULES)
1179$(CONFIGURE_BUILD_MODULES):
1180 @dir=`echo $@ | sed -e 's/configure-build-//'`; \
1181 if [ ! -d $(BUILD_SUBDIR) ]; then \
1182 true; \
1183 elif [ -f $(BUILD_SUBDIR)/$${dir}/Makefile ] ; then \
1184 true; \
1185 elif echo " $(BUILD_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1186 if [ -d $(srcdir)/$${dir} ]; then \
1187 [ -d $(BUILD_SUBDIR)/$${dir} ] || mkdir $(BUILD_SUBDIR)/$${dir};\
d5de0a84
NC
1188 r=`${PWD}`; export r; \
1189 s=`cd $(srcdir); ${PWD}`; export s; \
49b7683b
DD
1190 AR="$(AR_FOR_BUILD)"; export AR; \
1191 AS="$(AS_FOR_BUILD)"; export AS; \
1192 CC="$(CC_FOR_BUILD)"; export CC; \
1193 CFLAGS="$(CFLAGS_FOR_BUILD)"; export CFLAGS; \
1194 CXX="$(CXX_FOR_BUILD)"; export CXX; \
1195 CXXFLAGS="$(CXXFLAGS_FOR_BUILD)"; export CXXFLAGS; \
1196 GCJ="$(GCJ_FOR_BUILD)"; export GCJ; \
1197 DLLTOOL="$(DLLTOOL_FOR_BUILD)"; export DLLTOOL; \
1198 LD="$(LD_FOR_BUILD)"; export LD; \
1199 LDFLAGS="$(LDFLAGS_FOR_BUILD)"; export LDFLAGS; \
1200 NM="$(NM_FOR_BUILD)"; export NM; \
1201 RANLIB="$(RANLIB_FOR_BUILD)"; export RANLIB; \
1202 WINDRES="$(WINDRES_FOR_BUILD)"; export WINDRES; \
1203 echo Configuring in $(BUILD_SUBDIR)/$${dir}; \
1204 cd "$(BUILD_SUBDIR)/$${dir}" || exit 1; \
1205 case $(srcdir) in \
1206 /* | [A-Za-z]:[\\/]*) \
1207 topdir=$(srcdir) ;; \
1208 *) \
1209 case "$(BUILD_SUBDIR)" in \
1210 .) topdir="../$(srcdir)" ;; \
1211 *) topdir="../../$(srcdir)" ;; \
1212 esac ;; \
1213 esac; \
1214 if [ "$(srcdir)" = "." ] ; then \
1215 if [ "$(BUILD_SUBDIR)" != "." ] ; then \
1216 if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1217 if [ -f Makefile ]; then \
1218 if $(MAKE) distclean; then \
1219 true; \
1220 else \
1221 exit 1; \
1222 fi; \
1223 else \
1224 true; \
1225 fi; \
1226 else \
1227 exit 1; \
1228 fi; \
1229 else \
1230 true; \
1231 fi; \
1232 srcdiroption="--srcdir=."; \
1233 libsrcdir="."; \
1234 else \
1235 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1236 libsrcdir="$$s/$${dir}"; \
1237 fi; \
1238 if [ -f $${libsrcdir}/configure ] ; then \
1239 rm -f no-such-file skip-this-dir; \
1240 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
1241 $(BUILD_CONFIGARGS) $${srcdiroption} \
1242 --with-build-subdir="$(BUILD_SUBDIR)"; \
1243 else \
1244 rm -f no-such-file skip-this-dir; \
1245 CONFIG_SITE=no-such-file $(SHELL) $$s/configure \
1246 $(BUILD_CONFIGARGS) $${srcdiroption} \
1247 --with-build-subdir="$(BUILD_SUBDIR)"; \
1248 fi || exit 1; \
1249 if [ -f skip-this-dir ] ; then \
1250 sh skip-this-dir; \
1251 rm -f skip-this-dir; \
1252 cd ..; rmdir $${dir} || true; \
1253 else \
1254 true; \
1255 fi; \
1256 else \
1257 true; \
1258 fi; \
1259 else \
1260 true; \
1261 fi
1262
252b5132
RH
1263# This rule is used to build the modules which use FLAGS_TO_PASS. To
1264# build a target all-X means to cd to X and make all.
1265#
1266# all-gui, and all-libproc are handled specially because
1267# they are still experimental, and if they fail to build, that
1268# shouldn't stop "make all".
1269.PHONY: $(ALL_MODULES) all-gui all-libproc
1270$(ALL_MODULES) all-gui all-libproc:
1271 @dir=`echo $@ | sed -e 's/all-//'`; \
1272 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1273 r=`${PWD}`; export r; \
1274 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1275 $(SET_LIB_PATH) \
1276 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) all); \
1277 else \
1278 true; \
1279 fi
1280
1281# These rules are used to check the modules which use FLAGS_TO_PASS.
1282# To build a target check-X means to cd to X and make check. Some
1283# modules are only tested in a native toolchain.
1284
1285.PHONY: $(CHECK_MODULES) $(NATIVE_CHECK_MODULES) $(CROSS_CHECK_MODULES)
1286$(NATIVE_CHECK_MODULES):
3f152009 1287 @if [ '$(host_canonical)' = '$(target_canonical)' ] ; then \
252b5132
RH
1288 dir=`echo $@ | sed -e 's/check-//'`; \
1289 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1290 r=`${PWD}`; export r; \
1291 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1292 $(SET_LIB_PATH) \
1293 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1294 else \
1295 true; \
1296 fi; \
1297 fi
1298
1299$(CROSS_CHECK_MODULES):
1300 @dir=`echo $@ | sed -e 's/check-//'`; \
1301 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1302 r=`${PWD}`; export r; \
1303 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1304 $(SET_LIB_PATH) \
1305 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) check); \
1306 else \
1307 true; \
1308 fi
1309
1310# This rule is used to install the modules which use FLAGS_TO_PASS.
1311# To build a target install-X means to cd to X and make install.
1312.PHONY: $(INSTALL_MODULES)
1313$(INSTALL_MODULES): installdirs
1314 @dir=`echo $@ | sed -e 's/install-//'`; \
1315 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1316 r=`${PWD}`; export r; \
1317 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1318 $(SET_LIB_PATH) \
1319 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1320 else \
1321 true; \
1322 fi
1323
1324# This rule is used to configure the modules which are built with the
1325# target tools.
1326.PHONY: $(CONFIGURE_TARGET_MODULES)
1327$(CONFIGURE_TARGET_MODULES):
1328 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1329 if [ -d $(TARGET_SUBDIR)/$${dir} ]; then \
d5de0a84 1330 r=`${PWD}`; export r; \
252b5132
RH
1331 $(CC_FOR_TARGET) --print-multi-lib > $(TARGET_SUBDIR)/$${dir}/tmpmulti.out 2> /dev/null; \
1332 if [ -s $(TARGET_SUBDIR)/$${dir}/tmpmulti.out ]; then \
1333 if [ -f $(TARGET_SUBDIR)/$${dir}/multilib.out ]; then \
1334 if cmp $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/tmpmulti.out > /dev/null; then \
1335 rm -f $(TARGET_SUBDIR)/$${dir}/tmpmulti.out; \
1336 else \
1337 echo "Multilibs changed for $${dir}, reconfiguring"; \
1338 rm -f $(TARGET_SUBDIR)/$${dir}/multilib.out $(TARGET_SUBDIR)/$${dir}/Makefile; \
1339 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1340 fi; \
1341 else \
1342 mv $(TARGET_SUBDIR)/$${dir}/tmpmulti.out $(TARGET_SUBDIR)/$${dir}/multilib.out; \
1343 fi; \
1344 fi; \
1345 fi; exit 0 # break command into two pieces
1346 @dir=`echo $@ | sed -e 's/configure-target-//'`; \
1347 if [ ! -d $(TARGET_SUBDIR) ]; then \
1348 true; \
1349 elif [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
1350 true; \
1351 elif echo " $(TARGET_CONFIGDIRS) " | grep " $${dir} " >/dev/null 2>&1; then \
1352 if [ -d $(srcdir)/$${dir} ]; then \
1353 [ -d $(TARGET_SUBDIR)/$${dir} ] || mkdir $(TARGET_SUBDIR)/$${dir};\
d5de0a84
NC
1354 r=`${PWD}`; export r; \
1355 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1356 $(SET_LIB_PATH) \
1357 AR="$(AR_FOR_TARGET)"; export AR; \
1358 AS="$(AS_FOR_TARGET)"; export AS; \
1359 CC="$(CC_FOR_TARGET)"; export CC; \
1360 CFLAGS="$(CFLAGS_FOR_TARGET)"; export CFLAGS; \
1361 CXX="$(CXX_FOR_TARGET)"; export CXX; \
1362 CXXFLAGS="$(CXXFLAGS_FOR_TARGET)"; export CXXFLAGS; \
75205f78 1363 GCJ="$(GCJ_FOR_TARGET)"; export GCJ; \
252b5132
RH
1364 DLLTOOL="$(DLLTOOL_FOR_TARGET)"; export DLLTOOL; \
1365 LD="$(LD_FOR_TARGET)"; export LD; \
1366 LDFLAGS="$(LDFLAGS_FOR_TARGET)"; export LDFLAGS; \
1367 NM="$(NM_FOR_TARGET)"; export NM; \
1368 RANLIB="$(RANLIB_FOR_TARGET)"; export RANLIB; \
1369 WINDRES="$(WINDRES_FOR_TARGET)"; export WINDRES; \
1370 echo Configuring in $(TARGET_SUBDIR)/$${dir}; \
75205f78 1371 cd "$(TARGET_SUBDIR)/$${dir}" || exit 1; \
252b5132 1372 case $(srcdir) in \
75205f78 1373 /* | [A-Za-z]:[\\/]*) \
252b5132
RH
1374 topdir=$(srcdir) ;; \
1375 *) \
1376 case "$(TARGET_SUBDIR)" in \
1377 .) topdir="../$(srcdir)" ;; \
1378 *) topdir="../../$(srcdir)" ;; \
1379 esac ;; \
1380 esac; \
1381 if [ "$(srcdir)" = "." ] ; then \
1382 if [ "$(TARGET_SUBDIR)" != "." ] ; then \
1383 if $(SHELL) $$s/symlink-tree $${topdir}/$${dir} "no-such-file" ; then \
1384 if [ -f Makefile ]; then \
1385 if $(MAKE) distclean; then \
1386 true; \
1387 else \
1388 exit 1; \
1389 fi; \
1390 else \
1391 true; \
1392 fi; \
1393 else \
1394 exit 1; \
1395 fi; \
1396 else \
1397 true; \
1398 fi; \
1399 srcdiroption="--srcdir=."; \
1400 libsrcdir="."; \
1401 else \
1402 srcdiroption="--srcdir=$${topdir}/$${dir}"; \
1403 libsrcdir="$$s/$${dir}"; \
1404 fi; \
1405 if [ -f $${libsrcdir}/configure ] ; then \
1406 rm -f no-such-file skip-this-dir; \
1407 CONFIG_SITE=no-such-file $(SHELL) $${libsrcdir}/configure \
49b7683b 1408 $(TARGET_CONFIGARGS) $${srcdiroption} \
252b5132
RH
1409 --with-target-subdir="$(TARGET_SUBDIR)"; \
1410 else \
1411 rm -f no-such-file skip-this-dir; \
1412 CONFIG_SITE=no-such-file $(SHELL) $$s/configure \
49b7683b 1413 $(TARGET_CONFIGARGS) $${srcdiroption} \
252b5132 1414 --with-target-subdir="$(TARGET_SUBDIR)"; \
75205f78 1415 fi || exit 1; \
252b5132
RH
1416 if [ -f skip-this-dir ] ; then \
1417 sh skip-this-dir; \
1418 rm -f skip-this-dir; \
1419 cd ..; rmdir $${dir} || true; \
1420 else \
1421 true; \
1422 fi; \
1423 else \
1424 true; \
1425 fi; \
1426 else \
1427 true; \
1428 fi
1429
1430# This rule is used to build the modules which use TARGET_FLAGS_TO_PASS.
1431# To build a target all-X means to cd to X and make all.
1432.PHONY: $(ALL_TARGET_MODULES)
1433$(ALL_TARGET_MODULES):
1434 @dir=`echo $@ | sed -e 's/all-target-//'`; \
1435 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
d5de0a84
NC
1436 r=`${PWD}`; export r; \
1437 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132 1438 $(SET_LIB_PATH) \
dec0cb0c
AO
1439 (cd $(TARGET_SUBDIR)/$${dir}; \
1440 $(MAKE) $(TARGET_FLAGS_TO_PASS) all); \
252b5132
RH
1441 else \
1442 true; \
1443 fi
1444
1445# This rule is used to check the modules which use TARGET_FLAGS_TO_PASS.
1446# To build a target install-X means to cd to X and make install.
1447.PHONY: $(CHECK_TARGET_MODULES)
1448$(CHECK_TARGET_MODULES):
1449 @dir=`echo $@ | sed -e 's/check-target-//'`; \
1450 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
d5de0a84
NC
1451 r=`${PWD}`; export r; \
1452 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132 1453 $(SET_LIB_PATH) \
dec0cb0c
AO
1454 (cd $(TARGET_SUBDIR)/$${dir}; \
1455 $(MAKE) $(TARGET_FLAGS_TO_PASS) check);\
252b5132
RH
1456 else \
1457 true; \
1458 fi
1459
1460# This rule is used to install the modules which use
1461# TARGET_FLAGS_TO_PASS. To build a target install-X means to cd to X
1462# and make install.
1463.PHONY: $(INSTALL_TARGET_MODULES)
1464$(INSTALL_TARGET_MODULES): installdirs
1465 @dir=`echo $@ | sed -e 's/install-target-//'`; \
1466 if [ -f $(TARGET_SUBDIR)/$${dir}/Makefile ] ; then \
d5de0a84
NC
1467 r=`${PWD}`; export r; \
1468 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1469 $(SET_LIB_PATH) \
1470 (cd $(TARGET_SUBDIR)/$${dir}; \
1471 $(MAKE) $(TARGET_FLAGS_TO_PASS) install); \
1472 else \
1473 true; \
1474 fi
1475
1476# This rule is used to build the modules which use X11_FLAGS_TO_PASS.
1477# To build a target all-X means to cd to X and make all.
1478.PHONY: $(ALL_X11_MODULES)
1479$(ALL_X11_MODULES):
1480 @dir=`echo $@ | sed -e 's/all-//'`; \
1481 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1482 r=`${PWD}`; export r; \
1483 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1484 $(SET_LIB_PATH) \
1485 (cd $${dir}; \
1486 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) all); \
1487 else \
1488 true; \
1489 fi
1490
1491# This rule is used to check the modules which use X11_FLAGS_TO_PASS.
1492# To build a target check-X means to cd to X and make all.
1493.PHONY: $(CHECK_X11_MODULES)
1494$(CHECK_X11_MODULES):
1495 @dir=`echo $@ | sed -e 's/check-//'`; \
1496 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1497 r=`${PWD}`; export r; \
1498 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1499 $(SET_LIB_PATH) \
1500 (cd $${dir}; \
1501 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) check); \
1502 else \
1503 true; \
1504 fi
1505
1506# This rule is used to install the modules which use X11_FLAGS_TO_PASS.
1507# To build a target install-X means to cd to X and make install.
1508.PHONY: $(INSTALL_X11_MODULES)
1509$(INSTALL_X11_MODULES): installdirs
1510 @dir=`echo $@ | sed -e 's/install-//'`; \
1511 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1512 r=`${PWD}`; export r; \
1513 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1514 $(SET_LIB_PATH) \
1515 (cd $${dir}; \
1516 $(MAKE) $(FLAGS_TO_PASS) $(X11_FLAGS_TO_PASS) install); \
1517 else \
1518 true; \
1519 fi
1520
1521# gcc is the only module which uses GCC_FLAGS_TO_PASS.
1522.PHONY: all-gcc
1523all-gcc:
1524 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84
NC
1525 r=`${PWD}`; export r; \
1526 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1527 $(SET_LIB_PATH) \
1528 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) all); \
1529 else \
1530 true; \
1531 fi
1532
1533# Building GCC uses some tools for rebuilding "source" files
1534# like texinfo, bison/byacc, etc. So we must depend on those.
1535#
1536# While building GCC, it may be necessary to run various target
1537# programs like the assembler, linker, etc. So we depend on
1538# those too.
1539#
1540# In theory, on an SMP all those dependencies can be resolved
1541# in parallel.
1542#
1543.PHONY: bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean
2809b4b9 1544bootstrap bootstrap-lean bootstrap2 bootstrap2-lean bootstrap3 bootstrap3-lean bootstrap4 bootstrap4-lean: all-bootstrap
d5de0a84
NC
1545 @r=`${PWD}`; export r; \
1546 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1547 $(SET_LIB_PATH) \
1548 echo "Bootstrapping the compiler"; \
5cec67bf 1549 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $@
d5de0a84
NC
1550 @r=`${PWD}`; export r; \
1551 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1552 case "$@" in \
1553 *bootstrap4-lean ) \
1554 msg="Comparing stage3 and stage4 of the compiler"; \
1555 compare=compare3-lean ;; \
1556 *bootstrap4 ) msg="Comparing stage3 and stage4 of the compiler"; \
1557 compare=compare3 ;; \
1558 *-lean ) msg="Comparing stage2 and stage3 of the compiler"; \
1559 compare=compare-lean ;; \
1560 * ) msg="Comparing stage2 and stage3 of the compiler"; \
1561 compare=compare ;; \
1562 esac; \
1563 $(SET_LIB_PATH) \
1564 echo "$$msg"; \
5cec67bf 1565 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) $$compare
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 1570 $(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) all
252b5132
RH
1571
1572.PHONY: cross
1573cross: all-texinfo all-bison all-byacc all-binutils all-gas all-ld
d5de0a84
NC
1574 @r=`${PWD}`; export r; \
1575 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1576 $(SET_LIB_PATH) \
1577 echo "Building the C and C++ compiler"; \
5cec67bf 1578 cd gcc && $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++"
d5de0a84
NC
1579 @r=`${PWD}`; export r; \
1580 s=`cd $(srcdir); ${PWD}` ; export s; \
252b5132
RH
1581 $(SET_LIB_PATH) \
1582 echo "Building runtime libraries"; \
dec0cb0c
AO
1583 $(MAKE) $(BASE_FLAGS_TO_PASS) $(RECURSE_FLAGS) \
1584 LANGUAGES="c c++" all
252b5132
RH
1585
1586.PHONY: check-gcc
1587check-gcc:
1588 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84
NC
1589 r=`${PWD}`; export r; \
1590 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1591 $(SET_LIB_PATH) \
1592 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check); \
1593 else \
1594 true; \
1595 fi
1596
75205f78
DD
1597.PHONY: check-c++
1598check-c++:
1599 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84
NC
1600 r=`${PWD}`; export r; \
1601 s=`cd $(srcdir); ${PWD}`; export s; \
75205f78
DD
1602 $(SET_LIB_PATH) \
1603 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) check-c++); \
1604 $(MAKE) check-target-libstdc++-v3; \
1605 else \
1606 true; \
1607 fi
1608
252b5132
RH
1609.PHONY: install-gcc
1610install-gcc:
1611 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84
NC
1612 r=`${PWD}`; export r; \
1613 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1614 $(SET_LIB_PATH) \
1615 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) install); \
1616 else \
1617 true; \
1618 fi
1619
1620.PHONY: install-gcc-cross
1621install-gcc-cross:
1622 @if [ -f ./gcc/Makefile ] ; then \
d5de0a84
NC
1623 r=`${PWD}`; export r; \
1624 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1625 $(SET_LIB_PATH) \
1626 (cd gcc; $(MAKE) $(GCC_FLAGS_TO_PASS) LANGUAGES="c c++" install); \
1627 else \
1628 true; \
1629 fi
1630# EXPERIMENTAL STUFF
1631# This rule is used to install the modules which use FLAGS_TO_PASS.
1632# To build a target install-X means to cd to X and make install.
1633.PHONY: install-dosrel
1634install-dosrel: installdirs info
1635 @dir=`echo $@ | sed -e 's/install-//'`; \
1636 if [ -f ./$${dir}/Makefile ] ; then \
d5de0a84
NC
1637 r=`${PWD}`; export r; \
1638 s=`cd $(srcdir); ${PWD}`; export s; \
252b5132
RH
1639 $(SET_LIB_PATH) \
1640 (cd $${dir}; $(MAKE) $(FLAGS_TO_PASS) install); \
1641 else \
1642 true; \
1643 fi
1644
1645install-dosrel-fake:
1646
c559bb17
AO
1647ALL_GCC = all-gcc
1648ALL_GCC_C = $(ALL_GCC) all-target-newlib all-target-libgloss
75205f78 1649ALL_GCC_CXX = $(ALL_GCC_C) all-target-libstdc++-v3
252b5132
RH
1650
1651# This is a list of inter-dependencies among modules.
252b5132
RH
1652all-ash:
1653all-autoconf: all-m4 all-texinfo
1654all-automake: all-m4 all-texinfo
1655all-bash:
1656all-bfd: all-libiberty all-intl
1657all-binutils: all-libiberty all-opcodes all-bfd all-flex all-bison all-byacc all-intl
227b9953 1658all-bison: all-texinfo
75205f78 1659configure-target-boehm-gc: $(ALL_GCC_C) configure-target-qthreads
252b5132
RH
1660all-byacc:
1661all-bzip2:
252b5132
RH
1662all-db:
1663all-dejagnu: all-tcl all-expect all-tk
1664all-diff: all-libiberty
252b5132 1665all-etc:
5cec67bf 1666configure-target-examples: $(ALL_GCC_C)
252b5132
RH
1667all-expect: all-tcl all-tk
1668all-fileutils: all-libiberty
1669all-findutils:
1670all-find:
1671all-flex: all-libiberty all-bison all-byacc
1672all-gas: all-libiberty all-opcodes all-bfd all-intl
252b5132 1673all-gawk:
5cec67bf 1674all-gcc: all-bison all-byacc all-binutils all-gas all-ld all-zlib
2809b4b9 1675all-bootstrap: all-libiberty all-texinfo all-bison all-byacc all-binutils all-gas all-ld all-zlib
c66d951e 1676GDB_TK = @GDB_TK@
252b5132
RH
1677all-gdb: all-libiberty all-opcodes all-bfd all-mmalloc all-readline all-bison all-byacc all-sim $(gdbnlmrequirements) $(GDB_TK)
1678all-gettext:
1679all-gnuserv:
373688ac 1680configure-target-gperf: $(ALL_GCC_CXX)
907a7241 1681all-target-gperf: all-target-libiberty all-target-libstdc++-v3
252b5132 1682all-gprof: all-libiberty all-bfd all-opcodes all-intl
ba73c63f 1683all-grep: all-libiberty
e3b0c936 1684all-gui: all-gdb all-libproc
252b5132
RH
1685all-guile:
1686all-gzip: all-libiberty
1687all-hello: all-libiberty
1688all-indent:
252b5132 1689all-intl:
fd8958d5 1690all-itcl: all-tcl all-tk
252b5132 1691all-ld: all-libiberty all-bfd all-opcodes all-bison all-byacc all-flex all-intl
252b5132 1692configure-target-libgloss: $(ALL_GCC)
907a7241 1693all-target-libgloss: configure-target-newlib
fd8958d5 1694all-libgui: all-tcl all-tk all-itcl
252b5132 1695all-libiberty:
49b7683b
DD
1696
1697all-build-libiberty: configure-build-libiberty
1698
5cec67bf 1699configure-target-libffi: $(ALL_GCC_C)
75205f78 1700configure-target-libjava: $(ALL_GCC_C) configure-target-zlib configure-target-boehm-gc configure-target-qthreads configure-target-libffi
907a7241 1701all-target-libjava: all-fastjar all-target-zlib all-target-boehm-gc all-target-qthreads all-target-libffi
5cec67bf 1702configure-target-libstdc++-v3: $(ALL_GCC_C)
907a7241 1703all-target-libstdc++-v3: all-target-libiberty
252b5132 1704all-libtool:
5cec67bf 1705configure-target-libf2c: $(ALL_GCC_C)
907a7241 1706all-target-libf2c: all-target-libiberty
5cec67bf 1707configure-target-libobjc: $(ALL_GCC_C)
907a7241 1708all-target-libobjc: all-target-libiberty
b0dad762 1709all-m4: all-libiberty all-texinfo
252b5132
RH
1710all-make: all-libiberty
1711all-mmalloc:
1712configure-target-newlib: $(ALL_GCC)
5cec67bf 1713configure-target-libtermcap: $(ALL_GCC_C)
cdb9e2b8 1714all-opcodes: all-bfd all-libiberty
252b5132
RH
1715all-patch: all-libiberty
1716all-perl:
1717all-prms: all-libiberty
5cec67bf 1718configure-target-qthreads: $(ALL_GCC_C)
252b5132
RH
1719all-rcs:
1720all-readline:
1721all-recode: all-libiberty
1722all-sed: all-libiberty
1723all-send-pr: all-prms
1724all-shellutils:
8817b92e 1725all-sid: all-tcl all-tk
cdb9e2b8 1726all-sim: all-libiberty all-bfd all-opcodes all-readline
48d19748 1727all-snavigator: all-tcl all-tk all-itcl all-tix all-db all-grep all-libgui
252b5132
RH
1728all-tar: all-libiberty
1729all-tcl:
252b5132
RH
1730all-tclX: all-tcl all-tk
1731all-tk: all-tcl
252b5132
RH
1732all-texinfo: all-libiberty
1733all-textutils:
252b5132 1734all-time:
fd8958d5 1735all-tix: all-tcl all-tk
252b5132 1736all-wdiff:
5cec67bf 1737configure-target-winsup: $(ALL_GCC_C)
907a7241 1738all-target-winsup: all-target-libiberty all-target-libtermcap
252b5132
RH
1739all-uudecode: all-libiberty
1740all-zip:
51601921 1741all-zlib:
5cec67bf 1742configure-target-zlib: $(ALL_GCC_C)
75205f78
DD
1743all-fastjar: all-zlib all-libiberty
1744configure-target-fastjar: configure-target-zlib
1745all-target-fastjar: configure-target-fastjar all-target-zlib all-target-libiberty
5cec67bf 1746configure-target-libiberty: $(ALL_GCC_C)
252b5132
RH
1747all-target: $(ALL_TARGET_MODULES)
1748install-target: $(INSTALL_TARGET_MODULES)
afb8d725 1749install-gdb: install-tcl install-tk install-itcl install-tix install-libgui
8817b92e 1750install-sid: install-tcl install-tk
907a7241
NN
1751
1752# Dependencies of all-target-foo on configure-target-foo.
1753all-target-libstdc++-v3: configure-target-libstdc++-v3
1754all-target-newlib: configure-target-newlib
1755all-target-libf2c: configure-target-libf2c
1756all-target-libobjc: configure-target-libobjc
1757all-target-libtermcap: configure-target-libtermcap
1758all-target-winsup: configure-target-winsup
1759all-target-libgloss: configure-target-libgloss
1760all-target-libiberty: configure-target-libiberty
1761all-target-gperf: configure-target-gperf
1762all-target-examples: configure-target-examples
1763all-target-libffi: configure-target-libffi
1764all-target-libjava: configure-target-libjava
1765all-target-zlib: configure-target-zlib
1766all-target-boehm-gc: configure-target-boehm-gc
1767all-target-qthreads: configure-target-qthreads
1768
1769
252b5132
RH
1770### other supporting targets
1771
1772MAKEDIRS= \
d3d8a9ee
NC
1773 $(DESTDIR)$(prefix) \
1774 $(DESTDIR)$(exec_prefix)
252b5132
RH
1775.PHONY: installdirs
1776installdirs: mkinstalldirs
1777 $(SHELL) $(srcdir)/mkinstalldirs $(MAKEDIRS)
1778
1779dir.info: do-install-info
1780 if [ -f $(srcdir)/texinfo/gen-info-dir ] ; then \
1781 $(srcdir)/texinfo/gen-info-dir $(infodir) $(srcdir)/texinfo/dir.info-template > dir.info.new ; \
1782 mv -f dir.info.new dir.info ; \
1783 else true ; \
1784 fi
1785
1786dist:
1787 @echo "Building a full distribution of this tree isn't done"
1788 @echo "via 'make dist'. Check out the etc/ subdirectory"
1789
1790etags tags: TAGS
1791
1792# Right now this just builds TAGS in each subdirectory. emacs19 has the
1793# ability to use several tags files at once, so there is probably no need
1794# to combine them into one big TAGS file (like CVS 1.3 does). We could
1795# (if we felt like it) have this Makefile write a piece of elisp which
1796# the user could load to tell emacs19 where all the TAGS files we just
1797# built are.
1798TAGS: do-TAGS
1799
14a2a2f1
NN
1800# Rebuilding Makefile.in, using autogen.
1801$(srcdir)/Makefile.in: # $(srcdir)/Makefile.tpl $(srcdir)/Makefile.def
1802 cd $(srcdir) && autogen Makefile.def
1803
252b5132
RH
1804# with the gnu make, this is done automatically.
1805
1806Makefile: Makefile.in configure.in $(host_makefile_frag) $(target_makefile_frag) $(gcc_version_trigger)
1807 $(SHELL) ./config.status
1808
1809#
1810# Support for building net releases
1811
1812# Files in devo used in any net release.
1813# ChangeLog omitted because it may refer to files which are not in this
1814# distribution (perhaps it would be better to include it anyway).
1815DEVO_SUPPORT= README Makefile.in configure configure.in \
1816 config.guess config.if config.sub config move-if-change \
1817 mpw-README mpw-build.in mpw-config.in mpw-configure mpw-install \
1818 COPYING COPYING.LIB install-sh config-ml.in symlink-tree \
97f60b31 1819 mkinstalldirs ltconfig ltmain.sh missing ylwrap \
5cec67bf 1820 libtool.m4 gettext.m4 ltcf-c.sh ltcf-cxx.sh ltcf-gcj.sh
252b5132
RH
1821
1822# Files in devo/etc used in any net release.
1823# ChangeLog omitted because it may refer to files which are not in this
1824# distribution (perhaps it would be better to include it anyway).
1825ETC_SUPPORT= Makefile.in configure configure.in standards.texi \
ebf0fa2e
AJ
1826 make-stds.texi standards.info* configure.texi configure.info* \
1827 configbuild.* configdev.*
1828
252b5132
RH
1829
1830# When you use `make setup-dirs' or `make taz' you should always redefine
1831# this macro.
1832SUPPORT_FILES = list-of-support-files-for-tool-in-question
1833
b35ece4e
AC
1834# NOTE: No double quotes in the below. It is used within shell script
1835# as VER="$(VER)"
1107dce2
AM
1836VER = ` if grep 'AM_INIT_AUTOMAKE.*BFD_VERSION' $(TOOL)/configure.in >/dev/null 2>&1; then \
1837 sed < bfd/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'; \
1838 elif grep AM_INIT_AUTOMAKE $(TOOL)/configure.in >/dev/null 2>&1; then \
b35ece4e 1839 sed < $(TOOL)/configure.in -n 's/AM_INIT_AUTOMAKE[^,]*, *\([^)]*\))/\1/p'; \
31a8b634
AC
1840 elif test -f $(TOOL)/version.in; then \
1841 head -1 $(TOOL)/version.in; \
1842 elif grep VERSION $(TOOL)/Makefile.in > /dev/null 2>&1; then \
b35ece4e 1843 sed < $(TOOL)/Makefile.in -n 's/^VERSION *= *//p'; \
31a8b634
AC
1844 else \
1845 echo VERSION; \
b35ece4e
AC
1846 fi`
1847PACKAGE = $(TOOL)
252b5132 1848
b35ece4e 1849.PHONY: taz
c1b640f7 1850taz: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
b35ece4e
AC
1851 $(MAKE) -f Makefile.in do-proto-toplev \
1852 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
fd751128 1853 MD5PROG="$(MD5PROG)" \
b35ece4e
AC
1854 SUPPORT_FILES="$(SUPPORT_FILES)"
1855 $(MAKE) -f Makefile.in do-md5sum \
1856 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
fd751128 1857 MD5PROG="$(MD5PROG)" \
b35ece4e 1858 SUPPORT_FILES="$(SUPPORT_FILES)"
bbf6e9e3
AC
1859 $(MAKE) -f Makefile.in do-tar \
1860 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1861 MD5PROG="$(MD5PROG)" \
1862 SUPPORT_FILES="$(SUPPORT_FILES)"
1863 $(MAKE) -f Makefile.in do-bz2 \
b35ece4e 1864 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
fd751128 1865 MD5PROG="$(MD5PROG)" \
b35ece4e
AC
1866 SUPPORT_FILES="$(SUPPORT_FILES)"
1867
bbf6e9e3
AC
1868.PHONY: gdb-tar
1869gdb-tar: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
b5a23627
AC
1870 $(MAKE) -f Makefile.in do-proto-toplev \
1871 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1872 MD5PROG="$(MD5PROG)" \
1873 SUPPORT_FILES="$(SUPPORT_FILES)"
1874 $(MAKE) -f Makefile.in do-md5sum \
1875 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1876 MD5PROG="$(MD5PROG)" \
1877 SUPPORT_FILES="$(SUPPORT_FILES)"
1878 $(MAKE) -f Makefile.in do-djunpack \
1879 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1880 MD5PROG="$(MD5PROG)" \
1881 SUPPORT_FILES="$(SUPPORT_FILES)"
bbf6e9e3
AC
1882 $(MAKE) -f Makefile.in do-tar \
1883 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1884 MD5PROG="$(MD5PROG)" \
1885 SUPPORT_FILES="$(SUPPORT_FILES)"
1886
1887.PHONY: gdb-taz
1888gdb-taz: gdb-tar $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
1889 $(MAKE) -f Makefile.in gdb-tar \
1890 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
1891 MD5PROG="$(MD5PROG)" \
1892 SUPPORT_FILES="$(SUPPORT_FILES)"
1893 $(MAKE) -f Makefile.in do-bz2 \
b35ece4e 1894 TOOL=$(TOOL) PACKAGE="$(PACKAGE)" VER="$(VER)" \
fd751128 1895 MD5PROG="$(MD5PROG)" \
b35ece4e
AC
1896 SUPPORT_FILES="$(SUPPORT_FILES)"
1897
1898.PHONY: do-proto-toplev
1899do-proto-toplev: $(DEVO_SUPPORT) $(SUPPORT_FILES) texinfo/texinfo.tex
1900 echo "==> Making $(PACKAGE)-$(VER)/"
252b5132
RH
1901 # Take out texinfo from a few places.
1902 sed -e '/^all\.normal: /s/\all-texinfo //' \
1903 -e '/^ install-texinfo /d' \
1904 <Makefile.in >tmp
1905 mv -f tmp Makefile.in
1906 #
1907 ./configure sun4
1908 [ -z "$(CONFIGURE_TARGET_MODULES)" ] \
5cec67bf
AO
1909 || $(MAKE) $(CONFIGURE_TARGET_MODULES) \
1910 ALL_GCC="" ALL_GCC_C="" ALL_GCC_CXX="" \
252b5132
RH
1911 CC_FOR_TARGET="$(CC)" CXX_FOR_TARGET="$(CXX)"
1912 # Make links, and run "make diststuff" or "make info" when needed.
1913 rm -rf proto-toplev ; mkdir proto-toplev
1914 set -e ; dirs="$(TOOL) $(DEVO_SUPPORT) $(SUPPORT_FILES)" ; \
1915 for d in $$dirs ; do \
1916 if [ -d $$d ]; then \
1917 if [ ! -f $$d/Makefile ] ; then true ; \
1918 elif grep '^diststuff:' $$d/Makefile >/dev/null ; then \
1919 (cd $$d ; $(MAKE) diststuff ) || exit 1 ; \
1920 elif grep '^info:' $$d/Makefile >/dev/null ; then \
1921 (cd $$d ; $(MAKE) info ) || exit 1 ; \
1922 fi ; \
1923 if [ -d $$d/proto-$$d.dir ]; then \
1924 ln -s ../$$d/proto-$$d.dir proto-toplev/$$d ; \
1925 else \
1926 ln -s ../$$d proto-toplev/$$d ; \
1927 fi ; \
1928 else ln -s ../$$d proto-toplev/$$d ; fi ; \
1929 done
5cec67bf 1930 cd etc && $(MAKE) info
252b5132
RH
1931 $(MAKE) distclean
1932 #
1933 mkdir proto-toplev/etc
1934 (cd proto-toplev/etc; \
1935 for i in $(ETC_SUPPORT); do \
1936 ln -s ../../etc/$$i . ; \
1937 done)
1938 #
1939 # Take out texinfo from configurable dirs
1940 rm proto-toplev/configure.in
1941 sed -e '/^host_tools=/s/texinfo //' \
1942 <configure.in >proto-toplev/configure.in
1943 #
1944 mkdir proto-toplev/texinfo
1945 ln -s ../../texinfo/texinfo.tex proto-toplev/texinfo/
252b5132
RH
1946 if test -r texinfo/util/tex3patch ; then \
1947 mkdir proto-toplev/texinfo/util && \
1948 ln -s ../../../texinfo/util/tex3patch proto-toplev/texinfo/util ; \
1949 else true; fi
1950 chmod -R og=u . || chmod og=u `find . -print`
b35ece4e 1951 #
43e64072
NC
1952 # Create .gmo files from .po files.
1953 for f in `find . -name '*.po' -type f -print`; do \
1954 msgfmt -o `echo $$f | sed -e 's/\.po$$/.gmo/'` $$f ; \
1955 done
1956 #
b35ece4e
AC
1957 -rm -f $(PACKAGE)-$(VER)
1958 ln -s proto-toplev $(PACKAGE)-$(VER)
252b5132 1959
bbf6e9e3
AC
1960.PHONY: do-tar
1961do-tar:
1962 echo "==> Making $(PACKAGE)-$(VER).tar"
1963 -rm -f $(PACKAGE)-$(VER).tar
82b43a09
AC
1964 find $(PACKAGE)-$(VER) -follow -name CVS -prune -o -type f -print \
1965 | tar cTfh - $(PACKAGE)-$(VER).tar
bbf6e9e3
AC
1966
1967.PHONY: do-bz2
1968do-bz2:
1969 echo "==> Bzipping $(PACKAGE)-$(VER).tar.bz2"
1970 -rm -f $(PACKAGE)-$(VER).tar.bz2
6dcbc97b 1971 $(BZIPPROG) -v -9 $(PACKAGE)-$(VER).tar
252b5132 1972
b35ece4e
AC
1973.PHONY: do-md5sum
1974do-md5sum:
1975 echo "==> Adding md5 checksum to top-level directory"
82b43a09
AC
1976 cd proto-toplev && find * -follow -name CVS -prune -o -type f -print \
1977 | xargs $(MD5PROG) > ../md5.sum
b35ece4e
AC
1978 mv md5.sum proto-toplev
1979
b5a23627
AC
1980.PHONY: do-djunpack
1981do-djunpack:
1982 echo "==> Adding updated djunpack.bat to top-level directory"
1983 echo - 's /gdb-[0-9\.]*/gdb-'"$(VER)"'/'
1984 sed < djunpack.bat > djunpack.new \
1985 -e 's/gdb-[0-9][0-9\.]*/gdb-'"$(VER)"'/'
1986 mv djunpack.new djunpack.bat
1987 -rm -f proto-toplev/djunpack.bat
1988 ln -s ../djunpack.bat proto-toplev/djunpack.bat
1989
c376f4ed 1990TEXINFO_SUPPORT= texinfo/texinfo.tex
252b5132
RH
1991DIST_SUPPORT= $(DEVO_SUPPORT) $(TEXINFO_SUPPORT)
1992
c376f4ed 1993.PHONY: gas.tar.bz2
71141bb6 1994GAS_SUPPORT_DIRS= bfd include libiberty opcodes intl setup.com makefile.vms mkdep
c376f4ed 1995gas.tar.bz2: $(DIST_SUPPORT) $(GAS_SUPPORT_DIRS) gas
1107dce2 1996 $(MAKE) -f Makefile.in taz TOOL=gas \
fd751128 1997 MD5PROG="$(MD5PROG)" \
252b5132
RH
1998 SUPPORT_FILES="$(GAS_SUPPORT_DIRS)"
1999
2000# The FSF "binutils" release includes gprof and ld.
c376f4ed 2001.PHONY: binutils.tar.bz2
71141bb6 2002BINUTILS_SUPPORT_DIRS= bfd gas include libiberty opcodes ld gprof intl setup.com makefile.vms mkdep
c376f4ed 2003binutils.tar.bz2: $(DIST_SUPPORT) $(BINUTILS_SUPPORT_DIRS) binutils
1107dce2 2004 $(MAKE) -f Makefile.in taz TOOL=binutils \
fd751128 2005 MD5PROG="$(MD5PROG)" \
08d836d6 2006 SUPPORT_FILES="$(BINUTILS_SUPPORT_DIRS)"
252b5132 2007
c376f4ed 2008.PHONY: gas+binutils.tar.bz2
252b5132 2009GASB_SUPPORT_DIRS= $(GAS_SUPPORT_DIRS) binutils ld gprof
c376f4ed 2010gas+binutils.tar.bz2: $(DIST_SUPPORT) $(GASB_SUPPORT_DIRS) gas
1107dce2 2011 $(MAKE) -f Makefile.in taz TOOL=gas \
fd751128 2012 MD5PROG="$(MD5PROG)" \
08d836d6 2013 SUPPORT_FILES="$(GASB_SUPPORT_DIRS)"
252b5132 2014
252b5132 2015GNATS_SUPPORT_DIRS=include libiberty send-pr
c376f4ed 2016gnats.tar.bz2: $(DIST_SUPPORT) $(GNATS_SUPPORT_DIRS) gnats
252b5132 2017 $(MAKE) -f Makefile.in taz TOOL=gnats \
fd751128 2018 MD5PROG="$(MD5PROG)" \
252b5132
RH
2019 SUPPORT_FILES="$(GNATS_SUPPORT_DIRS)"
2020
c376f4ed 2021.PHONY: gdb.tar.bz2
252b5132 2022GDB_SUPPORT_DIRS= bfd include libiberty mmalloc opcodes readline sim utils intl
c376f4ed 2023gdb.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
b35ece4e 2024 $(MAKE) -f Makefile.in gdb-taz TOOL=gdb \
fd751128 2025 MD5PROG="$(MD5PROG)" \
6dcbc97b 2026 SUPPORT_FILES="$(GDB_SUPPORT_DIRS)"
bbf6e9e3
AC
2027.PHONY: gdb.tar
2028gdb.tar: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
2029 $(MAKE) -f Makefile.in gdb-tar TOOL=gdb \
2030 MD5PROG="$(MD5PROG)" \
2031 SUPPORT_FILES="$(GDB_SUPPORT_DIRS)"
6dcbc97b 2032
6dcbc97b 2033DEJAGNU_SUPPORT_DIRS= tcl expect libiberty
bbf6e9e3 2034.PHONY: dejagnu.tar.bz2
6dcbc97b
AC
2035dejagnu.tar.bz2: $(DIST_SUPPORT) $(DEJAGNU_SUPPORT_DIRS) dejagnu
2036 $(MAKE) -f Makefile.in taz TOOL=dejagnu \
fd751128 2037 MD5PROG="$(MD5PROG)" \
6dcbc97b
AC
2038 SUPPORT_FILES="$(DEJAGNU_SUPPORT_DIRS)"
2039
2040.PHONY: gdb+dejagnu.tar.bz2
2041GDBD_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl expect dejagnu
2042gdb+dejagnu.tar.bz2: $(DIST_SUPPORT) $(GDBD_SUPPORT_DIRS) gdb
b35ece4e 2043 $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=gdb+dejagnu \
fd751128 2044 MD5PROG="$(MD5PROG)" \
6dcbc97b 2045 SUPPORT_FILES="$(GDBD_SUPPORT_DIRS)"
bbf6e9e3
AC
2046.PHONY: gdb+dejagnu.tar
2047gdb+dejagnu.tar: $(DIST_SUPPORT) $(GDBD_SUPPORT_DIRS) gdb
2048 $(MAKE) -f Makefile.in gdb-tar TOOL=gdb PACKAGE=gdb+dejagnu \
2049 MD5PROG="$(MD5PROG)" \
2050 SUPPORT_FILES="$(GDBD_SUPPORT_DIRS)"
6dcbc97b
AC
2051
2052.PHONY: insight.tar.bz2
2053INSIGHT_SUPPORT_DIRS= $(GDB_SUPPORT_DIRS) tcl tk itcl tix libgui
2054insight.tar.bz2: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
b35ece4e 2055 $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE=insight \
fd751128 2056 MD5PROG="$(MD5PROG)" \
6dcbc97b 2057 SUPPORT_FILES="$(INSIGHT_SUPPORT_DIRS)"
bbf6e9e3
AC
2058.PHONY: insight.tar
2059insight.tar: $(DIST_SUPPORT) $(GDB_SUPPORT_DIRS) gdb
2060 $(MAKE) -f Makefile.in gdb-tar TOOL=gdb PACKAGE=insight \
2061 MD5PROG="$(MD5PROG)" \
2062 SUPPORT_FILES="$(INSIGHT_SUPPORT_DIRS)"
6dcbc97b
AC
2063
2064.PHONY: insight+dejagnu.tar.bz2
2065INSIGHTD_SUPPORT_DIRS= $(INSIGHT_SUPPORT_DIRS) expect dejagnu
2066insight+dejagnu.tar.bz2: $(DIST_SUPPORT) $(INSIGHTD_SUPPORT_DIRS) gdb
b35ece4e 2067 $(MAKE) -f Makefile.in gdb-taz TOOL=gdb PACKAGE="insight+dejagnu" \
fd751128 2068 MD5PROG="$(MD5PROG)" \
6dcbc97b 2069 SUPPORT_FILES="$(INSIGHTD_SUPPORT_DIRS)"
bbf6e9e3
AC
2070.PHONY: insight+dejagnu.tar
2071insight+dejagnu.tar: $(DIST_SUPPORT) $(INSIGHTD_SUPPORT_DIRS) gdb
2072 $(MAKE) -f Makefile.in gdb-tar TOOL=gdb PACKAGE="insight+dejagnu" \
2073 MD5PROG="$(MD5PROG)" \
2074 SUPPORT_FILES="$(INSIGHTD_SUPPORT_DIRS)"
252b5132 2075
c376f4ed 2076.PHONY: newlib.tar.bz2
252b5132
RH
2077NEWLIB_SUPPORT_DIRS=libgloss
2078# taz configures for the sun4 target which won't configure newlib.
2079# We need newlib configured so that the .info files are made.
2080# Unfortunately, it is not enough to just configure newlib separately:
2081# taz will build the .info files but since SUBDIRS won't contain newlib,
2082# distclean won't be run (leaving Makefile, config.status, and the tmp files
2083# used in building the .info files, eg: *.def, *.ref).
2084# The problem isn't solvable however without a lot of extra work because
2085# target libraries are built in subdir $(target_alias) which gets nuked during
2086# the make distclean. For now punt on the issue of shipping newlib info files
2087# with newlib net releases and wait for a day when some native target (sun4?)
2088# supports newlib (if only minimally).
c376f4ed 2089newlib.tar.bz2: $(DIST_SUPPORT) $(NEWLIB_SUPPORT_DIRS) newlib
252b5132 2090 $(MAKE) -f Makefile.in taz TOOL=newlib \
fd751128 2091 MD5PROG="$(MD5PROG)" \
252b5132
RH
2092 SUPPORT_FILES="$(NEWLIB_SUPPORT_DIRS)" \
2093 DEVO_SUPPORT="$(DEVO_SUPPORT) COPYING.NEWLIB" newlib
2094
2095.NOEXPORT:
2096MAKEOVERRIDES=
2097
2098# end of Makefile.in
This page took 0.231251 seconds and 4 git commands to generate.