source: branches/libc-0.6/src/gcc/Makefile.tpl@ 2695

Last change on this file since 2695 was 1389, checked in by bird, 21 years ago

Initial revision

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