OSDN Git Service

* Makefile.in: Update.
[pf3gnuchains/gcc-fork.git] / gcc / Makefile.in
1 # Makefile for GNU C compiler.
2 #   Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3 #   1998, 1999, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4
5 #This file is part of GCC.
6
7 #GCC is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
10 #any later version.
11
12 #GCC is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #GNU General Public License for more details.
16
17 #You should have received a copy of the GNU General Public License
18 #along with GCC; see the file COPYING.  If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330,
20 #Boston MA 02111-1307, USA.
21
22 # The targets for external use include:
23 # all, doc, proto, install, install-cross, install-cross-rest,
24 # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
25 # stage1, stage2, stage3, stage4.
26
27 # This is the default target.
28 all:
29
30 # Suppress smart makes who think they know how to automake Yacc files
31 .y.c:
32
33 # Directory where sources are, from where we are.
34 srcdir = @srcdir@
35 VPATH = @srcdir@
36
37 # Pointer to the GCC Project website
38 website=http://gcc.gnu.org
39
40 # These directories contain files that are provided as part of a FSF tarball,
41 # but not provided in CVS.  Some GCC integrators like to use the CVS sources
42 # but keep them read-only during a build, and so change these variables
43 # from these defaults.
44 parsedir = $(srcdir)
45 docobjdir = $(srcdir)/doc
46
47 # Variables that exist for you to override.
48 # See below for how to change them for certain systems.
49
50 # List of language subdirectories.
51 # This is overridden by configure.
52 SUBDIRS =@subdirs@
53
54 # Selection of languages to be made.
55 # This is overridden by configure.
56 CONFIG_LANGUAGES = @all_languages@
57 LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)
58
59 # Selection of languages to be made during stage1 build.
60 # This is overridden by configure.
61 BOOT_LANGUAGES = c @all_boot_languages@
62
63 # Various ways of specifying flags for compilations:
64 # CFLAGS is for the user to override to, e.g., do a cross build with -O2.
65 # For recursive  bootstrap builds CFLAGS is used to pass in STAGE1_CFLAGS
66 # or BOOT_CFLAGS
67 # STAGE1_CFLAGS is set by configure on some targets or passed from toplevel
68 # and sets the CFLAGS passed to stage1 of a bootstrap compilation.
69 # BOOT_CFLAGS is the value of CFLAGS to pass to the stage2, stage3 and stage4
70 # bootstrap compilations.
71 # XCFLAGS is used for most compilations but not when using the GCC just built.
72 # TCFLAGS is used for compilations with the GCC just built.
73 XCFLAGS =
74 TCFLAGS =
75 CFLAGS = -g
76 STAGE1_CFLAGS = -g @stage1_cflags@
77 BOOT_CFLAGS = -g -O2
78
79 # Flags to determine code coverage. When coverage is disabled, this will
80 # contain the optimization flags, as you normally want code coverage
81 # without optimization. The -dumpbase $@ makes sure that the auxilary
82 # files end up near the object files.
83 COVERAGE_FLAGS = @coverage_flags@
84 coverageexts = .{da,bbg}
85
86 # The warning flags are separate from BOOT_CFLAGS because people tend to
87 # override optimization flags and we'd like them to still have warnings
88 # turned on.  These flags are also used to pass other stage dependent
89 # flags from configure.  The user is free to explicitly turn these flags
90 # off if they wish.
91 # LOOSE_WARN are the warning flags to use when compiling something
92 # which is only compiled with gcc, such as libgcc and the frontends
93 # other than C.
94 # STRICT_WARN and STRICT2_WARN are the additional warning flags to
95 # apply to the back end and the C front end, which may be compiled
96 # with other compilers.  This is partially controlled by configure in
97 # stage1, as not all versions of gcc understand -Wno-long-long.
98 LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
99 STRICT_WARN = -Wtraditional @strict1_warn@
100 STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long
101
102 # This is set by --enable-checking.  The idea is to catch forgotten
103 # "extern" tags in header files.
104 NOCOMMON_FLAG = @nocommon_flag@
105
106 # These are set by --enable-checking=valgrind.
107 RUN_GEN = @valgrind_command@
108 VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
109
110 # This is how we control whether or not the additional warnings are applied.
111 .-warn = $(STRICT_WARN)
112 GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $(WERROR) $($@-warn)
113
114 # These files are to have -Werror bypassed in stage2:
115 # These are very hard to completely clean due to target complexities.
116 varasm.o-warn = -Wno-error
117 gcc.o-warn = -Wno-error
118 insn-conditions.o-warn = -Wno-error
119 @out_object_file@-warn = -Wno-error
120 # Bison-1.75 output often yields (harmless) -Wtraditional warnings
121 gengtype-yacc.o-warn = -Wno-error
122 c-parse.o-warn = -Wno-error
123
124 # All warnings have to be shut off in stage1 if the compiler used then
125 # isn't gcc; configure determines that.  WARN_CFLAGS will be either
126 # $(GCC_WARN_CFLAGS), or nothing.
127 WARN_CFLAGS = @warn_cflags@
128
129 # These exists to be overridden by the x-* and t-* files, respectively.
130 X_CFLAGS =
131 T_CFLAGS =
132
133 X_CPPFLAGS =
134 T_CPPFLAGS =
135
136 ADAC = @ADAC@
137 AWK = @AWK@
138 CC = @CC@
139 BISON = @BISON@
140 BISONFLAGS =
141 FLEX = @FLEX@
142 FLEXFLAGS =
143 AR = ar
144 AR_FLAGS = rc
145 DLLTOOL = dlltool
146 RANLIB = @RANLIB@
147 SHELL = @SHELL@
148 # pwd command to use.  Allow user to override default by setting PWDCMD in
149 # the environment to account for automounters.  The make variable must not
150 # be called PWDCMD, otherwise the value set here is passed to make
151 # subprocesses and overrides the setting from the user's environment.
152 PWD = $${PWDCMD-pwd}
153 # on sysV, define this as cp.
154 INSTALL = @INSTALL@
155 # Some systems may be missing symbolic links, regular links, or both.
156 # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
157 LN=@LN@
158 LN_S=@LN_S@
159 # These permit overriding just for certain files.
160 INSTALL_PROGRAM = @INSTALL_PROGRAM@
161 INSTALL_DATA = @INSTALL_DATA@
162 INSTALL_SCRIPT = @INSTALL@
163 MAKEINFO = @MAKEINFO@
164 MAKEINFOFLAGS =
165 TEXI2DVI = texi2dvi
166 TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
167 POD2MAN = pod2man --center="GNU" --release="gcc-$(version)"
168 # For GNUmake: let us decide what gets passed to recursive makes.
169 MAKEOVERRIDES =
170 @SET_MAKE@
171 # Some compilers can't handle cc -c blah.c -o foo/blah.o.
172 # In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
173 OUTPUT_OPTION = @OUTPUT_OPTION@
174
175 # Some versions of `touch' (such as the version on Solaris 2.8)
176 # do not correctly set the timestamp due to buggy versions of `utime'
177 # in the kernel.  So, we use `echo' instead.
178 STAMP = echo timestamp >
179
180 # This is where we get zlib from.  zlibdir is -L../zlib and zlibinc is
181 # -I../zlib, unless we were configured with --with-system-zlib, in which
182 # case both are empty.
183 ZLIB = @zlibdir@ -lz
184 ZLIBINC = @zlibinc@
185
186 # Substitution type for target's getgroups 2nd arg.
187 TARGET_GETGROUPS_T = @TARGET_GETGROUPS_T@
188
189 # Target to use when installing include directory.  Either
190 # install-headers-tar, install-headers-cpio or install-headers-cp.
191 INSTALL_HEADERS_DIR = @build_install_headers_dir@
192
193 # Header files that are made available under the same name
194 # to programs compiled with GCC.
195 USER_H = $(srcdir)/ginclude/float.h \
196          $(srcdir)/ginclude/iso646.h \
197          $(srcdir)/ginclude/stdarg.h \
198          $(srcdir)/ginclude/stdbool.h \
199          $(srcdir)/ginclude/stddef.h \
200          $(srcdir)/ginclude/varargs.h \
201          $(srcdir)/unwind.h \
202          $(EXTRA_HEADERS)
203
204 # The GCC to use for compiling libgcc.a and crt*.o.
205 # Usually the one we just built.
206 # Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
207 GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld
208
209 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
210 # It omits XCFLAGS, and specifies -B./.
211 # It also specifies -isystem ./include to find, e.g., stddef.h.
212 GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -isystem ./include $(TCFLAGS)
213
214 # Sed command to transform gcc to installed name.  Overwritten by configure.
215 program_transform_name = @program_transform_name@
216 program_transform_cross_name = s,^,$(target_alias)-,
217
218 build_canonical = @build_canonical@
219 host_canonical = @host_canonical@
220
221 # Tools to use when building a cross-compiler.
222 # These are used because `configure' appends `cross-make'
223 # to the makefile when making a cross-compiler.
224
225 # Use the tools from the build tree, if they are available.
226
227 # objdir is set by configure.
228 objdir = @objdir@
229
230 AR_FOR_TARGET = ` \
231   if [ -f $(objdir)/../binutils/ar ] ; then \
232     echo $(objdir)/../binutils/ar ; \
233   else \
234     if [ "$(host_canonical)" = "$(target)" ] ; then \
235       echo ar; \
236     else \
237        t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
238     fi; \
239   fi`
240 AR_FLAGS_FOR_TARGET =
241 AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
242 AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
243 RANLIB_FOR_TARGET = ` \
244   if [ -f $(objdir)/../binutils/ranlib ] ; then \
245     echo $(objdir)/../binutils/ranlib ; \
246   else \
247     if [ "$(host_canonical)" = "$(target)" ] ; then \
248       echo $(RANLIB); \
249     else \
250        t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
251     fi; \
252   fi`
253 NM_FOR_TARGET = ` \
254   if [ -f ./nm ] ; then \
255     echo ./nm ; \
256   elif [ -f $(objdir)/../binutils/nm-new ] ; then \
257     echo $(objdir)/../binutils/nm-new ; \
258   else \
259     if [ "$(host_canonical)" = "$(target)" ] ; then \
260       echo nm; \
261     else \
262        t='$(program_transform_cross_name)'; echo nm | sed -e $$t ; \
263     fi; \
264   fi`
265
266 # Where to find some libiberty headers.
267 HASHTAB_H   = $(srcdir)/../include/hashtab.h
268 OBSTACK_H   = $(srcdir)/../include/obstack.h
269 SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
270 FIBHEAP_H   = $(srcdir)/../include/fibheap.h
271 PARTITION_H = $(srcdir)/../include/partition.h
272
273 # Default native SYSTEM_HEADER_DIR, to be overridden by targets.
274 NATIVE_SYSTEM_HEADER_DIR = /usr/include
275 # Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
276 CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
277
278 # autoconf sets SYSTEM_HEADER_DIR to one of the above.
279 SYSTEM_HEADER_DIR = @SYSTEM_HEADER_DIR@
280
281 # Control whether to run fixproto and fixincludes.
282 STMP_FIXPROTO = @STMP_FIXPROTO@
283 STMP_FIXINC = @STMP_FIXINC@
284
285 # Test to see whether <limits.h> exists in the system header files.
286 LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
287
288 # Directory for prefix to system directories, for
289 # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
290 TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
291
292 target=@target@
293 target_alias=@target_alias@
294 xmake_file=@dep_host_xmake_file@
295 tmake_file=@dep_tmake_file@
296 out_file=$(srcdir)/config/@out_file@
297 out_object_file=@out_object_file@
298 md_file=$(srcdir)/config/@md_file@
299 tm_file=@tm_file@
300 tm_file_list=@tm_file_list@
301 tm_defines=@tm_defines@
302 tm_p_file_list=@tm_p_file_list@
303 tm_p_file=@tm_p_file@
304 build_xm_file_list=@build_xm_file_list@
305 build_xm_file=@build_xm_file@
306 build_xm_defines=@build_xm_defines@
307 host_xm_file_list=@host_xm_file_list@
308 host_xm_file=@host_xm_file@
309 host_xm_defines=@host_xm_defines@
310 xm_file=@xm_file@
311 xm_defines=@xm_defines@
312 lang_specs_files=@lang_specs_files@
313 lang_options_files=@lang_options_files@
314 lang_tree_files=@lang_tree_files@
315 target_cpu_default=@target_cpu_default@
316 GCC_THREAD_FILE=@thread_file@
317 OBJC_BOEHM_GC=@objc_boehm_gc@
318 GTHREAD_FLAGS=@gthread_flags@
319 host_hook_obj=@out_host_hook_obj@
320 # Be prepared for gcc2 merges.
321 gcc_version=@gcc_version@
322 gcc_version_trigger=@gcc_version_trigger@
323 version=$(gcc_version)
324 mainversion=`grep version_string $(srcdir)/version.c | sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/'`
325
326 # Common prefix for installation directories.
327 # NOTE: This directory must exist when you start installation.
328 prefix = @prefix@
329 # Directory in which to put localized header files. On the systems with
330 # gcc as the native cc, `local_prefix' may not be `prefix' which is
331 # `/usr'.
332 # NOTE: local_prefix *should not* default from prefix.
333 local_prefix = @local_prefix@
334 # Directory in which to put host dependent programs and libraries
335 exec_prefix = @exec_prefix@
336 # Directory in which to put the executable for the command `gcc'
337 bindir = @bindir@
338 # Directory in which to put the directories used by the compiler.
339 libdir = @libdir@
340 # Directory in which the compiler finds executables, libraries, etc.
341 libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
342 # Used to produce a relative $(gcc_tooldir) in gcc.o
343 unlibsubdir = ../../..
344 # Directory in which to find other cross-compilation tools and headers.
345 dollar = @dollar@
346 # Used in install-cross.
347 gcc_tooldir = @gcc_tooldir@
348 # Used to install the shared libgcc.
349 slibdir = @slibdir@
350 # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
351 build_tooldir = $(exec_prefix)/$(target_alias)
352 # Directory in which the compiler finds target-independent g++ includes.
353 gcc_gxx_include_dir = @gcc_gxx_include_dir@
354 # Directory to search for site-specific includes.
355 local_includedir = $(local_prefix)/include
356 includedir = $(prefix)/include
357 # where the info files go
358 infodir = @infodir@
359 # Where cpp should go besides $prefix/bin if necessary
360 cpp_install_dir = @cpp_install_dir@
361 # where the locale files go
362 datadir = @datadir@
363 localedir = $(datadir)/locale
364 # Extension (if any) to put in installed man-page filename.
365 man1ext = .1
366 man7ext = .7
367 objext = .o
368 exeext = @host_exeext@
369 build_exeext = @build_exeext@
370
371 # Directory in which to put man pages.
372 mandir = @mandir@
373 man1dir = $(mandir)/man1
374 man7dir = $(mandir)/man7
375 # Dir for temp files.
376 tmpdir = /tmp
377
378 # Top build directory, relative to here.
379 top_builddir = .
380
381 # Whether we were configured with NLS.
382 USE_NLS = @USE_NLS@
383
384 # Internationalization library.
385 INTLLIBS = @INTLLIBS@
386 INTLDEPS = @INTLDEPS@
387
388 # Character encoding conversion library.
389 LIBICONV = @LIBICONV@
390
391 # List of internationalization subdirectories.
392 INTL_SUBDIRS = intl
393
394 # The GC method to be used on this system.
395 GGC=@GGC@.o
396
397 # If a supplementary library is being used for the GC.
398 GGC_LIB=
399
400 # libgcc.a may be built directly or via stmp-multilib,
401 # and installed likewise.  Overridden by t-fragment.
402 LIBGCC = libgcc.a
403 INSTALL_LIBGCC = install-libgcc
404
405 # Options to use when compiling libgcc2.a.
406 #
407 LIBGCC2_DEBUG_CFLAGS = -g
408 LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED @inhibit_libc@
409
410 # Additional options to use when compiling libgcc2.a.
411 # Some targets override this to -isystem include
412 LIBGCC2_INCLUDES =
413
414 # Additional target-dependent options for compiling libgcc2.a.
415 TARGET_LIBGCC2_CFLAGS =
416
417 # Options to use when compiling crtbegin/end.
418 CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
419   -finhibit-size-directive -fno-inline-functions -fno-exceptions \
420   -fno-zero-initialized-in-bss -fno-unit-at-a-time
421
422 # Additional sources to handle exceptions; overridden by targets as needed.
423 LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde.c \
424   $(srcdir)/unwind-sjlj.c
425 LIB2ADDEHDEP = unwind.inc unwind-dw2-fde.h
426
427 # nm flags to list global symbols in libgcc object files.
428 SHLIB_NM_FLAGS = -pg
429
430 # List of extra executables that should be compiled for this target machine
431 # that are used for compiling from source code to object code.
432 # The rules for compiling them should be in the t-* file for the machine.
433 EXTRA_PASSES =@extra_passes@
434
435 # Like EXTRA_PASSES, but these are used when linking.
436 EXTRA_PROGRAMS = @extra_programs@
437
438 # List of extra object files that should be compiled for this target machine.
439 # The rules for compiling them should be in the t-* file for the machine.
440 EXTRA_PARTS = @extra_parts@
441
442 # List of extra object files that should be compiled and linked with
443 # compiler proper (cc1, cc1obj, cc1plus).
444 EXTRA_OBJS = @extra_objs@
445
446 # List of extra object files that should be compiled and linked with
447 # the gcc driver.
448 EXTRA_GCC_OBJS =@host_extra_gcc_objs@
449
450 # List of additional header files to install.
451 # Often this is edited directly by `configure'.
452 EXTRA_HEADERS =@extra_headers_list@
453
454 # It is convenient for configure to add the assignment at the beginning,
455 # so don't override it here.
456 USE_COLLECT2 = collect2$(exeext)
457
458 # List of extra C and assembler files to add to static and shared libgcc2.
459 # Assembler files should have names ending in `.asm'.
460 LIB2FUNCS_EXTRA =
461
462 # List of extra C and assembler files to add to static libgcc2.
463 # Assembler files should have names ending in `.asm'.
464 LIB2FUNCS_STATIC_EXTRA =
465
466 # Program to convert libraries.
467 LIBCONVERT =
468
469 # Control whether header files are installed.
470 INSTALL_HEADERS=install-headers install-mkheaders
471
472 # Control whether Info documentation is built and installed.
473 BUILD_INFO = @BUILD_INFO@
474
475 # Control whether manpages generated by texi2pod.pl can be rebuilt.
476 GENERATED_MANPAGES = @GENERATED_MANPAGES@
477
478 # Additional directories of header files to run fixincludes on.
479 # These should be directories searched automatically by default
480 # just as /usr/include is.
481 # *Do not* use this for directories that happen to contain
482 # header files, but are not searched automatically by default.
483 # On most systems, this is empty.
484 OTHER_FIXINCLUDES_DIRS=
485
486 # A list of all the language-specific executables.
487 # This is overridden by configure.
488 COMPILERS = cc1$(exeext) @all_compilers@
489
490 # List of things which should already be built whenever we try to use xgcc
491 # to compile anything (without linking).
492 GCC_PASSES=xgcc$(exeext) cc1$(exeext) specs $(EXTRA_PASSES)
493
494 # List of things which should already be built whenever we try to use xgcc
495 # to link anything.
496 GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
497
498 # Directory to link to, when using the target `maketest'.
499 DIR = ../gcc
500
501 # Flags to use when cross-building GCC.
502 # Prefix to apply to names of object files when using them
503 # to run on the machine we are compiling on.
504 BUILD_PREFIX = @BUILD_PREFIX@
505 # Prefix to apply to names of object files when compiling them
506 # to run on the machine we are compiling on.
507 # The default for this variable is chosen to keep these rules
508 # out of the way of the other rules for compiling the same source files.
509 BUILD_PREFIX_1 = @BUILD_PREFIX_1@
510 # Native compiler for the build machine and its switches.
511 BUILD_CC = @BUILD_CC@
512 BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE
513
514 # Native linker and preprocessor flags.  For x-fragment overrides.
515 BUILD_LDFLAGS=$(LDFLAGS)
516 BUILD_CPPFLAGS=$(ALL_CPPFLAGS)
517
518 # Actual name to use when installing a native compiler.
519 GCC_INSTALL_NAME = `echo gcc|sed '$(program_transform_name)'`
520 GCC_TARGET_INSTALL_NAME = $(target_alias)-`echo gcc|sed '$(program_transform_name)'`
521 CPP_INSTALL_NAME = `echo cpp|sed '$(program_transform_name)'`
522 PROTOIZE_INSTALL_NAME = `echo protoize|sed '$(program_transform_name)'`
523 UNPROTOIZE_INSTALL_NAME = `echo unprotoize|sed '$(program_transform_name)'`
524 GCOV_INSTALL_NAME = `echo gcov|sed '$(program_transform_name)'`
525 GCCBUG_INSTALL_NAME = `echo gccbug|sed '$(program_transform_name)'`
526
527 # Actual name to use when installing a cross-compiler.
528 GCC_CROSS_NAME = `echo gcc|sed '$(program_transform_cross_name)'`
529 CPP_CROSS_NAME = `echo cpp|sed '$(program_transform_cross_name)'`
530 PROTOIZE_CROSS_NAME = `echo protoize|sed '$(program_transform_cross_name)'`
531 UNPROTOIZE_CROSS_NAME = `echo unprotoize|sed '$(program_transform_cross_name)'`
532
533 # Set by autoconf to "all.internal" for a native build, or
534 # "all.cross" to build a cross compiler.
535 ALL = @ALL@
536
537 # Setup the testing framework, if you have one
538 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
539             echo $${rootme}/../expect/expect ; \
540           else echo expect ; fi`
541
542 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
543                echo $${srcdir}/../dejagnu/runtest ; \
544             else echo runtest; fi`
545 RUNTESTFLAGS =
546
547 # Extra symbols for fixproto to define when parsing headers.
548 FIXPROTO_DEFINES =
549
550 # Extra flags to use when compiling crt{begin,end}.o.
551 CRTSTUFF_T_CFLAGS =
552
553 # Extra flags to use when compiling [m]crt0.o.
554 CRT0STUFF_T_CFLAGS =
555
556 # "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
557 T =
558
559 # Should T contain a `=', libgcc.mk will make T_TARGET, setting
560 # $(T_TARGET) to the name of the actual target filename.
561 T_TARGET =
562 T_TARGET : $(T_TARGET)
563
564 # This should name the specs file that we're going to install.  Target
565 # Makefiles may override it and name another file to be generated from
566 # the built-in specs and installed as the default spec, as long as
567 # they also introduce a rule to generate a file name specs, to be used
568 # at build time.
569 SPECS = specs
570
571 # End of variables for you to override.
572
573 # Definition of `all' is here so that new rules inserted by sed
574 # do not specify the default target.
575 # The real definition is under `all.internal' (for native compilers)
576 # or `all.cross' (for cross compilers).
577 all: all.indirect
578
579 # This tells GNU Make version 3 not to put all variables in the environment.
580 .NOEXPORT:
581
582 # GTM_H lists the config files that the generator files depend on,
583 # while TM_H lists the ones ordinary gcc files depend on, which
584 # includes several files generated by those generators.
585 BCONFIG_H = bconfig.h $(build_xm_file_list)
586 CONFIG_H  = config.h  $(host_xm_file_list)
587 TCONFIG_H = tconfig.h $(xm_file_list)
588 TM_P_H    = tm_p.h    $(tm_p_file_list)
589 GTM_H     = tm.h      $(tm_file_list)
590 TM_H      = $(GTM_H) insn-constants.h insn-flags.h
591
592 TARGET_H = target.h
593 HOOKS_H = hooks.h
594 LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
595 TARGET_DEF_H = target-def.h $(HOOKS_H)
596 MACHMODE_H = machmode.h machmode.def @extra_modes_file@
597 RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
598 RTL_H = $(RTL_BASE_H) genrtl.h
599 PARAMS_H = params.h params.def
600 TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def \
601           location.h
602 BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h $(PARTITION_H) \
603           hard-reg-set.h
604 DEMANGLE_H = $(srcdir)/../include/demangle.h
605 RECOG_H = recog.h
606 EXPR_H = expr.h
607 OPTABS_H = optabs.h insn-codes.h
608 REGS_H = regs.h varray.h $(MACHMODE_H)
609 INTEGRATE_H = integrate.h varray.h
610 LOOP_H = loop.h varray.h bitmap.h
611 GCC_H = gcc.h version.h
612 GGC_H = ggc.h gtype-desc.h
613 TIMEVAR_H = timevar.h timevar.def
614 INSN_ATTR_H = insn-attr.h $(srcdir)/insn-addr.h $(srcdir)/varray.h
615 C_COMMON_H = c-common.h $(SPLAY_TREE_H) $(CPPLIB_H)
616 C_TREE_H = c-tree.h $(C_COMMON_H)
617 SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h
618 PREDICT_H = predict.h predict.def
619 CPPLIB_H = cpplib.h line-map.h
620
621 # sed inserts variable overrides after the following line.
622 ####target overrides
623 @target_overrides@
624
625 ####host overrides
626 @host_overrides@
627 #\f
628 # Now figure out from those variables how to compile and link.
629
630 all.indirect: $(ALL)
631
632 # IN_GCC distinguishes between code compiled into GCC itself and other
633 # programs built during a bootstrap.
634 # autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
635 INTERNAL_CFLAGS = -DIN_GCC @CROSS@
636
637 # This is the variable actually used when we compile.
638 # If you change this line, you probably also need to change the definition
639 # of BUILD_CFLAGS in build-make to match.
640 ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \
641   $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@
642
643 # Likewise.
644 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
645
646 # Build and host support libraries.  FORBUILD is either
647 # .. or ../$(build_alias) depending on whether host != build.
648 LIBIBERTY = ../libiberty/libiberty.a
649 BUILD_LIBIBERTY = @FORBUILD@/libiberty/libiberty.a
650
651 # Dependencies on the intl and portability libraries.
652 LIBDEPS= $(INTLDEPS) $(LIBIBERTY)
653
654 # Likewise, for use in the tools that must run on this machine
655 # even if we are cross-building GCC.
656 BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
657
658 # How to link with both our special library facilities
659 # and the system's installed libraries.
660 LIBS =  $(INTLLIBS) @LIBS@ $(LIBIBERTY)
661
662 # Any system libraries needed just for GNAT.
663 SYSLIBS = @GNAT_LIBEXC@
664
665 # Likewise, for use in the tools that must run on this machine
666 # even if we are cross-building GCC.
667 BUILD_LIBS = $(BUILD_LIBIBERTY)
668
669 BUILD_RTL = $(BUILD_PREFIX)rtl.o read-rtl.o $(BUILD_PREFIX)bitmap.o \
670                 $(BUILD_PREFIX)ggc-none.o
671 BUILD_SUPPORT = gensupport.o insn-conditions.o
672 BUILD_EARLY_SUPPORT = gensupport.o dummy-conditions.o
673
674 BUILD_PRINT = print-rtl1.o
675 BUILD_ERRORS = $(BUILD_PREFIX)errors.o
676 BUILD_VARRAY = $(BUILD_PREFIX)varray.o
677
678 # Specify the directories to be searched for header files.
679 # Both . and srcdir are used, in that order,
680 # so that *config.h will be found in the compilation
681 # subdirectory rather than in the source directory.
682 # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
683 # currently being compiled, in both source trees, to be examined as well.
684 INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
685            -I$(srcdir)/config -I$(srcdir)/../include
686
687 # Always use -I$(srcdir)/config when compiling.
688 .c.o:
689         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
690
691 # This tells GNU make version 3 not to export all the variables
692 # defined in this file into the environment.
693 .NOEXPORT:
694 #\f
695 # Support for additional languages (other than c and objc).
696 # ??? objc can be supported this way too (leave for later).
697
698 # These next lines are overridden by configure.
699 LANG_MAKEFILES = @all_lang_makefiles@
700 LANG_STAGESTUFF = @all_stagestuff@
701
702 # Flags to pass to recursive makes.
703 # CC is set by configure.  Hosts without symlinks need special handling
704 # because we need CC="stage1/xgcc -Bstage1/" to work in the language
705 # subdirectories.
706 # ??? The choices here will need some experimenting with.
707 ORDINARY_FLAGS_TO_PASS = \
708         "AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
709         "AR_CREATE_FOR_TARGET=$(AR_CREATE_FOR_TARGET)" \
710         "AR_EXTRACT_FOR_TARGET=$(AR_EXTRACT_FOR_TARGET)" \
711         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
712         "BISON=$(BISON)" \
713         "BISONFLAGS=$(BISONFLAGS)" \
714         "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
715         "DESTDIR=$(DESTDIR)" \
716         "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
717         "LDFLAGS=$(LDFLAGS)" \
718         "FLEX=$(FLEX)" \
719         "FLEXFLAGS=$(FLEXFLAGS)" \
720         "LN=$(LN)" \
721         "LN_S=$(LN_S)" \
722         "MAKEINFO=$(MAKEINFO)" \
723         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
724         "MAKEOVERRIDES=" \
725         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
726         "SHELL=$(SHELL)" \
727         "exeext=$(exeext)" \
728         "build_exeext=$(build_exeext)" \
729         "objext=$(objext)" \
730         "exec_prefix=$(exec_prefix)" \
731         "prefix=$(prefix)" \
732         "local_prefix=$(local_prefix)" \
733         "gxx_include_dir=$(gcc_gxx_include_dir)" \
734         "build_tooldir=$(build_tooldir)" \
735         "gcc_tooldir=$(gcc_tooldir)" \
736         "bindir=$(bindir)" \
737         "libsubdir=$(libsubdir)" \
738         "datadir=$(datadir)" \
739         "localedir=$(localedir)"
740 FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@" \
741         "STAGE_PREFIX=@stage_prefix_set_by_configure@"
742 PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
743         -e 's|^ *[^ /][^ /]*/|%&|' \
744         -e 's| -B| -B%|g' \
745         -e 's|% *[^- /]|%&|g' \
746         -e 's|%% *|../|g' \
747         -e 's|%||g'
748 SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
749         "CC=`echo @quoted_cc_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`" \
750         "STAGE_PREFIX=`echo @quoted_stage_prefix_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`"
751 #\f
752 # Lists of files for various purposes.
753
754 # Target specific, C specific object file
755 C_TARGET_OBJS=@c_target_objs@
756
757 # Target specific, C++ specific object file
758 CXX_TARGET_OBJS=@cxx_target_objs@
759
760 # Language-specific object files for C and Objective C.
761 C_AND_OBJC_OBJS = attribs.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \
762   c-convert.o c-aux-info.o c-common.o c-opts.o c-format.o c-semantics.o \
763   c-incpath.o cppdefault.o c-ppoutput.o c-cppbuiltin.o \
764   c-objc-common.o c-dump.o c-pch.o libcpp.a $(C_TARGET_OBJS)
765
766 # Language-specific object files for C.
767 C_OBJS = c-parse.o c-lang.o c-pretty-print.o $(C_AND_OBJC_OBJS)
768
769 # Language-independent object files.
770
771 OBJS = alias.o bb-reorder.o bitmap.o builtins.o caller-save.o calls.o      \
772  cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o             \
773  cfgloopanal.o cfgloopmanip.o loop-init.o loop-unswitch.o loop-unroll.o    \
774  cfgrtl.o combine.o conflict.o convert.o cse.o cselib.o dbxout.o           \
775  debug.o df.o diagnostic.o doloop.o dominance.o                            \
776  dwarf2asm.o dwarf2out.o dwarfout.o emit-rtl.o except.o explow.o           \
777  expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o             \
778  genrtl.o ggc-common.o global.o graph.o gtype-desc.o                       \
779  haifa-sched.o hashtable.o hooks.o ifcvt.o insn-attrtab.o insn-emit.o      \
780  insn-extract.o insn-opinit.o insn-output.o insn-peep.o insn-recog.o       \
781  integrate.o intl.o jump.o  langhooks.o lcm.o lists.o local-alloc.o        \
782  loop.o mbchar.o optabs.o params.o predict.o print-rtl.o print-tree.o      \
783  profile.o ra.o ra-build.o ra-colorize.o ra-debug.o ra-rewrite.o           \
784  real.o recog.o reg-stack.o regclass.o regmove.o regrename.o               \
785  reload.o reload1.o reorg.o resource.o rtl.o rtlanal.o rtl-error.o         \
786  sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o       \
787  sibcall.o simplify-rtx.o sreal.o ssa.o ssa-ccp.o ssa-dce.o stmt.o         \
788  stor-layout.o stringpool.o timevar.o toplev.o tracer.o tree.o tree-dump.o \
789  tree-inline.o unroll.o varasm.o varray.o version.o vmsdbgout.o xcoffout.o \
790  alloc-pool.o et-forest.o cgraph.o cgraphunit.o                            \
791  $(GGC) $(out_object_file) $(EXTRA_OBJS) $(host_hook_obj)
792
793 BACKEND = main.o libbackend.a
794
795 # Files to be copied away after each stage in building.
796 STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
797  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
798  insn-attr.h insn-attrtab.c insn-opinit.c insn-constants.h tm-preds.h \
799  tree-check.h insn-conditions.c \
800  s-flags s-config s-codes s-mlib s-genrtl s-gtype gtyp-gen.h \
801  s-output s-recog s-emit s-extract s-peep s-check s-conditions \
802  s-attr s-attrtab s-opinit s-preds s-constants s-crt0 \
803  genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
804  genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
805  genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
806  genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
807  gencheck$(build_exeext) genpreds$(build_exeext) genconstants$(build_exeext) \
808  gengtype$(build_exeext) genconditions$(build_exeext) \
809  genrtl.c genrtl.h gt-*.h gtype-*.h gtype-desc.c \
810  xgcc$(exeext) cpp$(exeext) cc1$(exeext) $(EXTRA_PASSES) \
811  $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) cc1obj$(exeext) \
812  protoize$(exeext) unprotoize$(exeext) \
813  $(SPECS) collect2$(exeext) $(USE_COLLECT2) \
814  gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
815  *.[0-9][0-9].* *.[si] libcpp.a libbackend.a libgcc.mk \
816  $(LANG_STAGESTUFF)
817
818 # Defined in libgcc2.c, included only in the static library.
819 LIB2FUNCS_ST = _eprintf __gcc_bcmp
820
821 # Defined in libgcov.c, included only in gcov library
822 LIBGCOV = _gcov
823
824 FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
825     _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
826     _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
827     _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf
828
829 DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
830     _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
831     _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
832     _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df
833
834 TPBIT_FUNCS = _pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf \
835     _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf \
836     _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf \
837     _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf
838
839 # These might cause a divide overflow trap and so are compiled with
840 # unwinder info.
841 LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
842
843 # The only suffixes we want for implicit rules are .c and .o, so clear
844 # the list and add them.  This speeds up GNU Make, and allows -r to work.
845 # For i18n support, we also need .gmo, .po, .pox.
846 # This must come before the language makefile fragments to allow them to
847 # add suffixes and rules of their own.
848 .SUFFIXES:
849 .SUFFIXES: .c .o .po .pox .gmo
850
851 #\f
852 # Language makefile fragments.
853
854 # The following targets define the interface between us and the languages.
855 #
856 # all.cross, start.encap, rest.encap,
857 # info, dvi,
858 # install-normal, install-common, install-info, install-man,
859 # uninstall,
860 # mostlyclean, clean, distclean, extraclean, maintainer-clean,
861 # stage1, stage2, stage3, stage4
862 #
863 # Each language is linked in with a series of hooks (since we can't use `::'
864 # targets).  The name of each hooked is "lang.${target_name}" (eg: lang.info).
865 # Configure computes and adds these here.
866
867 ####language hooks
868 @language_hooks@
869
870 # sed inserts language fragments after the following line.
871 ####language fragments
872 @language_fragments@
873
874 # End of language makefile fragments.
875 #\f
876
877 Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
878    $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
879         $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
880                 "$(xmake_file)" "$(tmake_file)"
881         cp config.status config.run
882         LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.run
883         rm -f config.run
884
885 config.h: cs-config.h ; @true
886 bconfig.h: cs-bconfig.h ; @true
887 tconfig.h: cs-tconfig.h ; @true
888 tm.h: cs-tm.h ; @true
889 tm_p.h: cs-tm_p.h ; @true
890
891 cs-config.h: Makefile
892         TARGET_CPU_DEFAULT="" \
893         HEADERS="$(host_xm_file)" DEFINES="$(host_xm_defines)" \
894         $(SHELL) $(srcdir)/mkconfig.sh config.h
895
896 cs-bconfig.h: Makefile
897         TARGET_CPU_DEFAULT="" \
898         HEADERS="$(build_xm_file)" DEFINES="$(build_xm_defines)" \
899         $(SHELL) $(srcdir)/mkconfig.sh bconfig.h
900
901 cs-tconfig.h: Makefile
902         TARGET_CPU_DEFAULT="" \
903         HEADERS="$(xm_file)" DEFINES="$(xm_defines)" \
904         $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
905
906 cs-tm.h: Makefile
907         TARGET_CPU_DEFAULT="$(target_cpu_default)" \
908         HEADERS="$(tm_file)" DEFINES="$(tm_defines)" \
909         $(SHELL) $(srcdir)/mkconfig.sh tm.h
910
911 cs-tm_p.h: Makefile
912         TARGET_CPU_DEFAULT="" \
913         HEADERS="$(tm_p_file)" DEFINES="" \
914         $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
915
916 # Don't automatically run autoconf, since configure.in might be accidentally
917 # newer than configure.  Also, this writes into the source directory which
918 # might be on a read-only file system.  If configured for maintainer mode
919 # then do allow autoconf to be run.
920
921 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.in
922         (cd $(srcdir) && autoconf)
923
924 gccbug: $(srcdir)/gccbug.in
925         CONFIG_FILES=gccbug CONFIG_HEADERS= ./config.status
926
927 mklibgcc: $(srcdir)/mklibgcc.in
928         CONFIG_FILES=mklibgcc CONFIG_HEADERS= ./config.status
929
930 mkheaders: $(srcdir)/mkheaders.in
931         CONFIG_FILES=mkheaders CONFIG_HEADERS= ./config.status
932
933 # cstamp-h.in controls rebuilding of config.in.
934 # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
935 # delete it.  A stamp file is needed as autoheader won't update the file if
936 # nothing has changed.
937 # It remains in the source directory and is part of the distribution.
938 # This follows what is done in shellutils, fileutils, etc.
939 # "echo timestamp" is used instead of touch to be consistent with other
940 # packages that use autoconf (??? perhaps also to avoid problems with patch?).
941 # ??? Newer versions have a maintainer mode that may be useful here.
942
943 # Don't run autoheader automatically either.
944 # Only run it if maintainer mode is enabled.
945 @MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
946 @MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
947 @MAINT@ (cd $(srcdir) && autoheader)
948 @MAINT@ @rm -f $(srcdir)/cstamp-h.in
949 @MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
950 auto-host.h: cstamp-h ; @true
951 cstamp-h: config.in config.status
952         CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
953
954 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
955 # a target to build even if it is up-to-date.  So we must verify that
956 # config.status does not exist before failing.
957 config.status: $(srcdir)/configure $(srcdir)/config.gcc version.c
958         @if [ ! -f config.status ] ; then \
959           echo You must configure gcc.  Look at http://gcc.gnu.org/install/ for details.; \
960           false; \
961         else \
962           LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
963         fi
964
965 all.internal: start.encap rest.encap doc
966 # This is what to compile if making a cross-compiler.
967 all.cross: native gcc-cross cpp$(exeext) specs \
968         $(LIBGCC) $(EXTRA_PARTS) lang.all.cross doc
969 # This is what must be made before installing GCC and converting libraries.
970 start.encap: native xgcc$(exeext) cpp$(exeext) specs \
971         xlimits.h lang.start.encap
972 # These can't be made until after GCC can run.
973 rest.encap: $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
974 # This is what is made with the host's compiler
975 # whether making a cross compiler or not.
976 native: config.status auto-host.h intl.all build-@POSUB@ $(LANGUAGES) \
977         $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
978
979 # Define the names for selecting languages in LANGUAGES.
980 C c: cc1$(exeext)
981 PROTO: proto
982
983 # Tell GNU make these are phony targets.
984 .PHONY: C c PROTO proto
985
986 # On the target machine, finish building a cross compiler.
987 # This does the things that can't be done on the host machine.
988 rest.cross: $(LIBGCC) specs
989
990 # Recompile all the language-independent object files.
991 # This is used only if the user explicitly asks for it.
992 compilations: $(BACKEND)
993
994 # Like libcpp.a, this archive is strictly for the host.
995 libbackend.a: $(OBJS)
996         -rm -rf libbackend.a
997         $(AR) $(AR_FLAGS) libbackend.a $(OBJS)
998         -$(RANLIB) libbackend.a
999
1000 # We call this executable `xgcc' rather than `gcc'
1001 # to avoid confusion if the current directory is in the path
1002 # and CC is `gcc'.  It is renamed to `gcc' when it is installed.
1003 xgcc$(exeext): gcc.o gccspec.o version.o intl.o prefix.o \
1004    version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1005         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o gccspec.o intl.o \
1006           prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1007
1008 # cpp is to cpp0 as gcc is to cc1.
1009 # The only difference from xgcc is that it's linked with cppspec.o
1010 # instead of gccspec.o.
1011 cpp$(exeext): gcc.o cppspec.o version.o intl.o prefix.o \
1012    version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1013         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o cppspec.o intl.o \
1014           prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1015
1016 # Dump a specs file to make -B./ read these specs over installed ones.
1017 $(SPECS): xgcc$(exeext)
1018         $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
1019         mv tmp-specs $(SPECS)
1020
1021 # We do want to create an executable named `xgcc', so we can use it to
1022 # compile libgcc2.a.
1023 # Also create gcc-cross, so that install-common will install properly.
1024 gcc-cross: xgcc$(exeext)
1025         cp xgcc$(exeext) gcc-cross$(exeext)
1026
1027 cc1$(exeext): $(C_OBJS) $(BACKEND) $(LIBDEPS)
1028         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1$(exeext) \
1029                 $(C_OBJS) $(BACKEND) $(LIBS)
1030
1031 # Build the version of limits.h that we will install.
1032 xlimits.h: glimits.h limitx.h limity.h
1033         if $(LIMITS_H_TEST) ; then \
1034           cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
1035         else \
1036           cat $(srcdir)/glimits.h > tmp-xlimits.h; \
1037         fi
1038         mv tmp-xlimits.h xlimits.h
1039 #\f
1040 # Build libgcc.a.
1041
1042 LIB2ADD = $(LIB2FUNCS_EXTRA)
1043 LIB2ADD_ST = $(LIB2FUNCS_STATIC_EXTRA)
1044
1045 libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext) specs
1046         objext='$(objext)' \
1047         LIB1ASMFUNCS='$(LIB1ASMFUNCS)' \
1048         LIB2FUNCS_ST='$(LIB2FUNCS_ST)' \
1049         LIBGCOV='$(LIBGCOV)' \
1050         LIB2ADD='$(LIB2ADD)' \
1051         LIB2ADD_ST='$(LIB2ADD_ST)' \
1052         LIB2ADDEH='$(LIB2ADDEH)' \
1053         LIB2ADDEHDEP='$(LIB2ADDEHDEP)' \
1054         FPBIT='$(FPBIT)' \
1055         FPBIT_FUNCS='$(FPBIT_FUNCS)' \
1056         LIB2_DIVMOD_FUNCS='$(LIB2_DIVMOD_FUNCS)' \
1057         DPBIT='$(DPBIT)' \
1058         DPBIT_FUNCS='$(DPBIT_FUNCS)' \
1059         TPBIT='$(TPBIT)' \
1060         TPBIT_FUNCS='$(TPBIT_FUNCS)' \
1061         MULTILIBS=`$(GCC_FOR_TARGET) --print-multi-lib` \
1062         EXTRA_MULTILIB_PARTS='$(EXTRA_MULTILIB_PARTS)' \
1063         SHLIB_LINK='$(SHLIB_LINK)' \
1064         SHLIB_INSTALL='$(SHLIB_INSTALL)' \
1065         SHLIB_EXT='$(SHLIB_EXT)' \
1066         SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \
1067         SHLIB_MKMAP='$(SHLIB_MKMAP)' \
1068         SHLIB_MKMAP_OPTS='$(SHLIB_MKMAP_OPTS)' \
1069         SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \
1070         SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \
1071         MULTILIB_OSDIRNAMES='$(MULTILIB_OSDIRNAMES)' \
1072         mkinstalldirs='$(SHELL) $(srcdir)/mkinstalldirs' \
1073           $(SHELL) mklibgcc > tmp-libgcc.mk
1074         mv tmp-libgcc.mk libgcc.mk
1075
1076 # All the things that might cause us to want to recompile bits of libgcc.
1077 LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) stmp-int-hdrs $(STMP_FIXPROTO) \
1078         libgcc.mk $(srcdir)/libgcc2.c $(srcdir)/libgcov.c $(TCONFIG_H) \
1079         $(MACHMODE_H) longlong.h gbl-ctors.h config.status stmp-int-hdrs \
1080         tsystem.h $(FPBIT) $(DPBIT) $(TPBIT) $(LIB2ADD) \
1081         $(LIB2ADD_ST) $(LIB2ADDEH) $(LIB2ADDEHDEP) $(EXTRA_PARTS) \
1082         $(srcdir)/config/$(LIB1ASMSRC)
1083
1084 libgcov.a: libgcc.a; @true
1085
1086 libgcc.a: $(LIBGCC_DEPS)
1087         $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1088           BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
1089           AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1090           AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
1091           AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1092           CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
1093           RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1094           NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
1095           LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
1096           INCLUDES="$(INCLUDES)" \
1097           CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" TM_H="$(TM_H)" \
1098           LIB1ASMSRC='$(LIB1ASMSRC)' \
1099           MAKEOVERRIDES= \
1100           -f libgcc.mk all
1101
1102 # Use the genmultilib shell script to generate the information the gcc
1103 # driver program needs to select the library directory based on the
1104 # switches.
1105 multilib.h: s-mlib; @true
1106 s-mlib: $(srcdir)/genmultilib Makefile
1107         if test @enable_multilib@ = yes \
1108            || test -n "$(MULTILIB_OSDIRNAMES)"; then \
1109           $(SHELL) $(srcdir)/genmultilib \
1110             "$(MULTILIB_OPTIONS)" \
1111             "$(MULTILIB_DIRNAMES)" \
1112             "$(MULTILIB_MATCHES)" \
1113             "$(MULTILIB_EXCEPTIONS)" \
1114             "$(MULTILIB_EXTRA_OPTS)" \
1115             "$(MULTILIB_EXCLUSIONS)" \
1116             "$(MULTILIB_OSDIRNAMES)" \
1117             "@enable_multilib@" \
1118             > tmp-mlib.h; \
1119         else \
1120           $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' no \
1121             > tmp-mlib.h; \
1122         fi
1123         $(SHELL) $(srcdir)/move-if-change tmp-mlib.h multilib.h
1124         $(STAMP) s-mlib
1125
1126 # Build multiple copies of libgcc.a, one for each target switch.
1127 stmp-multilib: $(LIBGCC_DEPS)
1128         $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1129           BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
1130           AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1131           AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
1132           AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1133           CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
1134           RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1135           NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
1136           LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
1137           INCLUDES="$(INCLUDES)" \
1138           CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
1139           LIB1ASMSRC='$(LIB1ASMSRC)' \
1140           MAKEOVERRIDES= \
1141           -f libgcc.mk all
1142         $(STAMP) stmp-multilib
1143
1144 # Compile two additional files that are linked with every program
1145 # linked using GCC on systems using COFF or ELF, for the sake of C++
1146 # constructors.
1147 $(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1148   gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1149         $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1150           @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN \
1151           -o $(T)crtbegin$(objext)
1152
1153 $(T)crtend.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1154   gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1155         $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1156           @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END \
1157           -o $(T)crtend$(objext)
1158
1159 # These are versions of crtbegin and crtend for shared libraries.
1160 $(T)crtbeginS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1161   gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1162         $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1163           @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O \
1164           -o $(T)crtbeginS$(objext)
1165
1166 $(T)crtendS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1167   gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1168         $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1169           @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END -DCRTSTUFFS_O \
1170           -o $(T)crtendS$(objext)
1171
1172 # This is a version of crtbegin for -static links.
1173 $(T)crtbeginT.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1174   gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1175         $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1176           @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFT_O \
1177           -o $(T)crtbeginT$(objext)
1178
1179 # Compile the start modules crt0.o and mcrt0.o that are linked with
1180 # every program
1181 crt0.o: s-crt0 ; @true
1182 mcrt0.o: s-crt0; @true
1183
1184 s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
1185         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1186           -o crt0.o -c $(CRT0_S)
1187         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1188           -o mcrt0.o -c $(MCRT0_S)
1189         $(STAMP) s-crt0
1190 #\f
1191 # Compiling object files from source files.
1192
1193 # Note that dependencies on obstack.h are not written
1194 # because that file is not part of GCC.
1195
1196 # C language specific files.
1197
1198 c-errors.o: c-errors.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1199     $(C_TREE_H) flags.h diagnostic.h $(TM_P_H)
1200 c-parse.o : $(parsedir)/c-parse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1201     $(GGC_H) intl.h $(C_TREE_H) input.h flags.h toplev.h output.h $(CPPLIB_H) \
1202     varray.h gt-c-parse.h
1203         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1204                -c $(parsedir)/c-parse.c $(OUTPUT_OPTION)
1205
1206 $(parsedir)/c-parse.c: $(parsedir)/c-parse.y
1207         cd $(parsedir) && \
1208         if $(BISON) $(BISONFLAGS) -o c-p$$$$.c c-parse.y; then \
1209           test -f c-p$$$$.output && mv -f c-p$$$$.output c-parse.output ; \
1210           mv -f c-p$$$$.c c-parse.c ; \
1211         else \
1212           rm -f c-p$$$$.* ; \
1213           false ; \
1214         fi
1215
1216 $(parsedir)/c-parse.y: c-parse.in
1217         echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1218         sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1219           -e "/^ifc$$/d" -e "/^end ifc$$/d" \
1220           $(srcdir)/c-parse.in >>tmp-c-parse.y
1221         $(SHELL) $(srcdir)/move-if-change tmp-c-parse.y $(parsedir)/c-parse.y
1222
1223 c-incpath.o: c-incpath.c c-incpath.h $(CONFIG_H) $(SYSTEM_H) $(CPPLIB_H) \
1224                 intl.h prefix.h coretypes.h $(TM_H) cppdefault.h
1225
1226 c-decl.o : c-decl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1227     $(C_TREE_H) $(GGC_H) $(TARGET_H) flags.h function.h output.h $(EXPR_H) \
1228     debug.h toplev.h intl.h $(TM_P_H) tree-inline.h $(TIMEVAR_H) c-pragma.h \
1229     gt-c-decl.h cgraph.h
1230 c-typeck.o : c-typeck.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_TREE_H) \
1231     $(TARGET_H) flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h $(TM_P_H)
1232 c-lang.o : c-lang.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_TREE_H) \
1233     $(GGC_H) langhooks.h $(LANGHOOKS_DEF_H) c-common.h gtype-c.h
1234 c-lex.o : c-lex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1235     $(RTL_H) debug.h $(C_TREE_H) c-common.h real.h c-incpath.h cppdefault.h \
1236     c-pragma.h input.h intl.h flags.h toplev.h output.h \
1237     mbchar.h $(CPPLIB_H) $(EXPR_H) $(TM_P_H)
1238 c-ppoutput.o : c-ppoutput.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1239     c-common.h $(TREE_H) $(CPPLIB_H) cpphash.h $(TM_P_H) c-pragma.h
1240 c-objc-common.o : c-objc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1241     $(C_TREE_H) $(RTL_H) insn-config.h integrate.h $(EXPR_H) $(C_TREE_H) \
1242     flags.h toplev.h tree-inline.h diagnostic.h integrate.h $(VARRAY_H) \
1243     langhooks.h $(GGC_H) gt-c-objc-common.h $(TARGET_H) cgraph.h
1244 c-aux-info.o : c-aux-info.c  $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1245     $(C_TREE_H) flags.h toplev.h
1246 c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1247     flags.h toplev.h $(C_COMMON_H) real.h
1248 c-pragma.o: c-pragma.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1249     function.h c-pragma.h toplev.h output.h $(GGC_H) $(TM_P_H) $(C_COMMON_H) gt-c-pragma.h
1250 mbchar.o: mbchar.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) mbchar.h
1251 graph.o: graph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h flags.h output.h \
1252     $(RTL_H) function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h
1253 sbitmap.o: sbitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1254     hard-reg-set.h $(BASIC_BLOCK_H)
1255
1256 COLLECT2_OBJS = collect2.o tlink.o intl.o version.o
1257 COLLECT2_LIBS = @COLLECT2_LIBS@
1258 collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
1259 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
1260         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o T$@ \
1261                 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
1262         mv -f T$@ $@
1263
1264 collect2.o : collect2.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) gstab.h intl.h \
1265         $(OBSTACK_H) $(DEMANGLE_H) collect2.h version.h
1266         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES)  \
1267         -DTARGET_MACHINE=\"$(target_alias)\" \
1268         -c $(srcdir)/collect2.c $(OUTPUT_OPTION)
1269
1270 tlink.o: tlink.c $(DEMANGLE_H) $(HASHTAB_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1271     $(OBSTACK_H) collect2.h intl.h
1272
1273 # A file used by all variants of C.
1274
1275 c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1276         $(OBSTACK_H) $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h \
1277         $(GGC_H) $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def \
1278         diagnostic.h gt-c-common.h langhooks.h varray.h $(RTL_H) $(TARGET_H)
1279 c-pretty-print.o : c-pretty-print.c c-pretty-print.h pretty-print.h \
1280         $(C_COMMON_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) real.h
1281
1282 c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(C_COMMON_H) \
1283         c-pragma.h flags.h toplev.h langhooks.h tree-inline.h diagnostic.h \
1284         intl.h
1285
1286 c-cppbuiltin.o : c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1287         $(TREE_H) $(C_COMMON_H) c-pragma.h flags.h toplev.h langhooks.h \
1288         output.h except.h real.$(TM_P_H)
1289
1290 # A file used by all variants of C and some other languages.
1291
1292 attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h \
1293         toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
1294         builtin-types.def $(TARGET_H) langhooks.h
1295
1296 c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) langhooks.h \
1297         $(C_COMMON_H) flags.h toplev.h intl.h diagnostic.h
1298
1299 c-semantics.o : c-semantics.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1300         $(C_TREE_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1301         $(EXPR_H) $(PREDICT_H)
1302
1303 c-dump.o : c-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1304         $(C_TREE_H) tree-dump.h
1305
1306 c-pch.o : c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(CPPLIB_H) $(TREE_H) \
1307         c-common.h output.h toplev.h c-pragma.h $(GGC_H) debug.h langhooks.h
1308
1309 # Language-independent files.
1310
1311 DRIVER_DEFINES = \
1312   -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
1313   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
1314   -DDEFAULT_TARGET_VERSION=\"$(version)\" \
1315   -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
1316   -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
1317   -DTOOLDIR_BASE_PREFIX=\"$(unlibsubdir)/../\" \
1318   @TARGET_SYSTEM_ROOT_DEFINE@ \
1319   $(VALGRIND_DRIVER_DEFINES) \
1320   `test "X$${SHLIB_LINK}" = "X" || test "@enable_shared@" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` \
1321   `test "X$${SHLIB_MULTILIB}" = "X" || echo "-DNO_SHARED_LIBGCC_MULTILIB"`
1322
1323 gcc.o: gcc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h multilib.h \
1324     Makefile $(lang_specs_files) specs.h prefix.h $(GCC_H)
1325         (SHLIB_LINK='$(SHLIB_LINK)' \
1326         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
1327         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1328   $(DRIVER_DEFINES) \
1329   -c $(srcdir)/gcc.c $(OUTPUT_OPTION))
1330
1331 gccspec.o: gccspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1332         (SHLIB_LINK='$(SHLIB_LINK)' \
1333         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
1334         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1335   $(DRIVER_DEFINES) \
1336   -c $(srcdir)/gccspec.c $(OUTPUT_OPTION))
1337
1338 cppspec.o: cppspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1339
1340 tree-check.h: s-check ; @true
1341 s-check : gencheck$(build_exeext) $(srcdir)/move-if-change
1342         $(RUN_GEN) ./gencheck$(build_exeext) > tmp-check.h
1343         $(SHELL) $(srcdir)/move-if-change tmp-check.h tree-check.h
1344         $(STAMP) s-check
1345
1346 gencheck$(build_exeext) : gencheck.o $(BUILD_LIBDEPS)
1347         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
1348          gencheck.o $(BUILD_LIBS)
1349
1350 gencheck.o : gencheck.c gencheck.h tree.def $(BCONFIG_H) $(SYSTEM_H) \
1351         coretypes.h $(GTM_H) $(lang_tree_files)
1352         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
1353           $(srcdir)/gencheck.c $(OUTPUT_OPTION)
1354
1355 gencheck.h : s-gencheck ; @true
1356 s-gencheck : Makefile
1357         ltf="$(lang_tree_files)"; for f in $$ltf; do \
1358             echo "#include \"$$f\""; \
1359         done | sed 's|$(srcdir)/||' > tmp-gencheck.h
1360         $(SHELL) $(srcdir)/move-if-change tmp-gencheck.h gencheck.h
1361         $(STAMP) s-gencheck
1362
1363 options.h : s-options ; @true
1364 s-options : Makefile
1365         lof="$(lang_options_files)"; for f in $$lof; do \
1366             echo "#include \"$$f\""; \
1367         done | sed 's|$(srcdir)/||' > tmp-options.h
1368         $(SHELL) $(srcdir)/move-if-change tmp-options.h options.h
1369         $(STAMP) s-options
1370
1371 specs.h : s-specs ; @true
1372 s-specs : Makefile
1373         lsf="$(lang_specs_files)"; for f in $$lsf; do \
1374             echo "#include \"$$f\""; \
1375         done | sed 's|$(srcdir)/||' > tmp-specs.h
1376         $(SHELL) $(srcdir)/move-if-change tmp-specs.h specs.h
1377         $(STAMP) s-specs
1378
1379 dumpvers: dumpvers.c
1380
1381 version.o: version.c version.h
1382
1383 gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) varray.h \
1384         $(HASHTAB_H) $(TREE_H) $(RTL_H) function.h insn-config.h $(EXPR_H) $(OPTABS_H) \
1385         libfuncs.h debug.h $(GGC_H) bitmap.h $(BASIC_BLOCK_H) hard-reg-set.h \
1386         ssa.h cselib.h insn-addr.h
1387
1388 ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
1389         $(HASHTAB_H) toplev.h $(PARAMS_H)
1390
1391 ggc-simple.o: ggc-simple.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1392         flags.h $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H)
1393
1394 ggc-page.o: ggc-page.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1395         flags.h toplev.h $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H)
1396
1397 stringpool.o: stringpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1398         $(TREE_H) $(GGC_H) gt-stringpool.h
1399
1400 hashtable.o: hashtable.c hashtable.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(OBSTACK_H)
1401
1402 line-map.o: line-map.c line-map.h intl.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
1403
1404 ggc-none.o: ggc-none.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(GGC_H)
1405         $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1406
1407 prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) Makefile prefix.h
1408         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1409         -DPREFIX=\"$(prefix)\" \
1410           -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
1411
1412 convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h \
1413    convert.h toplev.h langhooks.h
1414
1415 langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) toplev.h \
1416    tree-inline.h $(RTL_H) insn-config.h integrate.h langhooks.h \
1417    $(LANGHOOKS_DEF_H) flags.h
1418 tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) flags.h function.h \
1419    toplev.h $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h \
1420    real.h gt-tree.h
1421 tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1422    $(C_TREE_H) flags.h langhooks.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1423    $(EXPR_H) $(SPLAY_TREE_H) tree-dump.h
1424 tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1425    $(RTL_H) expr.h flags.h params.h input.h insn-config.h $(INTEGRATE_H) \
1426    $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h langhooks.h \
1427    $(C_COMMON_H) tree-inline.h cgraph.h
1428 print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1429    $(GGC_H) langhooks.h real.h
1430 stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1431    flags.h function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H) $(TM_P_H) $(TARGET_H) \
1432    langhooks.h
1433 fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1434    flags.h real.h toplev.h $(HASHTAB_H) $(EXPR_H) $(RTL_H) $(GGC_H) $(TM_P_H) langhooks.h
1435 diagnostic.o : diagnostic.c diagnostic.h real.h diagnostic.def \
1436    $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(TM_P_H) flags.h $(GGC_H) \
1437    input.h toplev.h intl.h langhooks.h $(LANGHOOKS_DEF_H)
1438 toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1439    function.h flags.h xcoffout.h input.h $(INSN_ATTR_H) output.h diagnostic.h \
1440    debug.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h \
1441    dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
1442    graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) $(lang_options_files) \
1443    ssa.h $(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
1444    langhooks.h insn-flags.h options.h cfglayout.h real.h cfgloop.h \
1445    hosthooks.h $(LANGHOOKS_DEF_H) cgraph.h
1446         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1447           -DTARGET_NAME=\"$(target_alias)\" \
1448           -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
1449 main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h
1450
1451 host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
1452         hosthooks.h hosthooks-def.h
1453
1454 rtl-error.o: rtl-error.c $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(INSN_ATTR_H) \
1455    insn-config.h input.h toplev.h intl.h diagnostic.h $(CONFIG_H)
1456
1457 rtl.o : rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) real.h \
1458   $(GGC_H) errors.h
1459         $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1460
1461 print-rtl.o : print-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1462     hard-reg-set.h $(BASIC_BLOCK_H) real.h
1463 rtlanal.o : rtlanal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h $(RTL_H) \
1464    hard-reg-set.h $(TM_P_H) insn-config.h $(RECOG_H) real.h flags.h
1465
1466 errors.o : errors.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h
1467         $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1468
1469 varasm.o : varasm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1470    flags.h function.h $(EXPR_H) hard-reg-set.h $(REGS_H) \
1471    output.h c-pragma.h toplev.h xcoffout.h debug.h $(GGC_H) $(TM_P_H) \
1472    $(HASHTAB_H) $(TARGET_H) langhooks.h gt-varasm.h real.h
1473 function.o : function.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1474    flags.h function.h $(EXPR_H) libfuncs.h $(REGS_H) hard-reg-set.h \
1475    insn-config.h $(RECOG_H) output.h toplev.h except.h $(HASHTAB_H) $(GGC_H) \
1476    $(TM_P_H) langhooks.h gt-function.h
1477 stmt.o : stmt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1478    function.h insn-config.h hard-reg-set.h $(EXPR_H) libfuncs.h except.h \
1479    $(LOOP_H) $(RECOG_H) toplev.h output.h varray.h $(GGC_H) $(TM_P_H) \
1480    langhooks.h $(PREDICT_H) gt-stmt.h $(OPTABS_H)
1481 except.o : except.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1482    flags.h except.h function.h $(EXPR_H) libfuncs.h integrate.h langhooks.h \
1483    insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \
1484    dwarf2asm.h dwarf2out.h toplev.h $(HASHTAB_H) intl.h $(GGC_H) \
1485    gt-except.h
1486 expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1487    function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) libfuncs.h insn-attr.h insn-config.h \
1488    $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1489    except.h reload.h $(GGC_H) langhooks.h intl.h $(TM_P_H) real.h
1490 builtins.o : builtins.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H)\
1491    flags.h $(TARGET_H) function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) insn-config.h \
1492    $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1493    except.h $(TM_P_H) $(PREDICT_H) libfuncs.h real.h langhooks.h
1494 calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) flags.h \
1495    $(EXPR_H) langhooks.h $(TARGET_H) \
1496    libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H) cgraph.h
1497 expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1498    flags.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) real.h \
1499    toplev.h $(TM_P_H) langhooks.h
1500 explow.o : explow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1501    flags.h hard-reg-set.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \
1502    toplev.h function.h ggc.h $(TM_P_H) gt-explow.h
1503 optabs.o : optabs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1504    flags.h insn-config.h $(EXPR_H) $(OPTABS_H) libfuncs.h $(RECOG_H) reload.h \
1505    toplev.h $(GGC_H) real.h $(TM_P_H) except.h gt-optabs.h $(BASIC_BLOCK_H)
1506 dbxout.o : dbxout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1507    flags.h $(REGS_H) debug.h $(TM_P_H) $(TARGET_H) function.h langhooks.h \
1508    insn-config.h reload.h gstab.h xcoffout.h output.h dbxout.h toplev.h \
1509    $(GGC_H) gt-dbxout.h
1510 debug.o : debug.c debug.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
1511 sdbout.o : sdbout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1512    flags.h function.h $(EXPR_H) output.h hard-reg-set.h $(REGS_H) real.h \
1513    insn-config.h xcoffout.h c-pragma.h $(GGC_H) $(TARGET_H) \
1514    sdbout.h toplev.h $(TM_P_H) except.h debug.h langhooks.h gt-sdbout.h
1515 dwarfout.o : dwarfout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1516    $(RTL_H) dwarf.h flags.h insn-config.h reload.h output.h toplev.h $(TM_P_H) \
1517    debug.h langhooks.h $(TARGET_H)
1518 dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1519    $(RTL_H) dwarf2.h debug.h flags.h insn-config.h reload.h output.h diagnostic.h real.h \
1520    hard-reg-set.h $(REGS_H) $(EXPR_H) libfuncs.h toplev.h dwarf2out.h varray.h \
1521    $(GGC_H) except.h dwarf2asm.h $(TM_P_H) langhooks.h $(HASHTAB_H) \
1522    gt-dwarf2out.h $(TARGET_H)
1523 dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) flags.h $(RTL_H) \
1524    $(TREE_H) output.h dwarf2asm.h $(TM_P_H) $(GGC_H) gt-dwarf2asm.h
1525 vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1526    $(RTL_H) flags.h output.h vmsdbg.h debug.h langhooks.h function.h $(TARGET_H)
1527 xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) \
1528    xcoffout.h flags.h toplev.h output.h dbxout.h $(GGC_H) $(TARGET_H)
1529 emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1530    flags.h function.h $(REGS_H) insn-config.h $(RECOG_H) real.h $(GGC_H) \
1531    $(EXPR_H) $(srcdir)/../include/obstack.h hard-reg-set.h bitmap.h toplev.h \
1532    $(HASHTAB_H) $(TM_P_H) debug.h langhooks.h
1533 real.o : real.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) toplev.h $(TM_P_H)
1534 integrate.o : integrate.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1535    flags.h debug.h $(INTEGRATE_H) insn-config.h $(EXPR_H) real.h $(REGS_H) \
1536    intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H) \
1537    $(PARAMS_H) $(TM_P_H) $(TARGET_H) langhooks.h gt-integrate.h
1538 jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1539    hard-reg-set.h $(REGS_H) insn-config.h $(RECOG_H) $(EXPR_H) real.h except.h function.h \
1540    toplev.h $(INSN_ATTR_H) $(TM_P_H) reload.h $(PREDICT_H) $(TIMEVAR_H)
1541
1542 simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1543    $(REGS_H) hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1544    output.h function.h $(GGC_H) $(OBSTACK_H) $(TM_P_H) $(TREE_H) $(TARGET_H)
1545 cgraph.o : cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1546    langhooks.h tree-inline.h toplev.h flags.h ggc.h  $(TARGET_H) cgraph.h gt-cgraph.h
1547 cgraphunit.o : cgraphunit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1548    langhooks.h tree-inline.h toplev.h flags.h ggc.h  $(TARGET_H) cgraph.h
1549 cselib.o : cselib.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1550    hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1551    output.h function.h cselib.h $(GGC_H) $(TM_P_H) gt-cselib.h
1552 cse.o : cse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1553    hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1554    output.h function.h $(BASIC_BLOCK_H) $(GGC_H) $(TM_P_H) $(TIMEVAR_H) \
1555    except.h $(TARGET_H)
1556 gcse.o : gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1557    hard-reg-set.h flags.h real.h insn-config.h ggc.h $(RECOG_H) $(EXPR_H) \
1558    $(BASIC_BLOCK_H) function.h output.h toplev.h $(TM_P_H) $(PARAMS_H) except.h gt-gcse.h
1559 sibcall.o : sibcall.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1560    function.h hard-reg-set.h flags.h insn-config.h $(RECOG_H) $(BASIC_BLOCK_H)
1561 resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) coretypes.h \
1562    $(TM_H) $(BASIC_BLOCK_H) $(REGS_H) flags.h output.h resource.h function.h toplev.h \
1563    $(INSN_ATTR_H) except.h $(PARAMS_H) $(TM_P_H)
1564 lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
1565    hard-reg-set.h flags.h real.h insn-config.h $(INSN_ATTR_H) $(RECOG_H) $(EXPR_H) \
1566    $(BASIC_BLOCK_H) $(TM_P_H) df.h function.h
1567 ssa.o : ssa.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) varray.h \
1568    $(EXPR_H) hard-reg-set.h flags.h function.h real.h insn-config.h $(RECOG_H) \
1569    $(BASIC_BLOCK_H) output.h ssa.h
1570 ssa-dce.o : ssa-dce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) hard-reg-set.h \
1571    $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h
1572 ssa-ccp.o : ssa-ccp.c $(CONFIG_H) system.h coretypes.h $(TM_H) $(RTL_H) hard-reg-set.h \
1573     $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h \
1574     errors.h $(GGC_H) df.h function.h
1575 df.o : df.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1576    insn-config.h $(RECOG_H) function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
1577    $(BASIC_BLOCK_H) df.h $(FIBHEAP_H)
1578 conflict.o : conflict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(OBSTACK_H) \
1579    $(HASHTAB_H) $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H)
1580 profile.o : profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1581    flags.h insn-config.h output.h $(REGS_H) $(EXPR_H) function.h \
1582    gcov-io.h gcov-iov.h toplev.h $(GGC_H) hard-reg-set.h $(BASIC_BLOCK_H) \
1583    $(TARGET_H) langhooks.h profile.h libfuncs.h gt-profile.h $(HASHTAB_H)
1584 loop.o : loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h $(LOOP_H) \
1585    insn-config.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) \
1586    real.h $(PREDICT_H) $(BASIC_BLOCK_H) function.h cfgloop.h \
1587    toplev.h varray.h except.h cselib.h $(OPTABS_H) $(TM_P_H)
1588 doloop.o : doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1589    $(LOOP_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) toplev.h \
1590    cfgloop.h
1591 unroll.o : unroll.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
1592    function.h $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
1593    hard-reg-set.h varray.h $(BASIC_BLOCK_H) $(TM_P_H) $(PREDICT_H) $(PARAMS_H) \
1594    cfgloop.h
1595 alloc-pool.o : alloc-pool.c $(CONFIG_H) $(SYSTEM_H) alloc-pool.h
1596 flow.o : flow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1597    flags.h insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1598    $(RECOG_H) function.h except.h $(EXPR_H) ssa.h $(GGC_H) $(TM_P_H)
1599 cfg.o : cfg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h insn-config.h \
1600    $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1601    function.h except.h $(GGC_H) $(TM_P_H) alloc-pool.h
1602 cfgrtl.o : cfgrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1603    insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1604    function.h except.h $(GGC_H) $(TM_P_H) insn-config.h
1605 cfganal.o : cfganal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1606    $(BASIC_BLOCK_H) hard-reg-set.h insn-config.h $(RECOG_H) $(GGC_H) $(TM_P_H)
1607 cfgbuild.o : cfgbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1608    insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
1609    function.h except.h $(GGC_H)
1610 cfgcleanup.o : cfgcleanup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1611    $(RTL_H) $(TIMEVAR_H) $(BASIC_BLOCK_H) hard-reg-set.h output.h flags.h \
1612    $(RECOG_H) toplev.h $(GGC_H) insn-config.h cselib.h $(TARGET_H) $(TM_P_H) \
1613    $(PARAMS_H)
1614 cfgloop.o : cfgloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) coretypes.h $(TM_H) \
1615    $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h flags.h
1616 cfgloopanal.o : cfgloopanal.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
1617    $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h $(EXPR_H) coretypes.h $(TM_H)
1618 cfgloopmanip.o : cfgloopmanip.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
1619    $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h output.h coretypes.h $(TM_H)
1620 loop-init.o : loop-init.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) gcov-io.h \
1621    gcov-iov.h $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h profile.h \
1622    coretypes.h $(TM_H)
1623 loop-unswitch.o : loop-unswitch.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
1624    $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h params.h \
1625    output.h $(EXPR_H) coretypes.h $(TM_H)
1626 loop-unroll.o: loop-unroll.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
1627    $(BASIC_BLOCK_H) hard-reg-set.h cfgloop.h cfglayout.h params.h \
1628    output.h $(EXPR_H) coretypes.h $(TM_H)
1629 dominance.o : dominance.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1630    hard-reg-set.h $(BASIC_BLOCK_H) et-forest.h
1631 et-forest.o : et-forest.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) et-forest.h alloc-pool.h
1632 combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1633    function.h insn-config.h $(INSN_ATTR_H) $(REGS_H) $(EXPR_H) \
1634    $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h $(TM_P_H)
1635 regclass.o : regclass.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1636    hard-reg-set.h flags.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h \
1637    real.h toplev.h function.h output.h $(GGC_H) $(TM_P_H) $(EXPR_H) $(TIMEVAR_H)
1638 local-alloc.o : local-alloc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1639    flags.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
1640    output.h function.h $(INSN_ATTR_H) toplev.h  except.h $(TM_P_H)
1641 bitmap.o : bitmap.c $(CONFIG_H) $(SYSTEM_H)  coretypes.h $(GTM_H) $(RTL_H) flags.h \
1642    $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
1643         $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
1644 global.o : global.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1645    reload.h function.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h \
1646    toplev.h $(TM_P_H)
1647 varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) varray.h $(GGC_H) errors.h
1648 ra.o : ra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h \
1649    $(RECOG_H) integrate.h function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
1650    $(BASIC_BLOCK_H) df.h expr.h output.h toplev.h flags.h reload.h ra.h
1651 ra-build.o : ra-build.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TM_P_H) \
1652    insn-config.h $(RECOG_H) function.h $(REGS_H) hard-reg-set.h \
1653    $(BASIC_BLOCK_H) df.h output.h ggc.h ra.h gt-ra-build.h reload.h
1654 ra-colorize.o : ra-colorize.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1655     $(TM_P_H) function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h ra.h
1656 ra-debug.o : ra-debug.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1657    insn-config.h $(RECOG_H) function.h hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h \
1658    ra.h $(TM_P_H)
1659 ra-rewrite.o : ra-rewrite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1660    $(TM_P_H) function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h expr.h \
1661    output.h except.h ra.h reload.h insn-config.h
1662 reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h output.h \
1663    $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) hard-reg-set.h insn-config.h \
1664    $(REGS_H) function.h real.h toplev.h $(TM_P_H)
1665 reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) real.h flags.h \
1666    $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \
1667    $(BASIC_BLOCK_H) $(RECOG_H) output.h function.h toplev.h cselib.h $(TM_P_H) \
1668    except.h $(TREE_H)
1669 caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1670    flags.h $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \
1671    $(RECOG_H) reload.h $(EXPR_H) toplev.h $(TM_P_H)
1672 reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) conditions.h \
1673    hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(INSN_ATTR_H) except.h \
1674    $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h $(PARAMS_H) $(TM_P_H)
1675 alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) flags.h \
1676    hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) toplev.h output.h $(EXPR_H) \
1677    $(GGC_H) function.h cselib.h $(TREE_H) $(TM_P_H) langhooks.h $(TARGET_H) \
1678    gt-alias.h $(TIMEVAR_H) cgraph.h
1679 regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) insn-config.h \
1680    $(RECOG_H) output.h $(REGS_H) hard-reg-set.h flags.h function.h \
1681    $(EXPR_H) $(BASIC_BLOCK_H) toplev.h $(TM_P_H) except.h reload.h
1682 haifa-sched.o : haifa-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1683    sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1684    $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
1685 sched-deps.o : sched-deps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1686    sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1687    $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h cselib.h $(PARAMS_H) $(TM_P_H)
1688 sched-rgn.o : sched-rgn.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1689    sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1690    $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
1691 sched-ebb.o : sched-ebb.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1692    sched-int.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
1693    $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(PARAMS_H) profile.h
1694 sched-vis.o : sched-vis.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1695    sched-int.h hard-reg-set.h $(BASIC_BLOCK_H) $(INSN_ATTR_H) $(REGS_H) $(TM_P_H) \
1696    $(TARGET_H) real.h
1697 final.o : final.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1698    flags.h intl.h $(REGS_H) $(RECOG_H) conditions.h insn-config.h $(INSN_ATTR_H) \
1699    function.h real.h output.h hard-reg-set.h except.h debug.h xcoffout.h \
1700    toplev.h reload.h dwarf2out.h $(BASIC_BLOCK_H) $(TM_P_H) $(TARGET_H) \
1701    $(EXPR_H)
1702 recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) function.h \
1703    $(BASIC_BLOCK_H) $(REGS_H) $(RECOG_H) $(EXPR_H) hard-reg-set.h flags.h insn-config.h \
1704    $(INSN_ATTR_H) real.h toplev.h output.h reload.h $(TM_P_H)
1705 reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1706    $(RECOG_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h toplev.h reload.h \
1707    varray.h function.h $(TM_P_H) $(GGC_H) gt-reg-stack.h
1708 sreal.o: sreal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) sreal.h
1709 predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1710    flags.h insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1711    $(RECOG_H) function.h except.h $(EXPR_H) $(TM_P_H) $(PREDICT_H) sreal.h \
1712    $(PARAMS_H) $(TARGET_H) cfgloop.h
1713 lists.o: lists.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h $(RTL_H) $(GGC_H)
1714 bb-reorder.o : bb-reorder.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1715    $(RTL_H) $(BASIC_BLOCK_H) flags.h output.h cfglayout.h $(FIBHEAP_H) \
1716    $(TARGET_H)
1717 tracer.o : tracer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
1718    $(BASIC_BLOCK_H) hard-reg-set.h output.h cfglayout.h flags.h \
1719    $(PARAMS_H) profile.h
1720 cfglayout.o : cfglayout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1721    $(RTL_H) $(TREE_H) insn-config.h $(BASIC_BLOCK_H) hard-reg-set.h output.h \
1722    function.h cfglayout.h cfgloop.h $(TARGET_H)
1723 timevar.o : timevar.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TIMEVAR_H) flags.h \
1724    intl.h toplev.h
1725 regrename.o : regrename.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1726    insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h $(RECOG_H) function.h \
1727    resource.h $(OBSTACK_H) flags.h $(TM_P_H)
1728 ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) toplev.h \
1729    flags.h insn-config.h function.h $(RECOG_H) $(BASIC_BLOCK_H) $(EXPR_H) \
1730    output.h except.h $(TM_P_H) real.h
1731 params.o : params.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(PARAMS_H) toplev.h
1732 hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(HOOKS_H)
1733
1734 $(out_object_file): $(out_file) $(CONFIG_H) coretypes.h $(TM_H) $(TREE_H) $(GGC_H) \
1735    $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \
1736    output.h $(INSN_ATTR_H) $(SYSTEM_H) toplev.h $(TARGET_H) libfuncs.h \
1737    $(TARGET_DEF_H) function.h sched-int.h $(TM_P_H) $(EXPR_H) $(OPTABS_H) \
1738    langhooks.h
1739         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1740                 $(out_file) $(OUTPUT_OPTION)
1741
1742 # Build auxiliary files that support ecoff format.
1743 mips-tfile: mips-tfile.o version.o $(LIBDEPS)
1744         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
1745
1746 mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h $(TM_H) version.h
1747
1748 mips-tdump: mips-tdump.o version.o $(LIBDEPS)
1749         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
1750
1751 mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h $(TM_H)
1752
1753 #\f
1754 # Generate header and source files from the machine description,
1755 # and compile them.
1756
1757 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
1758   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1759   insn-attr.h insn-attrtab.c
1760
1761 # The following pair of rules has this effect:
1762 # genconfig is run only if the md has changed since genconfig was last run;
1763 # but the file insn-config.h is touched only when its contents actually change.
1764
1765 # Each of the other insn-* files is handled by a similar pair of rules.
1766
1767 # This causes an anomaly in the results of make -n
1768 # because insn-* is older than s-*
1769 # and thus make -n thinks that insn-* will be updated
1770 # and force recompilation of things that depend on it.
1771 # We use move-if-change precisely to avoid such recompilation.
1772 # But there is no way to teach make -n that it will be avoided.
1773
1774 # Each of the insn-*.[ch] rules has a semicolon at the end,
1775 # for otherwise the system Make on SunOS 4.1 never tries
1776 # to recompile insn-*.o.  To avoid problems and extra noise from
1777 # versions of make which don't like empty commands (nothing after the
1778 # trailing `;'), we call true for each.
1779
1780 insn-config.h: s-config ; @true
1781 s-config : $(md_file) genconfig$(build_exeext) $(srcdir)/move-if-change
1782         $(RUN_GEN) ./genconfig$(build_exeext) $(md_file) > tmp-config.h
1783         $(SHELL) $(srcdir)/move-if-change tmp-config.h insn-config.h
1784         $(STAMP) s-config
1785
1786 insn-conditions.c: s-conditions ; @true
1787 s-conditions : $(md_file) genconditions$(build_exeext) $(srcdir)/move-if-change
1788         $(RUN_GEN) ./genconditions$(build_exeext) $(md_file) > tmp-conditions.c
1789         $(SHELL) $(srcdir)/move-if-change tmp-conditions.c insn-conditions.c
1790         $(STAMP) s-conditions
1791
1792 insn-conditions.o : insn-conditions.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
1793   $(GTM_H) $(RTL_H) $(TM_P_H) $(REGS_H) function.h $(RECOG_H) real.h output.h \
1794   flags.h hard-reg-set.h resource.h toplev.h reload.h gensupport.h \
1795   insn-constants.h
1796         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) insn-conditions.c
1797
1798 dummy-conditions.o : dummy-conditions.c $(BCONFIG_H) $(SYSTEM_H) \
1799   coretypes.h $(GTM_H) gensupport.h
1800         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
1801             $(srcdir)/dummy-conditions.c $(OUTPUT_OPTION)
1802
1803 insn-flags.h: s-flags ; @true
1804 s-flags : $(md_file) genflags$(build_exeext) $(srcdir)/move-if-change
1805         $(RUN_GEN) ./genflags$(build_exeext) $(md_file) > tmp-flags.h
1806         $(SHELL) $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1807         $(STAMP) s-flags
1808
1809 insn-codes.h: s-codes ; @true
1810 s-codes : $(md_file) gencodes$(build_exeext) $(srcdir)/move-if-change
1811         $(RUN_GEN) ./gencodes$(build_exeext) $(md_file) > tmp-codes.h
1812         $(SHELL) $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1813         $(STAMP) s-codes
1814
1815 insn-constants.h: s-constants ; @true
1816 s-constants : $(md_file) genconstants$(build_exeext) $(srcdir)/move-if-change
1817         $(RUN_GEN) ./genconstants$(build_exeext) $(md_file) > tmp-constants.h
1818         $(SHELL) $(srcdir)/move-if-change tmp-constants.h insn-constants.h
1819         $(STAMP) s-constants
1820
1821 insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1822   $(RTL_H) $(EXPR_H) real.h output.h insn-config.h $(OPTABS_H) reload.h \
1823   $(RECOG_H) toplev.h function.h flags.h hard-reg-set.h resource.h $(TM_P_H)
1824         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c \
1825           $(OUTPUT_OPTION)
1826
1827 insn-emit.c: s-emit ; @true
1828 s-emit : $(md_file) genemit$(build_exeext) $(srcdir)/move-if-change
1829         $(RUN_GEN) ./genemit$(build_exeext) $(md_file) > tmp-emit.c
1830         $(SHELL) $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1831         $(STAMP) s-emit
1832
1833 insn-recog.o : insn-recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1834   $(RTL_H) insn-config.h $(RECOG_H) real.h output.h flags.h  function.h \
1835   hard-reg-set.h resource.h $(TM_P_H) toplev.h reload.h
1836         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c \
1837           $(OUTPUT_OPTION)
1838
1839 insn-recog.c: s-recog ; @true
1840 s-recog : $(md_file) genrecog$(build_exeext) $(srcdir)/move-if-change
1841         $(RUN_GEN) ./genrecog$(build_exeext) $(md_file) > tmp-recog.c
1842         $(SHELL) $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1843         $(STAMP) s-recog
1844
1845 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1846   $(RTL_H) insn-config.h flags.h $(RECOG_H) $(EXPR_H) $(OPTABS_H) reload.h
1847         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c \
1848           $(OUTPUT_OPTION)
1849
1850 insn-opinit.c: s-opinit ; @true
1851 s-opinit : $(md_file) genopinit$(build_exeext) $(srcdir)/move-if-change
1852         $(RUN_GEN) ./genopinit$(build_exeext) $(md_file) > tmp-opinit.c
1853         $(SHELL) $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1854         $(STAMP) s-opinit
1855
1856 insn-extract.o : insn-extract.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1857   $(RTL_H) toplev.h insn-config.h $(RECOG_H)
1858         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c \
1859           $(OUTPUT_OPTION)
1860
1861 insn-extract.c: s-extract ; @true
1862 s-extract : $(md_file) genextract$(build_exeext) $(srcdir)/move-if-change
1863         $(RUN_GEN) ./genextract$(build_exeext) $(md_file) > tmp-extract.c
1864         $(SHELL) $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1865         $(STAMP) s-extract
1866
1867 insn-peep.o : insn-peep.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1868   $(RTL_H) $(REGS_H) output.h real.h insn-config.h $(RECOG_H) except.h \
1869   function.h $(TM_P_H)
1870         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c \
1871           $(OUTPUT_OPTION)
1872
1873 insn-peep.c: s-peep ; @true
1874 s-peep : $(md_file) genpeep$(build_exeext) $(srcdir)/move-if-change
1875         $(RUN_GEN) ./genpeep$(build_exeext) $(md_file) > tmp-peep.c
1876         $(SHELL) $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1877         $(STAMP) s-peep
1878
1879 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1880   $(RTL_H) $(REGS_H) real.h output.h $(INSN_ATTR_H) insn-config.h toplev.h \
1881   $(RECOG_H) $(TM_P_H) flags.h
1882         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c \
1883           $(OUTPUT_OPTION)
1884
1885 insn-attr.h: s-attr ; @true
1886 s-attr : $(md_file) genattr$(build_exeext) $(srcdir)/move-if-change
1887         $(RUN_GEN) ./genattr$(build_exeext) $(md_file) > tmp-attr.h
1888         $(SHELL) $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1889         $(STAMP) s-attr
1890
1891 insn-attrtab.c: s-attrtab ; @true
1892 s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change
1893         $(RUN_GEN) ./genattrtab$(build_exeext) $(md_file) > tmp-attrtab.c
1894         $(SHELL) $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1895         $(STAMP) s-attrtab
1896
1897 insn-output.o : insn-output.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1898   $(RTL_H) $(GGC_H) $(REGS_H) real.h conditions.h hard-reg-set.h \
1899   insn-config.h $(INSN_ATTR_H) $(EXPR_H) output.h $(RECOG_H) function.h \
1900   toplev.h flags.h insn-codes.h $(TM_P_H) $(TARGET_H)
1901         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c \
1902           $(OUTPUT_OPTION)
1903
1904 insn-output.c: s-output ; @true
1905 s-output : $(md_file) genoutput$(build_exeext) $(srcdir)/move-if-change
1906         $(RUN_GEN) ./genoutput$(build_exeext) $(md_file) > tmp-output.c
1907         $(SHELL) $(srcdir)/move-if-change tmp-output.c insn-output.c
1908         $(STAMP) s-output
1909
1910 genrtl.o : genrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1911   $(GGC_H)
1912 genrtl.c genrtl.h : s-genrtl
1913         @true   # force gnu make to recheck modification times.
1914
1915 s-genrtl: gengenrtl$(build_exeext) $(srcdir)/move-if-change $(RTL_BASE_H)
1916         $(RUN_GEN) ./gengenrtl$(build_exeext) -h > tmp-genrtl.h
1917         $(SHELL) $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
1918         $(RUN_GEN) ./gengenrtl$(build_exeext) > tmp-genrtl.c
1919         $(SHELL) $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
1920         $(STAMP) s-genrtl
1921
1922 tm-preds.h: s-preds; @true
1923
1924 s-preds: genpreds$(build_exeext) $(srcdir)/move-if-change
1925         $(RUN_GEN) ./genpreds$(build_exeext) > tmp-preds.h
1926         $(SHELL) $(srcdir)/move-if-change tmp-preds.h tm-preds.h
1927         $(STAMP) s-preds
1928
1929 GTFILES = $(srcdir)/location.h $(srcdir)/coretypes.h $(srcdir)/cpplib.h \
1930   $(host_xm_file_list) $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) \
1931   $(srcdir)/bitmap.h $(srcdir)/function.h  $(srcdir)/rtl.h $(srcdir)/optabs.h \
1932   $(srcdir)/tree.h $(srcdir)/libfuncs.h $(srcdir)/hashtable.h $(srcdir)/real.h \
1933   $(srcdir)/varray.h $(srcdir)/ssa.h $(srcdir)/insn-addr.h $(srcdir)/cselib.h \
1934   $(srcdir)/basic-block.h $(srcdir)/location.h \
1935   $(srcdir)/c-common.h $(srcdir)/c-tree.h \
1936   $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \
1937   $(srcdir)/dbxout.c $(srcdir)/dwarf2out.c $(srcdir)/dwarf2asm.c \
1938   $(srcdir)/emit-rtl.c $(srcdir)/except.c $(srcdir)/explow.c $(srcdir)/expr.c \
1939   $(srcdir)/fold-const.c $(srcdir)/function.c \
1940   $(srcdir)/gcse.c $(srcdir)/integrate.c $(srcdir)/lists.c $(srcdir)/optabs.c \
1941   $(srcdir)/profile.c $(srcdir)/ra-build.c $(srcdir)/regclass.c \
1942   $(srcdir)/reg-stack.c \
1943   $(srcdir)/sdbout.c $(srcdir)/stmt.c $(srcdir)/stor-layout.c \
1944   $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \
1945   $(out_file) \
1946   @all_gtfiles@
1947
1948 GTFILES_FILES_LANGS = @all_gtfiles_files_langs@
1949 GTFILES_FILES_FILES = @all_gtfiles_files_files@
1950 GTFILES_LANG_DIR_NAMES = @subdirs@
1951 GTFILES_SRCDIR = @srcdir@
1952
1953 gt-cgraph.h gtype-desc.h gtype-desc.c gt-except.h gt-function.h : s-gtype; @true
1954 gt-integrate.h gt-stmt.h gt-tree.h gt-varasm.h gt-emit-rtl.h : s-gtype; @true
1955 gt-explow.h gt-stor-layout.h gt-regclass.h gt-lists.h : s-gtype; @true
1956 gt-alias.h gt-cselib.h gt-fold-const.h gt-gcse.h gt-profile.h : s-gtype; @true
1957 gt-expr.h gt-sdbout.h gt-optabs.h gt-bitmap.h gt-dwarf2out.h : s-gtype ; @true
1958 gt-ra-build.h gt-reg-stack.h gt-dwarf2asm.h gt-dbxout.h : s-gtype ; @true
1959 gt-c-common.h gt-c-decl.h gt-c-parse.h gt-c-pragma.h : s-gtype; @true
1960 gt-c-objc-common.h gtype-c.h gt-location.h gt-stringpool.h : s-gtype ; @true
1961
1962 gtyp-gen.h: Makefile
1963         echo "/* This file is machine generated.  Do not edit.  */" > tmp-gtyp.h
1964         echo "static const char *const srcdir = "  >> tmp-gtyp.h
1965         echo "\"$(GTFILES_SRCDIR)\"" >> tmp-gtyp.h
1966         echo ";" >> tmp-gtyp.h
1967         echo "static const char *const lang_files[] = {" >> tmp-gtyp.h
1968         ll="$(GTFILES_FILES_FILES)"; \
1969         for f in $$ll; do \
1970         echo "\"$$f\", "; done >> tmp-gtyp.h
1971         echo "NULL};" >> tmp-gtyp.h
1972         echo "static const char *const langs_for_lang_files[] = {" >> tmp-gtyp.h
1973         ff="$(GTFILES_FILES_LANGS)"; \
1974         for f in $$ff; do \
1975         echo "\"$$f\", " ; done  >> tmp-gtyp.h
1976         echo "NULL};" >> tmp-gtyp.h
1977         echo "static const char *const all_files[] = {" >> tmp-gtyp.h
1978         gf="$(GTFILES)"; \
1979         for f in $$gf; do \
1980         echo "\"$$f\", "; done >> tmp-gtyp.h
1981         echo " NULL};" >> tmp-gtyp.h
1982         echo "static const char *const lang_dir_names[] = { \"c\", " >> tmp-gtyp.h
1983         gf="$(GTFILES_LANG_DIR_NAMES)"; \
1984         for l in $$gf; do \
1985         echo "\"$$l\", "; done >> tmp-gtyp.h
1986         echo "NULL};" >> tmp-gtyp.h
1987         $(SHELL) $(srcdir)/move-if-change tmp-gtyp.h gtyp-gen.h 
1988
1989 s-gtype: gengtype$(build_exeext) $(GTFILES)
1990         $(RUN_GEN) ./gengtype
1991         $(STAMP) s-gtype
1992
1993 #\f
1994 # Compile the programs that generate insn-* from the machine description.
1995 # They are compiled with $(BUILD_CC), and associated libraries,
1996 # since they need to run on this machine
1997 # even if GCC is being compiled to run on some other machine.
1998
1999 # $(CONFIG_H) is omitted from the deps of the gen*.o
2000 # because these programs don't really depend on anything
2001 # about the target machine.  They do depend on config.h itself,
2002 # since that describes the host machine.
2003
2004 read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
2005   $(OBSTACK_H) $(HASHTAB_H)
2006         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/read-rtl.c $(OUTPUT_OPTION)
2007
2008 gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(RTL_H) \
2009   $(OBSTACK_H) errors.h $(HASHTAB_H) gensupport.h
2010         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c $(OUTPUT_OPTION)
2011
2012 genconfig$(build_exeext) : genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2013   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2014         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2015           genconfig.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2016             $(BUILD_ERRORS) $(BUILD_LIBS)
2017
2018 genconfig.o : genconfig.c $(RTL_H) $(BCONFIG_H) \
2019   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2020         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c $(OUTPUT_OPTION)
2021
2022 genflags$(build_exeext) : genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2023   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2024         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2025          genflags.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2026             $(BUILD_ERRORS) $(BUILD_LIBS)
2027
2028 genflags.o : genflags.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2029   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2030         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c $(OUTPUT_OPTION)
2031
2032 gencodes$(build_exeext) : gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2033   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2034         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2035          gencodes.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2036             $(BUILD_ERRORS) $(BUILD_LIBS)
2037
2038 gencodes.o : gencodes.c $(RTL_H) $(BCONFIG_H) \
2039   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2040         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c $(OUTPUT_OPTION)
2041
2042 genconstants$(build_exeext) : genconstants.o $(BUILD_RTL) $(BUILD_EARLY_SUPPORT) \
2043   $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2044         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2045          genconstants.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
2046             $(BUILD_ERRORS) $(BUILD_LIBS)
2047
2048 genconstants.o : genconstants.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2049   errors.h
2050         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genconstants.c $(OUTPUT_OPTION)
2051
2052 genemit$(build_exeext) : genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2053   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2054         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2055          genemit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2056             $(BUILD_ERRORS) $(BUILD_LIBS)
2057
2058 genemit.o : genemit.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2059   errors.h gensupport.h
2060         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c $(OUTPUT_OPTION)
2061
2062 genopinit$(build_exeext) : genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2063   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2064         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2065          genopinit.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2066             $(BUILD_ERRORS) $(BUILD_LIBS)
2067
2068 genopinit.o : genopinit.c $(RTL_H) $(BCONFIG_H) \
2069   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2070         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c $(OUTPUT_OPTION)
2071
2072 genrecog$(build_exeext) : genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2073     $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2074         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2075          genrecog.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2076             $(BUILD_ERRORS) $(BUILD_LIBS)
2077
2078 genrecog.o : genrecog.c $(RTL_H) $(BCONFIG_H) \
2079   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2080         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c $(OUTPUT_OPTION)
2081
2082 genextract$(build_exeext) : genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2083   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2084         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2085          genextract.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2086             $(BUILD_ERRORS) $(BUILD_LIBS)
2087
2088 genextract.o : genextract.c $(RTL_H) $(BCONFIG_H) \
2089   $(SYSTEM_H) coretypes.h $(GTM_H) insn-config.h errors.h gensupport.h
2090         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c $(OUTPUT_OPTION)
2091
2092 genpeep$(build_exeext) : genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2093   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2094         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2095          genpeep.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2096             $(BUILD_ERRORS) $(BUILD_LIBS)
2097
2098 genpeep.o : genpeep.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2099   errors.h gensupport.h
2100         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c $(OUTPUT_OPTION)
2101
2102 genattr$(build_exeext) : genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2103   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2104         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2105          genattr.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2106             $(BUILD_ERRORS) $(BUILD_LIBS)
2107
2108 genattr.o : genattr.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h \
2109   gensupport.h
2110         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c $(OUTPUT_OPTION)
2111
2112 genattrtab$(build_exeext) : genattrtab.o genautomata.o \
2113   $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_VARRAY) \
2114   $(BUILD_LIBDEPS)
2115         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2116          genattrtab.o genautomata.o \
2117          $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) $(BUILD_ERRORS) \
2118          $(BUILD_VARRAY) $(BUILD_LIBS) -lm
2119
2120 genattrtab.o : genattrtab.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2121   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) gensupport.h genattrtab.h
2122         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c $(OUTPUT_OPTION)
2123
2124 genautomata.o : genautomata.c $(RTL_H) $(OBSTACK_H) $(BCONFIG_H) \
2125   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h varray.h genattrtab.h $(HASHTAB_H)
2126         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genautomata.c $(OUTPUT_OPTION)
2127
2128 genoutput$(build_exeext) : genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) \
2129   $(BUILD_PRINT) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2130         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2131          genoutput.o $(BUILD_RTL) $(BUILD_SUPPORT) $(BUILD_PRINT) \
2132             $(BUILD_ERRORS) $(BUILD_LIBS)
2133
2134 genoutput.o : genoutput.c $(RTL_H) $(BCONFIG_H) \
2135   $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
2136         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c $(OUTPUT_OPTION)
2137
2138 gengenrtl$(build_exeext) : gengenrtl.o $(BUILD_LIBDEPS)
2139         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2140          gengenrtl.o $(BUILD_LIBS)
2141
2142 gengenrtl.o : gengenrtl.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2143   $(GTM_H) real.h
2144         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c $(OUTPUT_OPTION)
2145
2146 genpreds$(build_exeext) : genpreds.o $(BUILD_LIBDEPS)
2147         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2148          genpreds.o $(BUILD_LIBS)
2149
2150 genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2151         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/genpreds.c $(OUTPUT_OPTION)
2152
2153 gengtype$(build_exeext) : gengtype.o gengtype-lex.o gengtype-yacc.o \
2154   $(BUILD_LIBDEPS)
2155         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2156          gengtype.o gengtype-lex.o gengtype-yacc.o $(BUILD_LIBS)
2157
2158 gengtype.o : gengtype.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) \
2159   real.h rtl.def gtyp-gen.h
2160         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2161           $(srcdir)/gengtype.c $(OUTPUT_OPTION)
2162
2163 gengtype-lex.o : $(parsedir)/gengtype-lex.c gengtype.h $(parsedir)/gengtype-yacc.c \
2164   $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H)
2165         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2166           $(parsedir)/gengtype-lex.c $(OUTPUT_OPTION)
2167
2168 gengtype-yacc.o : $(parsedir)/gengtype-yacc.c gengtype.h $(BCONFIG_H) $(SYSTEM_H) \
2169   coretypes.h $(GTM_H)
2170         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2171           $(parsedir)/gengtype-yacc.c $(OUTPUT_OPTION)
2172
2173 # The sed command works around a bug in flex-2.5.4.
2174 $(parsedir)/gengtype-lex.c : $(srcdir)/gengtype-lex.l
2175         $(FLEX) $(FLEXFLAGS) -t -o- $(srcdir)/gengtype-lex.l | \
2176           sed 's/^\(char msg\[\];\)/yyconst \1/' > g-$$$$ ; \
2177         if test $$? -eq 0 ; then \
2178           mv -f g-$$$$ $(parsedir)/gengtype-lex.c ; \
2179         else \
2180           rm -f g-$$$$ ; \
2181           false ; \
2182         fi
2183
2184 $(parsedir)/gengtype-yacc.c: $(srcdir)/gengtype-yacc.y
2185         if $(BISON) $(BISONFLAGS) -d -o g-yacc.$$$$.c $(srcdir)/gengtype-yacc.y; then \
2186           mv -f g-yacc.$$$$.h $(parsedir)/gengtype-yacc.h; \
2187           mv -f g-yacc.$$$$.c $(parsedir)/gengtype-yacc.c; \
2188         else \
2189           rm -f g-yacc.$$$$.*; \
2190           false; \
2191         fi
2192
2193 genconditions$(build_exeext) : genconditions.o $(BUILD_EARLY_SUPPORT) \
2194   $(BUILD_RTL) $(BUILD_ERRORS) $(BUILD_LIBDEPS)
2195         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2196          genconditions.o $(BUILD_EARLY_SUPPORT) $(BUILD_RTL) \
2197             $(BUILD_ERRORS) $(BUILD_LIBS)
2198
2199 genconditions.o : genconditions.c $(RTL_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2200   $(GTM_H) errors.h
2201         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2202                 $(srcdir)/genconditions.c $(OUTPUT_OPTION)
2203
2204 #\f
2205 # Compile the libraries to be used by gen*.
2206 # If we are not cross-building, gen* use the same .o's that cc1 will use,
2207 # and BUILD_PREFIX_1 is `loser-', just to ensure these rules don't conflict
2208 # with the rules for rtl.o, etc.
2209 $(BUILD_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) $(RTL_H) \
2210   real.h $(GGC_H) errors.h
2211         rm -f $(BUILD_PREFIX)rtl.c
2212         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/rtl.c > $(BUILD_PREFIX)rtl.c
2213         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION)
2214
2215 print-rtl1.o: $(srcdir)/print-rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) \
2216   $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H)
2217         rm -f print-rtl1.c
2218         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/print-rtl.c > print-rtl1.c
2219         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) print-rtl1.c $(OUTPUT_OPTION)
2220
2221 $(BUILD_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \
2222   $(RTL_H) flags.h $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
2223         rm -f $(BUILD_PREFIX)bitmap.c
2224         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/bitmap.c > $(BUILD_PREFIX)bitmap.c
2225         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION)
2226
2227 $(BUILD_PREFIX_1)errors.o: errors.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) errors.h
2228         rm -f $(BUILD_PREFIX)errors.c
2229         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/errors.c > $(BUILD_PREFIX)errors.c
2230         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION)
2231
2232 $(BUILD_PREFIX_1)varray.o: varray.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) varray.h \
2233   $(RTL_H) $(GGC_H) $(TREE_H) bitmap.h errors.h
2234         rm -f $(BUILD_PREFIX)varray.c
2235         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/varray.c > \
2236                 $(BUILD_PREFIX)varray.c
2237         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
2238                 $(BUILD_PREFIX)varray.c $(OUTPUT_OPTION)
2239
2240 $(BUILD_PREFIX_1)ggc-none.o: ggc-none.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) $(GGC_H)
2241         rm -f $(BUILD_PREFIX)ggc-none.c
2242         sed -e 's/config[.]h/bconfig.h/' $(srcdir)/ggc-none.c > $(BUILD_PREFIX)ggc-none.c
2243         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION)
2244
2245 #\f
2246 # Remake internationalization support.
2247 intl.o: intl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h Makefile
2248         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2249           -DLOCALEDIR=\"$(localedir)\" \
2250           -c $(srcdir)/intl.c $(OUTPUT_OPTION)
2251
2252 $(top_builddir)/intl/libintl.a: intl.all
2253
2254 intl.all intl.install intl.uninstall \
2255   intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
2256         @for d in $(INTL_SUBDIRS); do \
2257           target=`expr $@ : 'intl.\(.*\)'` && \
2258           echo "(cd $$d && $(MAKE) $$target)" && \
2259           (cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
2260           if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
2261         done
2262
2263 # intl.all and intl.install need config.h to exist, and the files it includes.
2264 # (FIXME: intl/*.c shouldn't need to see insn-foo.h!)
2265 intl.all intl.install: config.h insn-flags.h insn-constants.h
2266
2267 # Make-lang.in should add dependencies of po-generated on any generated
2268 # files which need to be scanned by gettext (usually Yacc-generated parsers).
2269 po-generated: $(parsedir)/c-parse.c
2270
2271 #\f
2272 # Remake cpp and protoize.
2273
2274 PREPROCESSOR_DEFINES = \
2275   -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
2276   -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
2277   -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_alias)\" \
2278   -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
2279   -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
2280   -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
2281   -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
2282   @TARGET_SYSTEM_ROOT_DEFINE@
2283
2284 LIBCPP_OBJS =   cpplib.o cpplex.o cppmacro.o cppexp.o cppfiles.o cpptrad.o \
2285                 cpphash.o cpperror.o cppinit.o \
2286                 hashtable.o line-map.o mkdeps.o prefix.o mbchar.o cpppch.o
2287
2288 LIBCPP_DEPS =   $(CPPLIB_H) cpphash.h line-map.h hashtable.h intl.h \
2289                 $(OBSTACK_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
2290
2291 # Most of the other archives built/used by this makefile are for
2292 # targets.  This one is strictly for the host.
2293 libcpp.a: $(LIBCPP_OBJS)
2294         -rm -rf libcpp.a
2295         $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
2296         -$(RANLIB) libcpp.a
2297
2298 cpperror.o: cpperror.c $(LIBCPP_DEPS)
2299 cppexp.o:   cppexp.c   $(LIBCPP_DEPS)
2300 cpplex.o:   cpplex.c   $(LIBCPP_DEPS) mbchar.h
2301 cppmacro.o: cppmacro.c $(LIBCPP_DEPS)
2302 cpplib.o:   cpplib.c   $(LIBCPP_DEPS)
2303 cpphash.o:  cpphash.c  $(LIBCPP_DEPS)
2304 cpptrad.o:  cpptrad.c  $(LIBCPP_DEPS)
2305 cppfiles.o: cppfiles.c $(LIBCPP_DEPS) $(SPLAY_TREE_H) mkdeps.h
2306 cppinit.o:  cppinit.c  $(LIBCPP_DEPS) mkdeps.h prefix.h
2307 cpppch.o:   cpppch.c   $(LIBCPP_DEPS) mkdeps.h
2308
2309 cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2310         cppdefault.h Makefile
2311         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2312           $(PREPROCESSOR_DEFINES) \
2313           -c $(srcdir)/cppdefault.c $(OUTPUT_OPTION)
2314
2315 mkdeps.o: mkdeps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) mkdeps.h
2316
2317 # Note for the stamp targets, we run the program `true' instead of
2318 # having an empty command (nothing following the semicolon).
2319
2320 proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
2321
2322 PROTO_OBJS = intl.o version.o cppdefault.o
2323
2324 protoize$(exeext): protoize.o $(PROTO_OBJS) $(LIBDEPS)
2325         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ protoize.o $(PROTO_OBJS) $(LIBS)
2326
2327 unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS)
2328         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ unprotoize.o $(PROTO_OBJS) $(LIBS)
2329
2330 protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) $(SYSTEM_H) \
2331    coretypes.h $(TM_H) Makefile version.h
2332         (SHLIB_LINK='$(SHLIB_LINK)' \
2333         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
2334         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2335           $(DRIVER_DEFINES) \
2336           $(srcdir)/protoize.c $(OUTPUT_OPTION))
2337
2338 unprotoize.o: protoize.c $(srcdir)/../include/getopt.h \
2339    $(CONFIG_H) $(SYSTEM_H) Makefile version.h
2340         (SHLIB_LINK='$(SHLIB_LINK)' \
2341         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
2342         $(CC) -c -DUNPROTOIZE $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2343           $(DRIVER_DEFINES) \
2344           $(srcdir)/protoize.c $(OUTPUT_OPTION))
2345
2346 # This info describes the target machine, so compile with GCC just built.
2347 SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
2348    stmp-int-hdrs
2349         -rm -f SYSCALLS.c tmp-SYSCALLS.s
2350         sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2351           $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
2352         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2353           -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
2354         -rm -f SYSCALLS.c tmp-SYSCALLS.s
2355
2356
2357 test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
2358         -rm -f tmp-proto.[cso]
2359         cp $(srcdir)/protoize.c tmp-proto.c
2360         chmod u+w tmp-proto.c
2361         ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
2362           $(GCC_CFLAGS) $(INCLUDES) \
2363           -DGCC_INCLUDE_DIR=0 \
2364           -DGPLUSPLUS_INCLUDE_DIR=0 \
2365           -DCROSS_INCLUDE_DIR=0 \
2366           -DTOOL_INCLUDE_DIR=0 \
2367           -DSTANDARD_EXEC_PREFIX=0 \
2368           -DDEFAULT_TARGET_MACHINE=0 \
2369           -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
2370         @echo '**********' Expect 400 lines of differences.
2371         -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
2372         -wc -l tmp-proto.diff
2373         ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
2374           $(GCC_CFLAGS) $(INCLUDES) \
2375           -DGCC_INCLUDE_DIR=0 \
2376           -DGPLUSPLUS_INCLUDE_DIR=0 \
2377           -DCROSS_INCLUDE_DIR=0 \
2378           -DTOOL_INCLUDE_DIR=0 \
2379           -DSTANDARD_EXEC_PREFIX=0 \
2380           -DDEFAULT_TARGET_MACHINE=0 \
2381           -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
2382         @echo Expect zero differences.
2383         diff $(srcdir)/protoize.c tmp-proto.c | cat
2384         -rm -f tmp-proto.[cs] tmp-proto$(objext)
2385
2386 # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
2387 gcov-iov.o: gcov-iov.c version.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) coretypes.h $(TM_H)
2388         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gcov-iov.c $(OUTPUT_OPTION)
2389 gcov-iov$(build_exeext): gcov-iov.o
2390         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) gcov-iov.o -o $@
2391 gcov-iov.h: gcov-iov$(build_exeext)
2392         ./gcov-iov$(build_exeext) > $@
2393
2394 gcov.o: gcov.c gcov-io.h gcov-iov.h intl.h $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H)
2395 gcov-dump.o: gcov-dump.c gcov-io.h gcov-iov.h $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H)
2396
2397 # Only one of 'gcov' or 'gcov.exe' is actually built, depending
2398 # upon whether $(exeext) is empty or not.
2399 GCOV_OBJS = gcov.o intl.o version.o
2400 gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
2401         $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
2402 GCOV_DUMP_OBJS = gcov-dump.o version.o
2403 gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS)
2404         $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) $(LIBS) -o $@
2405 #\f
2406 # Build the include directory.  The stamp files are stmp-* rather than
2407 # s-* so that mostlyclean does not force the include directory to
2408 # be rebuilt.
2409
2410 # Build the include directory
2411 stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h
2412 # Copy in the headers provided with gcc.
2413 # The sed command gets just the last file name component;
2414 # this is necessary because VPATH could add a dirname.
2415 # Using basename would be simpler, but some systems don't have it.
2416 # The touch command is here to workaround an AIX/Linux NFS bug.
2417         -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
2418         for file in .. $(USER_H); do \
2419           if [ X$$file != X.. ]; then \
2420             realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2421             $(STAMP) include/$$realfile; \
2422             rm -f include/$$realfile; \
2423             cp $$file include; \
2424             chmod a+r include/$$realfile; \
2425           fi; \
2426         done
2427         rm -f include/limits.h
2428         cp xlimits.h include/limits.h
2429         chmod a+r include/limits.h
2430 # Install the README
2431         rm -f include/README
2432         cp $(srcdir)/README-fixinc include/README
2433         chmod a+r include/README
2434         $(STAMP) $@
2435
2436 # fixinc.sh depends on this, not on specs directly.
2437 # The idea is to make sure specs gets built, but not rerun fixinc.sh
2438 # after each stage just because specs' mtime has changed.
2439 specs.ready: specs
2440         -if [ -f specs.ready ] ; then \
2441                 true; \
2442         else \
2443                 $(STAMP) specs.ready; \
2444         fi
2445
2446 FIXINCSRCDIR=$(srcdir)/fixinc
2447 fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
2448         $(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
2449         $(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
2450         $(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
2451         (MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && ${PWD}` ; \
2452         CC="$(BUILD_CC)"; CFLAGS="$(BUILD_CFLAGS)"; LDFLAGS="$(BUILD_LDFLAGS)"; \
2453         WARN_CFLAGS="$(WARN_CFLAGS)"; \
2454         export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
2455         $(SHELL) $${srcdir}/mkfixinc.sh $(build_canonical) $(target))
2456
2457 .PHONY: install-gcc-tooldir
2458 install-gcc-tooldir:
2459         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(gcc_tooldir)
2460
2461 # Build fixed copies of system files.
2462 stmp-fixinc: fixinc.sh gsyslimits.h
2463         @if test ! -d ${SYSTEM_HEADER_DIR}; then \
2464           echo The directory that should contain system headers does not exist: >&2 ; \
2465           echo "  ${SYSTEM_HEADER_DIR}" >&2 ; \
2466           if test "x${SYSTEM_HEADER_DIR}" = "x${gcc_tooldir}/sys-include"; \
2467           then sleep 1; else exit 1; fi; \
2468         fi
2469         rm -rf include; mkdir include
2470         -chmod a+rx include
2471         (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD}`; \
2472         SHELL='$(SHELL)' ;\
2473         export TARGET_MACHINE srcdir SHELL ; \
2474         $(SHELL) ./fixinc.sh `${PWD}`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); \
2475         rm -f include/syslimits.h; \
2476         if [ -f include/limits.h ]; then \
2477           mv include/limits.h include/syslimits.h; \
2478         else \
2479           cp $(srcdir)/gsyslimits.h include/syslimits.h; \
2480         fi; \
2481         chmod a+r include/syslimits.h)
2482         $(STAMP) stmp-fixinc
2483
2484 # Files related to the fixproto script.
2485 # gen-protos and fix-header are compiled with BUILD_CC, but they are only
2486 # used in native and host-x-target builds, so it's safe to link them with
2487 # libiberty.a.
2488
2489 deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
2490         if [ -d "$(SYSTEM_HEADER_DIR)" ]; \
2491         then \
2492           CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -isystem include -isystem ${SYSTEM_HEADER_DIR}"; \
2493           export CC; \
2494           $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
2495           mv tmp-deduced.h deduced.h; \
2496         else \
2497           $(STAMP) deduced.h; \
2498         fi
2499
2500 GEN_PROTOS_OBJS = gen-protos.o scan.o
2501 gen-protos$(build_exeext): $(GEN_PROTOS_OBJS)
2502         ${BUILD_CC} $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ \
2503           $(GEN_PROTOS_OBJS) $(BUILD_LIBS)
2504
2505 gen-protos.o: gen-protos.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2506         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c $(OUTPUT_OPTION)
2507
2508 scan.o: scan.c scan.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2509         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c $(OUTPUT_OPTION)
2510
2511 xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos$(build_exeext) Makefile
2512         sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2513           deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
2514         mv tmp-fixtmp.c fixtmp.c
2515         $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
2516           | sed -e 's/  / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
2517           | $(RUN_GEN) ./gen-protos >xsys-protos.hT
2518         mv xsys-protos.hT xsys-protos.h
2519         rm -rf fixtmp.c
2520
2521 # This is nominally a 'build' program, but it's run only when host==build,
2522 # so we can (indeed, must) use $(LIBDEPS) and $(LIBS).
2523 fix-header$(build_exeext): fix-header.o scan-decls.o scan.o xsys-protos.h \
2524            c-incpath.o cppdefault.o $(LIBDEPS) libcpp.a
2525         $(BUILD_CC) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o $@ fix-header.o \
2526            c-incpath.o cppdefault.o scan-decls.o scan.o libcpp.a $(LIBS)
2527
2528 fix-header.o: fix-header.c $(OBSTACK_H) scan.h \
2529         xsys-protos.h $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) $(CPPLIB_H)
2530         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c $(OUTPUT_OPTION)
2531
2532 scan-decls.o: scan-decls.c scan.h $(CPPLIB_H) $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H)
2533         $(BUILD_CC) -c $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c $(OUTPUT_OPTION)
2534
2535 # stmp-fixproto depends on this, not on fix-header directly.
2536 # The idea is to make sure fix-header gets built,
2537 # but not rerun fixproto after each stage
2538 # just because fix-header's mtime has changed.
2539 fixhdr.ready: fix-header$(build_exeext)
2540         -if [ -f fixhdr.ready ] ; then \
2541                 true; \
2542         else \
2543                 $(STAMP) fixhdr.ready; \
2544         fi
2545
2546 # stmp-int-headers is to make sure fixincludes has already finished.
2547 # The if statement is so that we don't run fixproto a second time
2548 # if it has already been run on the files in `include'.
2549 stmp-fixproto: fixhdr.ready fixproto stmp-int-hdrs
2550         if [ -f include/fixed ] ; then true; \
2551         else \
2552           : This line works around a 'make' bug in BSDI 1.1.; \
2553           FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
2554           mkinstalldirs="$(SHELL) $(srcdir)/mkinstalldirs"; \
2555             export mkinstalldirs; \
2556           if [ -d "$(SYSTEM_HEADER_DIR)" ]; then \
2557             $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
2558             if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
2559           else true; fi; \
2560           $(STAMP) include/fixed; \
2561         fi
2562         $(STAMP) stmp-fixproto
2563 #\f
2564 # Remake the info files.
2565
2566 docdir = $(srcdir)/doc
2567
2568 doc: $(BUILD_INFO) $(GENERATED_MANPAGES) gccbug
2569 info: $(docobjdir)/cpp.info $(docobjdir)/gcc.info $(docobjdir)/gccint.info $(docobjdir)/gccinstall.info lang.info $(docobjdir)/cppinternals.info
2570
2571 TEXI_CPP_FILES = $(docdir)/cpp.texi $(docdir)/include/fdl.texi \
2572   $(docdir)/cppenv.texi $(docdir)/cppopts.texi
2573
2574 TEXI_GCC_FILES = $(docdir)/gcc.texi $(docdir)/include/gcc-common.texi \
2575          $(docdir)/frontends.texi $(docdir)/standards.texi \
2576          $(docdir)/invoke.texi $(docdir)/extend.texi $(docdir)/md.texi \
2577          $(docdir)/objc.texi $(docdir)/gcov.texi $(docdir)/trouble.texi \
2578          $(docdir)/bugreport.texi $(docdir)/service.texi \
2579          $(docdir)/contribute.texi $(docdir)/vms.texi $(docdir)/compat.texi \
2580          $(docdir)/include/funding.texi $(docdir)/gnu.texi \
2581          $(docdir)/include/gpl.texi $(docdir)/include/fdl.texi \
2582          $(docdir)/contrib.texi $(docdir)/cppenv.texi $(docdir)/cppopts.texi
2583
2584 TEXI_GCCINT_FILES = $(docdir)/gccint.texi \
2585          $(docdir)/include/gcc-common.texi $(docdir)/contribute.texi \
2586          $(docdir)/makefile.texi $(docdir)/configterms.texi \
2587          $(docdir)/portability.texi $(docdir)/interface.texi \
2588          $(docdir)/passes.texi $(docdir)/c-tree.texi \
2589          $(docdir)/rtl.texi $(docdir)/md.texi $(docdir)/tm.texi \
2590          $(docdir)/hostconfig.texi $(docdir)/fragments.texi \
2591          $(docdir)/configfiles.texi $(docdir)/collect2.texi \
2592          $(docdir)/headerdirs.texi $(docdir)/include/funding.texi \
2593          $(docdir)/gnu.texi $(docdir)/include/gpl.texi \
2594          $(docdir)/include/fdl.texi $(docdir)/contrib.texi \
2595          $(docdir)/languages.texi $(docdir)/sourcebuild.texi \
2596          $(docdir)/gty.texi
2597
2598 TEXI_GCCINSTALL_FILES = $(docdir)/install.texi $(docdir)/install-old.texi \
2599          $(docdir)/include/fdl.texi
2600
2601 TEXI_CPPINT_FILES = $(docdir)/cppinternals.texi
2602
2603 $(docobjdir)/cpp.info: $(TEXI_CPP_FILES)
2604         $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2605           -o $@ $(docdir)/cpp.texi
2606
2607 $(docobjdir)/gcc.info: $(TEXI_GCC_FILES)
2608         $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2609           -o $@ $(docdir)/gcc.texi
2610
2611 $(docobjdir)/gccint.info: $(TEXI_GCCINT_FILES)
2612         $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2613           -o $@ $(docdir)/gccint.texi
2614
2615 $(docobjdir)/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
2616         $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2617           -o $@ $(docdir)/install.texi
2618
2619 $(docobjdir)/cppinternals.info: $(TEXI_CPPINT_FILES)
2620         $(MAKEINFO) $(MAKEINFOFLAGS) -I $(docdir) -I $(docdir)/include \
2621           -o $@ $(docdir)/cppinternals.texi
2622
2623 dvi: gcc.dvi gccint.dvi gccinstall.dvi cpp.dvi lang.dvi cppinternals.dvi
2624
2625 # This works with GNU Make's default rule.
2626 cpp.dvi: $(TEXI_CPP_FILES)
2627         $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cpp.texi
2628
2629 gcc.dvi: $(TEXI_GCC_FILES)
2630         $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gcc.texi
2631
2632 gccint.dvi: $(TEXI_GCCINT_FILES)
2633         $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gccint.texi
2634
2635 gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
2636         s=`cd $(srcdir); ${PWD}`; export s; \
2637         $(TEXI2DVI) -I $$s/doc -I $$s/doc/include -o $@ $$s/doc/install.texi
2638
2639 cppinternals.dvi: $(TEXI_CPPINT_FILES)
2640         $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cppinternals.texi
2641
2642 generated-manpages: $(docobjdir)/gcov.1 $(docobjdir)/cpp.1 $(docobjdir)/gcc.1 \
2643          $(docobjdir)/gfdl.7 $(docobjdir)/gpl.7 $(docobjdir)/fsf-funding.7 \
2644          lang.generated-manpages
2645
2646 $(docobjdir)/gcov.1: $(docdir)/gcov.texi
2647         $(STAMP) $(docobjdir)/gcov.1
2648         -$(TEXI2POD) $(docdir)/gcov.texi > gcov.pod
2649         -($(POD2MAN) --section=1 gcov.pod > $(docobjdir)/gcov.1.T$$$$ && \
2650                 mv -f $(docobjdir)/gcov.1.T$$$$ $(docobjdir)/gcov.1) || \
2651                 (rm -f $(docobjdir)/gcov.1.T$$$$ && exit 1)
2652         -rm -f gcov.pod
2653
2654 $(docobjdir)/cpp.1: $(docdir)/cpp.texi $(docdir)/cppenv.texi \
2655   $(docdir)/cppopts.texi
2656         $(STAMP) $(docobjdir)/cpp.1
2657         -$(TEXI2POD) $(docdir)/cpp.texi > cpp.pod
2658         -($(POD2MAN) --section=1 cpp.pod > $(docobjdir)/cpp.1.T$$$$ && \
2659                 mv -f $(docobjdir)/cpp.1.T$$$$ $(docobjdir)/cpp.1) || \
2660                 (rm -f $(docobjdir)/cpp.1.T$$$$ && exit 1)
2661         -rm -f cpp.pod
2662
2663 $(docobjdir)/gcc.1: $(docdir)/invoke.texi $(docdir)/cppenv.texi \
2664   $(docdir)/cppopts.texi
2665         $(STAMP) $(docobjdir)/gcc.1
2666         -$(TEXI2POD) $(docdir)/invoke.texi > gcc.pod
2667         -($(POD2MAN) --section=1 gcc.pod > $(docobjdir)/gcc.1.T$$$$ && \
2668                 mv -f $(docobjdir)/gcc.1.T$$$$ $(docobjdir)/gcc.1) || \
2669                 (rm -f $(docobjdir)/gcc.1.T$$$$ && exit 1)
2670         -rm -f gcc.pod
2671
2672 $(docobjdir)/gfdl.7: $(docdir)/include/fdl.texi
2673         $(STAMP) $(docobjdir)/gfdl.7
2674         -$(TEXI2POD) $(docdir)/include/fdl.texi > gfdl.pod
2675         -($(POD2MAN) --section=7 gfdl.pod > $(docobjdir)/gfdl.7.T$$$$ && \
2676                 mv -f $(docobjdir)/gfdl.7.T$$$$ $(docobjdir)/gfdl.7) || \
2677                 (rm -f $(docobjdir)/gfdl.7.T$$$$ && exit 1)
2678         -rm -f gfdl.pod
2679
2680 $(docobjdir)/gpl.7: $(docdir)/include/gpl.texi
2681         $(STAMP) $(docobjdir)/gpl.7
2682         -$(TEXI2POD) $(docdir)/include/gpl.texi > gpl.pod
2683         -($(POD2MAN) --section=7 gpl.pod > $(docobjdir)/gpl.7.T$$$$ && \
2684                 mv -f $(docobjdir)/gpl.7.T$$$$ $(docobjdir)/gpl.7) || \
2685                 (rm -f $(docobjdir)/gpl.7.T$$$$ && exit 1)
2686         -rm -f gpl.pod
2687
2688 $(docobjdir)/fsf-funding.7: $(docdir)/include/funding.texi
2689         $(STAMP) $(docobjdir)/fsf-funding.7
2690         -$(TEXI2POD) $(docdir)/include/funding.texi > fsf-funding.pod
2691         -($(POD2MAN) --section=7 fsf-funding.pod \
2692                 > $(docobjdir)/fsf-funding.7.T$$$$ && \
2693             mv -f $(docobjdir)/fsf-funding.7.T$$$$ $(docobjdir)/fsf-funding.7) || \
2694             (rm -f $(docobjdir)/fsf-funding.7.T$$$$ && exit 1)
2695         -rm -f fsf-funding.pod
2696
2697 #\f
2698 # Deletion of files made during compilation.
2699 # There are four levels of this:
2700 #   `mostlyclean', `clean', `distclean' and `maintainer-clean'.
2701 # `mostlyclean' is useful while working on a particular type of machine.
2702 # It deletes most, but not all, of the files made by compilation.
2703 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2704 # `clean' deletes everything made by running `make all'.
2705 # `distclean' also deletes the files made by config.
2706 # `maintainer-clean' also deletes everything that could be regenerated
2707 # automatically, except for `configure'.
2708 # We remove as much from the language subdirectories as we can
2709 # (less duplicated code).
2710
2711 INTL_MOSTLYCLEAN = intl.mostlyclean
2712 mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
2713         -rm -f $(STAGESTUFF)
2714         -rm -f *$(coverageexts)
2715         -rm -rf libgcc
2716 # Delete the temporary source copies for cross compilation.
2717         -rm -f $(BUILD_PREFIX_1)rtl.c $(BUILD_PREFIX_1)print-rtl.c
2718         -rm -f $(BUILD_PREFIX_1)bitmap.c $(BUILD_PREFIX_1)errors.c
2719         -rm -f $(BUILD_PREFIX_1)ggc-none.c print-rtl1.c
2720 # Delete the temp files made in the course of building libgcc.a.
2721         -rm -f xlimits.h
2722 # Delete other built files.
2723         -rm -f xsys-protos.hT
2724         -rm -f specs.h options.h gencheck.h
2725 # Delete the stamp and temporary files.
2726         -rm -f s-* tmp-* stamp-* stmp-*
2727         -rm -f */stamp-* */tmp-*
2728 # Delete debugging dump files.
2729         -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
2730 # Delete some files made during installation.
2731         -rm -f specs $(SPECS) SYSCALLS.c.X SYSCALLS.c
2732         -rm -f collect collect2 mips-tfile mips-tdump
2733 # Delete files generated for fixproto
2734         -rm -rf fix-header$(build_exeext) xsys-protos.h deduced.h tmp-deduced.h \
2735           gen-protos$(build_exeext) fixproto.list fixtmp.* fixhdr.ready
2736 # Delete files generated for fixincl
2737         -rm -rf fixincl fixinc.sh specs.ready
2738         (cd fixinc && $(MAKE) clean)
2739 # Delete unwanted output files from TeX.
2740         -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
2741         -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
2742 # Delete sorted indices we don't actually use.
2743         -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2744 # Delete core dumps.
2745         -rm -f core */core
2746 # Delete file generated for gengtype.c
2747         -rm -f gtyp-gen.h
2748 # Delete files generated by gengtype.c
2749         -rm -f gtype-*
2750         -rm -f gt-*
2751
2752 # Delete all files made by compilation
2753 # that don't exist in the distribution.
2754 INTL_CLEAN = intl.clean
2755 clean: mostlyclean $(INTL_CLEAN) lang.clean
2756         -rm -f libgcc.a libgcc_eh.a libgcov.a
2757         -rm -f libgcc_s$(SHLIB_EXT) libgcc_s$(SHLIB_EXT).1
2758         -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h
2759         -rm -f cs-*
2760         -rm -rf libgcc
2761         -rm -f *.dvi
2762         -rm -f */*.dvi
2763 # Delete the include directory.
2764         -rm -rf include
2765 # Delete files used by the "multilib" facility (including libgcc subdirs).
2766         -rm -f multilib.h tmpmultilib*
2767         -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2768           rm -rf $(MULTILIB_DIRNAMES); \
2769         else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2770           rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2771         fi ; fi
2772         -rm -fr stage1 stage2 stage3 stage4
2773 # Delete stamps of bootstrap stages
2774         -rm -f stage?_*
2775         -rm -f clean?_*
2776         -rm -f stage_last
2777
2778 # Delete all files that users would normally create
2779 # while building and installing GCC.
2780 INTL_DISTCLEAN = intl.distclean
2781 distclean: clean $(INTL_DISTCLEAN) lang.distclean
2782         -rm -f auto-host.h auto-build.h
2783         -rm -f cstamp-h
2784         -rm -f config.status config.run config.cache config.bak
2785         -rm -f Make-lang Make-hooks Make-host Make-target
2786         -rm -f Makefile *.oaux
2787         -rm -f gthr-default.h
2788         -rm -f */stage1 */stage2 */stage3 */stage4 */include
2789         -rm -f c-parse.output
2790         -rm -f *.asm
2791         -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
2792         -rm -f testsuite/*.log testsuite/*.sum
2793         -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c
2794         -cd testsuite && rm -f *.out *.gcov *$(coverageexts)
2795         -rm -rf ${QMTEST_DIR} stamp-qmtest
2796         -rm -f intl/libintl.h libintl.h
2797         -rm -f cxxmain.c
2798         -rm -f mklibgcc mkheaders gccbug .gdbinit configargs.h
2799         -rm -f gcov.pod
2800         -rm -f fixinc/Makefile
2801 # Delete po/*.gmo only if we are not building in the source directory.
2802         -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
2803         -rmdir ada cp f java objc fixinc intl po testsuite 2>/dev/null
2804
2805 # Delete anything likely to be found in the source directory
2806 # that shouldn't be in the distribution.
2807 extraclean: distclean lang.extraclean
2808         -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
2809         -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
2810         -rm -f config/*/=* config/*/"#"* config/*/*~*
2811         -rm -f config/*/*.orig config/*/*.rej
2812         -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
2813         -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
2814         -rm -f *lose config/*lose config/*/*lose
2815         -rm -f *.s *.s[0-9] *.i config/ChangeLog
2816         -rm -f y.tab.c yacc.*
2817         -rm -f */=* */"#"* */*~*
2818         -rm -f */patch* */*.orig */*.rej
2819         -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2820         -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2821         -rm -f */*lose */*.s */*.s[0-9] */*.i
2822
2823 # Get rid of every file that's generated from some other file, except for `configure'.
2824 # Most of these files ARE PRESENT in the GCC distribution.
2825 # We define INTL_DISTCLEAN, INTL_CLEAN & INTL_MOSTLYCLEAN to be empty in the
2826 # submake, so that we don't descend into intl after its makefile has been
2827 # removed.
2828 maintainer-clean:
2829         @echo 'This command is intended for maintainers to use; it'
2830         @echo 'deletes files that may need special tools to rebuild.'
2831         $(MAKE) INTL_DISTCLEAN= INTL_CLEAN= INTL_MOSTLYCLEAN= \
2832                 intl.maintainer-clean lang.maintainer-clean distclean
2833         -rm -f c-parse.y c-parse.c c-parse.output TAGS
2834         -rm -f cpp.??s cpp.*aux
2835         -rm -f gcc.??s gcc.*aux
2836         -rm -f $(docobjdir)/cpp.info* $(docobjdir)/gcc.info* $(docobjdir)/gccint.info*
2837         -rm -f $(docobjdir)/cppinternals.info*
2838         -rm -f $(docobjdir)/gcov.1 $(docobjdir)/cpp.1 $(docobjdir)/gcc.1
2839         -rm -f $(docobjdir)/fsf-funding.7 $(docobjdir)/gfdl.7 $(docobjdir)/gpl.7
2840 #\f
2841 # Entry points `install' and `uninstall'.
2842 # Also use `install-collect2' to install collect2 when the config files don't.
2843
2844 # Copy the compiler files into directories where they will be run.
2845 # Install the driver last so that the window when things are
2846 # broken is small.
2847 install: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
2848     install-cpp install-man install-info intl.install install-@POSUB@ \
2849     lang.install-normal install-driver
2850
2851 # Handle cpp installation.
2852 install-cpp: cpp$(exeext)
2853         -if [ -f gcc-cross$(exeext) ] ; then \
2854           rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2855           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2856           if [ x$(cpp_install_dir) != x ]; then \
2857             rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2858             $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2859           else true; fi; \
2860         else \
2861           rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2862           $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2863           if [ x$(cpp_install_dir) != x ]; then \
2864             rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2865             $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2866           else true; fi; \
2867         fi
2868
2869 # Create the installation directories.
2870 # $(libdir)/gcc-lib/include isn't currently searched by cpp.
2871 installdirs:
2872         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(libsubdir)
2873         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(bindir)
2874         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(includedir)
2875         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(infodir)
2876         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(slibdir)
2877         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man1dir)
2878         $(SHELL) ${srcdir}/mkinstalldirs $(DESTDIR)$(man7dir)
2879
2880 # Install the compiler executables built during cross compilation.
2881 install-common: native $(EXTRA_PARTS) lang.install-common
2882         for file in $(COMPILERS); do \
2883           if [ -f $$file ] ; then \
2884             rm -f $(DESTDIR)$(libsubdir)/$$file; \
2885             $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
2886           else true; \
2887           fi; \
2888         done
2889         for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
2890           if [ x"$$file" != x.. ]; then \
2891             rm -f $(DESTDIR)$(libsubdir)/$$file; \
2892             $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libsubdir)/$$file; \
2893           else true; fi; \
2894         done
2895         for file in $(EXTRA_PARTS) ..; do \
2896           if [ x"$$file" != x.. ]; then \
2897             rm -f $(DESTDIR)$(libsubdir)/$$file; \
2898             $(INSTALL_DATA) $$file $(DESTDIR)$(libsubdir)/$$file; \
2899             chmod a-x $(DESTDIR)$(libsubdir)/$$file; \
2900           else true; fi; \
2901         done
2902 # Don't mess with specs if it doesn't exist yet.
2903         -if [ -f specs ] ; then \
2904           rm -f $(DESTDIR)$(libsubdir)/specs; \
2905           $(INSTALL_DATA) $(SPECS) $(DESTDIR)$(libsubdir)/specs; \
2906           chmod a-x $(DESTDIR)$(libsubdir)/specs; \
2907         fi
2908 # Install protoize if it was compiled.
2909         -if [ -f protoize$(exeext) ]; \
2910         then \
2911             if [ -f gcc-cross$(exeext) ] ; then \
2912                 rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2913                 $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2914                 rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2915                 $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2916             else \
2917                 rm -f $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2918                 $(INSTALL_PROGRAM) protoize$(exeext) $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2919                 rm -f $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2920                 $(INSTALL_PROGRAM) unprotoize$(exeext) $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2921             fi ; \
2922             rm -f $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2923             $(INSTALL_DATA) SYSCALLS.c.X $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2924             chmod a-x $(DESTDIR)$(libsubdir)/SYSCALLS.c.X; \
2925         fi
2926 # Install gcov if it was compiled.
2927         -if [ -f gcov$(exeext) ]; \
2928         then \
2929             rm -f $(DESTDIR)$(bindir)/gcov$(exeext); \
2930             $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
2931         fi
2932         $(INSTALL_SCRIPT) gccbug $(DESTDIR)$(bindir)/$(GCCBUG_INSTALL_NAME)
2933
2934 # Install the driver program as $(target_alias)-gcc, 
2935 # $(target-alias)-gcc-$(version)
2936 # and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
2937 install-driver: installdirs xgcc$(exeext)
2938         -if [ -f gcc-cross$(exeext) ] ; then \
2939           rm -f $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2940           $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2941           rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-$(version); \
2942           ( cd $(DESTDIR)$(bindir) && \
2943             $(LN) $(GCC_CROSS_NAME)$(exeext) $(target_alias)-gcc-$(version) ); \
2944           if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
2945             rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
2946             $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
2947           else true; fi; \
2948         else \
2949           rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2950           $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2951           rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-$(version); \
2952           ( cd $(DESTDIR)$(bindir) && \
2953             $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_alias)-gcc-$(version) ); \
2954           rm -f $(DESTDIR)$(bindir)/$(target_alias)-gcc-tmp$(exeext); \
2955           ( cd $(DESTDIR)$(bindir) && \
2956             $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_alias)-gcc-tmp$(exeext) && \
2957             mv -f $(target_alias)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
2958         fi
2959
2960 # Install the info files.
2961 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
2962 # to do the install.
2963 install-info: doc installdirs lang.install-info
2964         -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
2965         -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
2966         if [ -f $(docobjdir)/gcc.info ]; then \
2967           for f in $(docobjdir)/cpp.info* $(docobjdir)/gcc.info* \
2968                 $(docobjdir)/cppinternals.info* $(docobjdir)/gccint.info*; do \
2969             realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2970             $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
2971           done; \
2972         else true; fi
2973         -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
2974           if [ -f $(DESTDIR)$(infodir)/dir ] ; then \
2975             for f in cpp.info gcc.info gccint.info cppinternals.info; do \
2976                 if [ -f $(DESTDIR)$(infodir)/$$f ]; then \
2977                   install-info --dir-file=$(DESTDIR)$(infodir)/dir $(DESTDIR)$(infodir)/$$f; \
2978                 else true; fi; \
2979             done; \
2980           else true; fi; \
2981         else true; fi;
2982         -chmod a-x $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
2983         -chmod a-x $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
2984
2985 # Install the man pages.
2986 install-man: installdirs $(GENERATED_MANPAGES) lang.install-man
2987         -if [ -f gcc-cross$(exeext) ] ; then \
2988           rm -f $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2989           $(INSTALL_DATA) $(docobjdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2990           chmod a-x $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2991         else \
2992           rm -f $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2993           $(INSTALL_DATA) $(docobjdir)/gcc.1 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2994           chmod a-x $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2995         fi
2996         -rm -f $(DESTDIR)$(man1dir)/cpp$(man1ext)
2997         -$(INSTALL_DATA) $(docobjdir)/cpp.1 $(DESTDIR)$(man1dir)/cpp$(man1ext)
2998         -chmod a-x $(DESTDIR)$(man1dir)/cpp$(man1ext)
2999         -rm -f $(DESTDIR)$(man1dir)/gcov$(man1ext)
3000         -$(INSTALL_DATA) $(docobjdir)/gcov.1 $(DESTDIR)$(man1dir)/gcov$(man1ext)
3001         -chmod a-x $(DESTDIR)$(man1dir)/gcov$(man1ext)
3002         -rm -f $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3003         -$(INSTALL_DATA) $(docobjdir)/fsf-funding.7 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3004         -chmod a-x $(DESTDIR)$(man7dir)/fsf-funding$(man7ext)
3005         -rm -f $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3006         -$(INSTALL_DATA) $(docobjdir)/gfdl.7 $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3007         -chmod a-x $(DESTDIR)$(man7dir)/gfdl$(man7ext)
3008         -rm -f $(DESTDIR)$(man7dir)/gpl$(man7ext)
3009         -$(INSTALL_DATA) $(docobjdir)/gpl.7 $(DESTDIR)$(man7dir)/gpl$(man7ext)
3010         -chmod a-x $(DESTDIR)$(man7dir)/gpl$(man7ext)
3011
3012 # Install the library.
3013 install-libgcc: libgcc.mk libgcc.a libgcov.a installdirs
3014         $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3015           BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
3016           AR_FOR_TARGET="$(AR_FOR_TARGET)" \
3017           AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
3018           AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
3019           CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3020           NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3021           LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
3022           INCLUDES="$(INCLUDES)" \
3023           CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
3024           LIB1ASMSRC='$(LIB1ASMSRC)' \
3025           MAKEOVERRIDES= \
3026           INSTALL_DATA="$(INSTALL_DATA)" \
3027           RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
3028           DESTDIR="$(DESTDIR)" \
3029           libsubdir="$(libsubdir)" \
3030           slibdir="$(slibdir)" \
3031           -f libgcc.mk install
3032
3033 # Install multiple versions of libgcc.a, libgcov.a.
3034 install-multilib: stmp-multilib installdirs
3035         $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3036           BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
3037           AR_FOR_TARGET="$(AR_FOR_TARGET)" \
3038           AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
3039           AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
3040           CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3041           NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3042           LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
3043           INCLUDES="$(INCLUDES)" \
3044           CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
3045           LIB1ASMSRC='$(LIB1ASMSRC)' \
3046           MAKEOVERRIDES= \
3047           INSTALL_DATA="$(INSTALL_DATA)" \
3048           RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
3049           DESTDIR="$(DESTDIR)" \
3050           libsubdir="$(libsubdir)" \
3051           slibdir="$(slibdir)" \
3052           -f libgcc.mk install
3053
3054 # Install all the header files built in the include subdirectory.
3055 install-headers: $(INSTALL_HEADERS_DIR)
3056 # Fix symlinks to absolute paths in the installed include directory to
3057 # point to the installed directory, not the build directory.
3058 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
3059         -files=`cd $(DESTDIR)$(libsubdir)/include; find . -type l -print 2>/dev/null`; \
3060         if [ $$? -eq 0 ]; then \
3061           dir=`cd include; ${PWD}`; \
3062           for i in $$files; do \
3063             dest=`ls -ld $(DESTDIR)$(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
3064             if expr "$$dest" : "$$dir.*" > /dev/null; then \
3065               rm -f $(DESTDIR)$(libsubdir)/include/$$i; \
3066               ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include/$$i; \
3067             fi; \
3068           done; \
3069         fi
3070
3071 # Create or recreate the gcc private include file directory.
3072 install-include-dir: installdirs
3073         -rm -rf $(DESTDIR)$(libsubdir)/include
3074         mkdir $(DESTDIR)$(libsubdir)/include
3075         -chmod a+rx $(DESTDIR)$(libsubdir)/include
3076
3077 # Install the include directory using tar.
3078 install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3079 # We use `pwd`/include instead of just include to problems with CDPATH
3080 # Unless a full pathname is provided, some shells would print the new CWD,
3081 # found in CDPATH, corrupting the output.  We could just redirect the
3082 # output of `cd', but some shells lose on redirection within `()'s
3083         (cd `${PWD}`/include ; \
3084          tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
3085 # /bin/sh on some systems returns the status of the first tar,
3086 # and that can lose with GNU tar which always writes a full block.
3087 # So use `exit 0' to ignore its exit status.
3088
3089 # Install the include directory using cpio.
3090 install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3091 # See discussion about the use of `pwd` above
3092         cd `${PWD}`/include ; \
3093         find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
3094
3095 # Install the include directory using cp.
3096 install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
3097         cp -p -r include $(DESTDIR)$(libsubdir)
3098
3099 itoolsdir = $(libsubdir)/install-tools
3100 # Don't install the headers.  Instead, install appropriate scripts
3101 # and supporting files for fixincludes to be run later.
3102 install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \
3103     mkheaders xlimits.h
3104         -rm -rf $(DESTDIR)$(itoolsdir)
3105         $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(itoolsdir)/include
3106         for file in $(USER_H); do \
3107           realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3108           $(INSTALL_DATA) $$file \
3109             $(DESTDIR)$(itoolsdir)/include/$$realfile ; \
3110         done
3111         $(INSTALL_DATA) xlimits.h $(DESTDIR)$(itoolsdir)/include/limits.h
3112         if [ x$(STMP_FIXINC) != x ] ; then \
3113           $(INSTALL_DATA) $(srcdir)/README-fixinc \
3114             $(DESTDIR)$(itoolsdir)/include/README ; \
3115           $(INSTALL_PROGRAM) fixinc.sh $(DESTDIR)$(itoolsdir)/fixinc.sh ; \
3116           $(INSTALL_PROGRAM) fixinc/fixincl $(DESTDIR)$(itoolsdir)/fixincl ; \
3117           $(INSTALL_DATA) $(srcdir)/gsyslimits.h $(DESTDIR)$(itoolsdir)/gsyslimits.h ; \
3118         else :; fi
3119         if [ x$(STMP_FIXPROTO) != x ] ; then \
3120           $(INSTALL_PROGRAM) $(srcdir)/mkinstalldirs \
3121                 $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \
3122           $(INSTALL_PROGRAM) $(srcdir)/fixproto $(DESTDIR)$(itoolsdir)/fixproto ; \
3123           $(INSTALL_PROGRAM) fix-header$(build_exeext) \
3124                 $(DESTDIR)$(itoolsdir)/fix-header$(build_exeext) ; \
3125         else :; fi
3126         $(INSTALL_PROGRAM) mkheaders $(DESTDIR)$(itoolsdir)/mkheaders
3127         echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
3128                 > $(DESTDIR)$(itoolsdir)/mkheaders.conf
3129         echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
3130                 >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3131         echo 'FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"' \
3132                 >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3133         echo 'STMP_FIXPROTO="$(STMP_FIXPROTO)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3134         echo 'STMP_FIXINC="$(STMP_FIXINC)"' >> $(DESTDIR)$(itoolsdir)/mkheaders.conf
3135
3136 # Use this target to install the program `collect2' under the name `collect2'.
3137 install-collect2: collect2 installdirs
3138         $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libsubdir)/collect2$(exeext)
3139 # Install the driver program as $(libsubdir)/gcc for collect2.
3140         $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libsubdir)/gcc$(exeext)
3141
3142 # Cancel installation by deleting the installed files.
3143 uninstall: intl.uninstall lang.uninstall
3144         -rm -rf $(DESTDIR)$(libsubdir)
3145         -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3146         -rm -rf $(DESTDIR)$(bindir)/$(GCC_CROSS_NAME)$(exeext)
3147         -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
3148         -rm -f $(DESTDIR)$(bindir)/$(CPP_CROSS_NAME)$(exeext)
3149         -if [ x$(cpp_install_dir) != x ]; then \
3150           rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3151           rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
3152         else true; fi
3153         -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
3154         -rm -rf $(DESTDIR)$(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
3155         -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
3156         -rm -rf $(DESTDIR)$(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
3157         -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
3158         -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
3159         -rm -rf $(DESTDIR)$(man1dir)/$(GCC_CROSS_NAME)$(man1ext)
3160         -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
3161         -rm -rf $(DESTDIR)$(man1dir)/protoize$(man1ext)
3162         -rm -rf $(DESTDIR)$(man1dir)/unprotoize$(man1ext)
3163         -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
3164         -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
3165 #\f
3166 # These targets are for the dejagnu testsuites. The file site.exp
3167 # contains global variables that all the testsuites will use.
3168
3169 # Set to $(target_alias)/ for cross.
3170 target_subdir = @target_subdir@
3171
3172 site.exp: ./config.status Makefile
3173         @echo "Making a new config file..."
3174         -@rm -f ./tmp?
3175         @$(STAMP) site.exp
3176         -@mv site.exp site.bak
3177         @echo "## these variables are automatically generated by make ##" > ./tmp0
3178         @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
3179         @echo "# add them to the last section" >> ./tmp0
3180         @echo "set rootme \"`${PWD}`\"" >> ./tmp0
3181         @echo "set srcdir \"`cd ${srcdir}; ${PWD}`\"" >> ./tmp0
3182         @echo "set host_triplet $(host_canonical)" >> ./tmp0
3183         @echo "set build_triplet $(build_canonical)" >> ./tmp0
3184         @echo "set target_triplet $(target)" >> ./tmp0
3185         @echo "set target_alias $(target_alias)" >> ./tmp0
3186 # CFLAGS is set even though it's empty to show we reserve the right to set it.
3187         @echo "set CFLAGS \"\"" >> ./tmp0
3188         @echo "set CXXFLAGS \"\"" >> ./tmp0
3189         @echo "set TESTING_IN_BUILD_TREE 1" >> ./tmp0
3190         @echo "set HAVE_LIBSTDCXX_V3 1" >> ./tmp0
3191 # If newlib has been configured, we need to pass -B to gcc so it can find
3192 # newlib's crt0.o if it exists.  This will cause a "path prefix not used"
3193 # message if it doesn't, but the testsuite is supposed to ignore the message -
3194 # it's too difficult to tell when to and when not to pass -B (not all targets
3195 # have crt0's).  We could only add the -B if ../newlib/crt0.o exists, but that
3196 # seems like too selective a test.
3197 # ??? Another way to solve this might be to rely on linker scripts.  Then
3198 # theoretically the -B won't be needed.
3199 # We also need to pass -L ../ld so that the linker can find ldscripts.
3200         @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
3201           echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
3202           echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
3203           echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3204           echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3205           echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
3206         else true; \
3207         fi
3208         @if [ -d $(objdir)/../ld ] ; then \
3209           echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
3210         else true; \
3211         fi
3212         echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
3213         @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
3214         @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
3215           echo "set ALT_CXX_UNDER_TEST $(ALT_CXX_UNDER_TEST)" >> ./tmp0; \
3216         else true; \
3217         fi
3218         @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
3219           echo "set COMPAT_OPTIONS $(COMPAT_OPTIONS)" >> ./tmp0; \
3220         else true; \
3221         fi
3222         @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
3223         @cat ./tmp0 > site.exp
3224         @cat site.bak | sed \
3225                 -e '1,/^## All variables above are.*##/ d' >> site.exp
3226         -@rm -f ./tmp?
3227
3228 CHECK_TARGETS = check-gcc @check_languages@
3229
3230 check-c++ : check-g++
3231 check-f77 : check-g77
3232 check-java :
3233
3234 check: $(CHECK_TARGETS)
3235
3236 # The idea is to parallelize testing of multilibs, for example:
3237 #   make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
3238 # will run 3 concurrent sessions of check-gcc, eventually testing
3239 # all 10 combinations.  GNU make is required, as is a shell that expands
3240 # alternations within braces.
3241 check-gcc//% check-g++//% check-g77//% check-objc//%: site.exp
3242         target=`echo "$@" | sed 's,//.*,,'`; \
3243         variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
3244         vardots=`echo "$$variant" | sed 's,/,.,g'`; \
3245         $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
3246           RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
3247           "$$target"
3248
3249 TESTSUITEDIR = testsuite
3250
3251 $(TESTSUITEDIR)/site.exp: site.exp
3252         test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
3253         -rm -f $@
3254         sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
3255
3256 check-g++: $(TESTSUITEDIR)/site.exp
3257         -(rootme=`${PWD}`; export rootme; \
3258         srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3259         cd $(TESTSUITEDIR); \
3260         EXPECT=${EXPECT} ; export EXPECT ; \
3261         if [ -f $${rootme}/../expect/expect ] ; then  \
3262            TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3263             export TCL_LIBRARY ; fi ; \
3264         $(RUNTEST) --tool g++ $(RUNTESTFLAGS))
3265
3266 check-gcc: $(TESTSUITEDIR)/site.exp
3267         -(rootme=`${PWD}`; export rootme; \
3268         srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3269         cd $(TESTSUITEDIR); \
3270         EXPECT=${EXPECT} ; export EXPECT ; \
3271         if [ -f $${rootme}/../expect/expect ] ; then  \
3272            TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3273            export TCL_LIBRARY ; fi ; \
3274         $(RUNTEST) --tool gcc $(RUNTESTFLAGS))
3275
3276 check-g77: $(TESTSUITEDIR)/site.exp
3277         -(rootme=`${PWD}`; export rootme; \
3278         srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3279         cd $(TESTSUITEDIR); \
3280         EXPECT=${EXPECT} ; export EXPECT ; \
3281         if [ -f $${rootme}/../expect/expect ] ; then  \
3282            TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3283            export TCL_LIBRARY ; fi ; \
3284         $(RUNTEST) --tool g77 $(RUNTESTFLAGS))
3285
3286 check-objc: $(TESTSUITEDIR)/site.exp
3287         -(rootme=`${PWD}`; export rootme; \
3288         srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3289         cd $(TESTSUITEDIR); \
3290         EXPECT=${EXPECT} ; export EXPECT ; \
3291         if [ -f $${rootme}/../expect/expect ] ; then  \
3292            TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3293             export TCL_LIBRARY ; fi ; \
3294         $(RUNTEST) --tool objc $(RUNTESTFLAGS))
3295
3296 check-consistency: testsuite/site.exp
3297         -rootme=`${PWD}`; export rootme; \
3298         srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
3299         cd testsuite; \
3300         EXPECT=${EXPECT} ; export EXPECT ; \
3301         if [ -f $${rootme}/../expect/expect ] ; then  \
3302            TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
3303            export TCL_LIBRARY ; fi ; \
3304         $(RUNTEST) --tool consistency $(RUNTESTFLAGS)
3305
3306 # QMTest targets
3307
3308 # The path to qmtest.
3309 QMTEST_PATH=qmtest
3310
3311 # The flags to pass to qmtest.
3312 QMTESTFLAGS=
3313
3314 # The flags to pass to "qmtest run".
3315 QMTESTRUNFLAGS=
3316
3317 # The command to use to invoke qmtest.
3318 QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
3319
3320 # The tests (or suites) to run.
3321 QMTEST_GPP_TESTS=gpp
3322
3323 # The subdirectory of the OBJDIR that will be used to store the QMTest
3324 # test database configuration and that will be used for temporary
3325 # scratch space during QMTest's execution.
3326 QMTEST_DIR=qmtestsuite
3327
3328 # Create the QMTest database configuration.
3329 ${QMTEST_DIR} stamp-qmtest:
3330         debug_options=""; \
3331             ${STAMP} empty.C; \
3332             for option in \
3333                 -gdwarf-2 -gstabs -gstabs+ -gxcoff -gxcoff+ -gcoff; do \
3334                 (./cc1plus -q $${option} empty.C 2>&1 | \
3335                      grep "unknown or unsupported -g option" > /dev/null) || \
3336                 debug_options="$${debug_options}$${option} "; done; \
3337             ${QMTEST} -D ${QMTEST_DIR} create-tdb \
3338                 -c gcc_database.GCCDatabase \
3339                 -a GCCDatabase.testsuite_root=`cd ${srcdir}/testsuite && pwd` \
3340                 -a GCCDatabase.debug_options="$${debug_options}"
3341         rm -f empty.C empty.s
3342         $(STAMP) stamp-qmtest
3343
3344 # Create the QMTest context file.
3345 ${QMTEST_DIR}/context: stamp-qmtest
3346         echo "GCCTest.flags=-B${objdir}" >> $@
3347         echo "GCCTest.objdir=${objdir}/.." >> $@
3348         echo "GCCTest.host=${host_canonical}" >> $@
3349         echo "GCCTest.target=${target}" >> $@
3350         echo "GCCTest.gcov=${objdir}/gcov" >> $@
3351         echo "GPPTest.gpp=${objdir}/g++" >> $@
3352         echo "DGTest.demangler=${objdir}/c++filt" >> $@
3353
3354 # Run the G++ testsuite using QMTest.
3355 qmtest-g++: ${QMTEST_DIR}/context ${QMTEST_DIR}/gpp-expected.qmr
3356         cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
3357            -o gpp.qmr -O gpp-expected.qmr \
3358            ${QMTEST_GPP_TESTS}
3359
3360 # Use the QMTest GUI.
3361 qmtest-gui: ${QMTEST_DIR}/context
3362         cd ${QMTEST_DIR} && ${QMTEST} gui -C context
3363
3364 # Build the set of expected G++ failures.
3365 ${QMTEST_DIR}/gpp-expected.qmr: ${QMTEST_DIR}/context
3366         echo "Determining expected results..."
3367         cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
3368            -c "GCCTest.generate_xfails=1" -o gpp-expected.qmr \
3369            ${QMTEST_GPP_TESTS} \
3370            > /dev/null
3371
3372 .PHONY: qmtest-g++
3373
3374 # Run Paranoia on real.c.
3375
3376 paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) \
3377   real.h $(TREE_H)
3378         g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
3379
3380 paranoia: paranoia.o real.o $(LIBIBERTY)
3381         g++ -o $@ paranoia.o real.o $(LIBIBERTY)
3382
3383 # These exist for maintenance purposes.
3384
3385 # Update the tags table.
3386 TAGS: lang.tags
3387         (cd $(srcdir);                                               \
3388         incs= ;                                                      \
3389         list='$(SUBDIRS)'; for dir in $$list; do                     \
3390           if test -f $$dir/TAGS; then                                \
3391             incs="$$incs --include $$dir/TAGS";                      \
3392           fi;                                                        \
3393         done;                                                        \
3394         mkdir tmp-tags;                                              \
3395         mv -f c-parse.[ch] =*.[chy] tmp-tags;                        \
3396         etags *.y *.h *.c $$incs;                                    \
3397         mv tmp-tags/* .;                                             \
3398         rmdir tmp-tags)
3399
3400 # A list of files to be destroyed during "lean" builds.
3401 VOL_FILES=`echo $(BACKEND) $(OBJS) $(C_OBJS) $(LIBCPP_OBJS) *.c *.h gen*`
3402
3403 # Flags to pass to stage2 and later recursive makes.  Note that the
3404 # WARN_CFLAGS setting can't be to the expansion of GCC_WARN_CFLAGS in
3405 # the context of the stage_x rule.
3406 STAGE2_FLAGS_TO_PASS = \
3407         ADAC="\$$(CC)" \
3408         GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3409         CFLAGS="$(BOOT_CFLAGS)" \
3410         LDFLAGS="$(BOOT_LDFLAGS)" \
3411         WARN_CFLAGS="\$$(GCC_WARN_CFLAGS)" \
3412         WERROR="@WERROR@" \
3413         STRICT_WARN="$(STRICT2_WARN)" \
3414         libdir=$(libdir) \
3415         LANGUAGES="$(LANGUAGES)" \
3416         MAKEOVERRIDES= \
3417         OUTPUT_OPTION="-o \$$@"
3418
3419 # Only build the C compiler for stage1, because that is the only one that
3420 # we can guarantee will build with the native compiler, and also it is the
3421 # only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
3422 # MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
3423 # overrideable (for a bootstrap build stage1 also builds gcc.info).
3424 stage1_build:
3425         $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" \
3426                 CFLAGS="$(STAGE1_CFLAGS)" MAKEINFO="$(MAKEINFO)" \
3427                 GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3428                 MAKEINFOFLAGS="$(MAKEINFOFLAGS)" COVERAGE_FLAGS=
3429         $(STAMP) stage1_build
3430         echo stage1_build > stage_last
3431
3432 stage1_copy: stage1_build
3433         $(MAKE) stage1
3434         $(STAMP) stage1_copy
3435         echo stage2_build > stage_last
3436
3437 stage2_build: stage1_copy
3438         $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
3439                  STAGE_PREFIX=stage1/ \
3440                  $(STAGE2_FLAGS_TO_PASS)
3441         $(STAMP) stage2_build
3442         echo stage2_build > stage_last
3443
3444 stage2_copy: stage2_build
3445         $(MAKE) stage2
3446         $(STAMP) stage2_copy
3447         echo stage3_build > stage_last
3448
3449 stage3_build: stage2_copy
3450         $(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \
3451                  STAGE_PREFIX=stage2/ \
3452                  $(STAGE2_FLAGS_TO_PASS)
3453         $(STAMP) stage3_build
3454         echo stage3_build > stage_last
3455
3456 # For bootstrap4:
3457 stage3_copy: stage3_build
3458         $(MAKE) stage3
3459         $(STAMP) stage3_copy
3460         echo stage4_build > stage_last
3461
3462 stage4_build: stage3_copy
3463         $(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \
3464                  STAGE_PREFIX=stage3/ \
3465                  $(STAGE2_FLAGS_TO_PASS)
3466         $(STAMP) stage4_build
3467         echo stage4_build > stage_last
3468
3469 # Additional steps for *-lean targets:
3470 clean_s1: stage1_copy
3471         -(cd stage1 && rm -f $(VOL_FILES))
3472         $(STAMP) clean_s1
3473
3474 clean_s2: stage2_copy
3475         -rm -rf stage1
3476         $(STAMP) clean_s2
3477
3478 # The various entry points for bootstrapping.
3479
3480 bootstrap: stage3_build
3481         @echo
3482         @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3483         @echo \"restage1\" through \"restage3\" to rebuild specific stages,
3484         @echo \"restrap\" to redo the bootstrap from stage1, or
3485         @echo \"cleanstrap\" to redo the bootstrap from scratch.
3486
3487 bootstrap-lean : clean_s1 clean_s2 stage3_build
3488         @echo
3489         @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3490         @echo or \"cleanstrap\" to redo the bootstrap from scratch.
3491
3492 bootstrap2: bootstrap
3493
3494 bootstrap2-lean : bootstrap-lean
3495
3496 bootstrap3 bootstrap3-lean: bootstrap
3497
3498 bootstrap4 bootstrap4-lean: stage4_build
3499
3500 unstage1 unstage2 unstage3 unstage4:
3501         -set -vx; stage=`echo $@ | sed -e 's/un//'`; \
3502         rm -f $$stage/as$(exeext); \
3503         rm -f $$stage/ld$(exeext); \
3504         rm -f $$stage/collect-ld$(exeext); \
3505         if test -d $$stage; then \
3506           mv $$stage/* . 2>/dev/null; \
3507           for i in `cd $$stage; echo *` ; do \
3508             if test -d $$stage/$$i; then \
3509               mv $$stage/$$i/* $$i/. 2>/dev/null; \
3510             else \
3511               mv $$stage/$$i .; \
3512             fi; \
3513           done \
3514         fi ; \
3515         rm -f $${stage}_build $${stage}_copy ;\
3516         echo $${stage}_build > stage_last
3517
3518 restage1: unstage1
3519         $(MAKE) stage1_build
3520
3521 restage2: unstage2
3522         $(MAKE) LANGUAGES="$(LANGUAGES)" stage2_build
3523
3524 restage3: unstage3
3525         $(MAKE) LANGUAGES="$(LANGUAGES)" stage3_build
3526
3527 restage4: unstage4
3528         $(MAKE) LANGUAGES="$(LANGUAGES)" stage4_build
3529
3530 bubblestrap:
3531         if test -f stage3_build; then true; else \
3532           echo; echo You must \"make bootstrap\" first.; \
3533           exit 1; \
3534         fi
3535         for i in stage3 \
3536                 unstage1 stage1_build stage1_copy \
3537                 unstage2 stage2_build stage2_copy \
3538                 unstage3 stage3_build ; \
3539         do \
3540           $(MAKE) LANGUAGES="$(LANGUAGES)" $$i || exit 1 ; \
3541         done
3542
3543 quickstrap:
3544         if test -f stage_last ; then \
3545           LAST=`cat stage_last`; rm $$LAST; $(MAKE) LANGUAGES="$(LANGUAGES)" $$LAST; \
3546         else \
3547           $(MAKE) stage1_build; \
3548         fi
3549
3550 cleanstrap:
3551         -$(MAKE) clean
3552         $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
3553
3554 unstrap:
3555         -rm -rf stage[234]*
3556         $(MAKE) unstage1
3557
3558 # Differs from cleanstrap in that it starts from the earlier stage1 build,
3559 # not from scratch.
3560 restrap:
3561         $(MAKE) unstrap
3562         $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
3563
3564 # Compare the object files in the current directory with those in the
3565 # stage2 directory.
3566
3567 # ./ avoids bug in some versions of tail.
3568 compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
3569         -rm -f .bad_compare
3570         case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3571         for file in *$(objext); do \
3572           tail +16c ./$$file > tmp-foo1; \
3573           tail +16c stage$$stage/$$file > tmp-foo2 \
3574             && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
3575         done
3576         case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3577         for dir in tmp-foo intl $(SUBDIRS); do \
3578           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3579             for file in $$dir/*$(objext); do \
3580               tail +16c ./$$file > tmp-foo1; \
3581               tail +16c stage$$stage/$$file > tmp-foo2 \
3582                 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
3583             done; \
3584           else true; fi; \
3585         done
3586         -rm -f tmp-foo*
3587         case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3588         if [ -f .bad_compare ]; then \
3589           echo "Bootstrap comparison failure!"; \
3590           cat .bad_compare; \
3591           exit 1; \
3592         else \
3593           case "$@" in \
3594             *-lean ) rm -rf stage$$stage ;; \
3595             *) ;; \
3596           esac; true; \
3597         fi
3598
3599 # Compare the object files in the current directory with those in the
3600 # stage2 directory.  Use gnu cmp (diffutils v2.4 or later) to avoid
3601 # running tail and the overhead of twice copying each object file.
3602 # An exit status of 1 is precisely the result we're looking for (other
3603 # values mean other problems).
3604 gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
3605         -rm -f .bad_compare
3606         case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3607         for file in *$(objext); do \
3608           cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1; \
3609           test $$? -eq 1 && echo $$file differs >> .bad_compare || true; \
3610         done
3611         case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3612         for dir in tmp-foo intl $(SUBDIRS); do \
3613           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3614             for file in $$dir/*$(objext); do \
3615               cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1; \
3616               test $$? -eq 1 && echo $$file differs >> .bad_compare || true; \
3617             done; \
3618           else true; fi; \
3619         done
3620         case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3621         if [ -f .bad_compare ]; then \
3622           echo "Bootstrap comparison failure!"; \
3623           cat .bad_compare; \
3624           exit 1; \
3625         else \
3626           case "$@" in \
3627             *-lean ) rm -rf stage$$stage ;; \
3628           esac; true; \
3629         fi
3630
3631 # Copy the object files from a particular stage into a subdirectory.
3632 stage1-start:
3633         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
3634         $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage1
3635         -for dir in intl $(SUBDIRS) ; \
3636          do \
3637            if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
3638          done
3639         -mv $(STAGESTUFF) stage1
3640         -mv intl/*$(objext) stage1/intl
3641 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3642 # dir will work properly.
3643         -if [ -f as$(exeext) ] ; then (cd stage1 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3644         -if [ -f ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3645         -if [ -f collect-ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3646         -rm -f stage1/libgcc.a stage1/libgcc_eh.a stage1/libgcov.a
3647         -cp libgcc.a stage1
3648         -$(RANLIB_FOR_TARGET) stage1/libgcc.a
3649         -cp libgcov.a stage1
3650         -$(RANLIB_FOR_TARGET) stage1/libgcov.a
3651         -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage1; \
3652            $(RANLIB_FOR_TARGET) stage1/libgcc_eh.a; \
3653         fi
3654         -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3655           cp stage1/$${f} . ; \
3656         else true; \
3657         fi; done
3658 stage1: force stage1-start lang.stage1
3659         -for dir in . $(SUBDIRS) ; \
3660         do \
3661           rm -f $$dir/*$(coverageexts) ; \
3662         done
3663
3664 stage2-start:
3665         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
3666         $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage2
3667         -for dir in intl $(SUBDIRS) ; \
3668          do \
3669            if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
3670          done
3671         -mv $(STAGESTUFF) stage2
3672         -mv intl/*$(objext) stage2/intl
3673 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3674 # dir will work properly.
3675         -if [ -f as$(exeext) ] ; then (cd stage2 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3676         -if [ -f ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3677         -if [ -f collect-ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3678         -rm -f stage2/libgcc.a stage2/libgcov.a stage2/libgcc_eh.a
3679         -cp libgcc.a stage2
3680         -$(RANLIB_FOR_TARGET) stage2/libgcc.a
3681         -cp libgcov.a stage2
3682         -$(RANLIB_FOR_TARGET) stage2/libgcov.a
3683         -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage2; \
3684            $(RANLIB_FOR_TARGET) stage2/libgcc_eh.a; \
3685         fi
3686         -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3687           cp stage2/$${f} . ; \
3688         else true; \
3689         fi; done
3690 stage2: force stage2-start lang.stage2
3691
3692 stage3-start:
3693         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
3694         $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage3
3695         -for dir in intl $(SUBDIRS) ; \
3696          do \
3697            if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
3698          done
3699         -mv $(STAGESTUFF) stage3
3700         -mv intl/*$(objext) stage3/intl
3701 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3702 # dir will work properly.
3703         -if [ -f as$(exeext) ] ; then (cd stage3 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3704         -if [ -f ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3705         -if [ -f collect-ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3706         -rm -f stage3/libgcc.a stage3/libgcov.a stage3/libgcc_eh.a
3707         -cp libgcc.a stage3
3708         -$(RANLIB_FOR_TARGET) stage3/libgcc.a
3709         -cp libgcov.a stage3
3710         -$(RANLIB_FOR_TARGET) stage3/libgcov.a
3711         -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage3; \
3712            $(RANLIB_FOR_TARGET) stage3/libgcc_eh.a; \
3713         fi
3714         -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3715           cp stage3/$${f} . ; \
3716         else true; \
3717         fi; done
3718 stage3: force stage3-start lang.stage3
3719
3720 stage4-start:
3721         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
3722         $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage4
3723         -for dir in intl $(SUBDIRS) ; \
3724          do \
3725            if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
3726          done
3727         -mv $(STAGESTUFF) stage4
3728         -mv intl/*$(objext) stage4/intl
3729 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3730 # dir will work properly.
3731         -if [ -f as$(exeext) ] ; then (cd stage4 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3732         -if [ -f ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3733         -if [ -f collect-ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
3734         -rm -f stage4/libgcc.a stage4/libgcov.a stage4/libgcc_eh.a
3735         -cp libgcc.a stage4
3736         -$(RANLIB_FOR_TARGET) stage4/libgcc.a
3737         -cp libgcov.a stage4
3738         -$(RANLIB_FOR_TARGET) stage4/libgcov.a
3739         -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage4; \
3740            $(RANLIB_FOR_TARGET) stage4/libgcc_eh.a; \
3741         fi
3742         -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3743           cp stage4/$${f} . ; \
3744         else true; \
3745         fi; done
3746 stage4: force stage4-start lang.stage4
3747
3748 # Copy just the executable files from a particular stage into a subdirectory,
3749 # and delete the object files.  Use this if you're just verifying a version
3750 # that is pretty sure to work, and you are short of disk space.
3751 risky-stage1: stage1
3752         -$(MAKE) clean
3753
3754 risky-stage2: stage2
3755         -$(MAKE) clean
3756
3757 risky-stage3: stage3
3758         -$(MAKE) clean
3759
3760 risky-stage4: stage4
3761         -$(MAKE) clean
3762
3763 #In GNU Make, ignore whether `stage*' exists.
3764 .PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
3765 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
3766
3767 force:
3768
3769 # Rules for generating translated message descriptions.
3770 # Disabled by autoconf if the tools are not available.
3771
3772 XGETTEXT = @XGETTEXT@
3773 GMSGFMT = @GMSGFMT@
3774 MSGMERGE = msgmerge
3775
3776 PACKAGE = @PACKAGE@
3777 CATALOGS = @CATALOGS@
3778
3779 .PHONY: build- install- build-po install-po update-po
3780
3781 # Dummy rules to deal with dependencies produced by use of
3782 # "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
3783 build-: ; @true
3784 install-: ; @true
3785
3786 build-po: $(CATALOGS)
3787
3788 # This notation should be acceptable to all Make implementations used
3789 # by people who are interested in updating .po files.
3790 update-po: $(CATALOGS:.gmo=.pox)
3791
3792 # N.B. We do not attempt to copy these into $(srcdir).  The snapshot
3793 # script does that.
3794 .po.gmo:
3795         -test -d po || mkdir po
3796         $(GMSGFMT) --statistics -o $@ $<
3797
3798 # The new .po has to be gone over by hand, so we deposit it into
3799 # build/po with a different extension.
3800 # If build/po/$(PACKAGE).pot exists, use it (it was just created),
3801 # else use the one in srcdir.
3802 .po.pox:
3803         -test -d po || mkdir po
3804         $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
3805                         then echo po/$(PACKAGE).pot; \
3806                         else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
3807
3808 # This rule has to look for .gmo modules in both srcdir and
3809 # the cwd, and has to check that we actually have a catalog
3810 # for each language, in case they weren't built or included
3811 # with the distribution.
3812 install-po:
3813         $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
3814         for cat in $(CATALOGS); do \
3815           lang=`basename $$cat | sed 's/\.gmo$$//'`; \
3816           if [ -f $$cat ]; then :; \
3817           elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
3818           else continue; \
3819           fi; \
3820           dir=$(localedir)/$$lang/LC_MESSAGES; \
3821           echo $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir; \
3822           $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir || exit 1; \
3823           echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
3824           $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
3825         done
3826
3827 # Rule for regenerating the message template (gcc.pot).
3828 # Instead of forcing everyone to edit POTFILES.in, which proved impractical,
3829 # this rule has no dependencies and always regenerates gcc.pot.  This is
3830 # relatively harmless since the .po files do not directly depend on it.
3831 # Note that exgettext has an awk script embedded in it which requires a
3832 # fairly modern (POSIX-compliant) awk.
3833 # The .pot file is left in the build directory.
3834 $(PACKAGE).pot: po/$(PACKAGE).pot
3835 po/$(PACKAGE).pot: force
3836         -test -d po || mkdir po
3837         $(MAKE) po-generated
3838         AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
3839                 $(XGETTEXT) $(PACKAGE) $(srcdir)