(Synchronize with addition made to binutils sources):
[gcc.git] / gcc / Makefile.in
1 # Makefile for GNU Compiler Collection
2 # Run 'configure' to generate Makefile from Makefile.in
3
4 # Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996,
5 # 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2007,
6 # 2008, 2009 Free Software Foundation, Inc.
7
8 #This file is part of GCC.
9
10 #GCC is free software; you can redistribute it and/or modify
11 #it under the terms of the GNU General Public License as published by
12 #the Free Software Foundation; either version 3, or (at your option)
13 #any later version.
14
15 #GCC is distributed in the hope that it will be useful,
16 #but WITHOUT ANY WARRANTY; without even the implied warranty of
17 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 #GNU General Public License for more details.
19
20 #You should have received a copy of the GNU General Public License
21 #along with GCC; see the file COPYING3. If not see
22 #<http://www.gnu.org/licenses/>.
23
24 # The targets for external use include:
25 # all, doc, install, install-cross, install-cross-rest,
26 # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean.
27
28 # This is the default target.
29 # Set by autoconf to "all.internal" for a native build, or
30 # "all.cross" to build a cross compiler.
31 all: @ALL@
32
33 # Depend on this to specify a phony target portably.
34 force:
35
36 # This tells GNU make version 3 not to export the variables
37 # defined in this file into the environment (and thus recursive makes).
38 .NOEXPORT:
39 # And this tells it not to automatically pass command-line variables
40 # to recursive makes.
41 MAKEOVERRIDES =
42
43 # Suppress smart makes who think they know how to automake yacc and flex file
44 .y.c:
45 .l.c:
46
47 # The only suffixes we want for implicit rules are .c and .o, so clear
48 # the list and add them. This speeds up GNU Make, and allows -r to work.
49 # For i18n support, we also need .gmo, .po, .pox.
50 # This must come before the language makefile fragments to allow them to
51 # add suffixes and rules of their own.
52 .SUFFIXES:
53 .SUFFIXES: .c .o .po .pox .gmo
54
55 # -------------------------------
56 # Standard autoconf-set variables
57 # -------------------------------
58
59 build=@build@
60 host=@host@
61 target=@target@
62 target_noncanonical:=@target_noncanonical@
63
64 # Sed command to transform gcc to installed name.
65 program_transform_name := @program_transform_name@
66
67 # -----------------------------
68 # Directories used during build
69 # -----------------------------
70
71 # Directory where sources are, from where we are.
72 srcdir = @srcdir@
73 gcc_docdir = @srcdir@/doc
74
75 # Directory where sources are, absolute.
76 abs_srcdir = @abs_srcdir@
77 abs_docdir = @abs_srcdir@/doc
78
79 # Top build directory for this package, relative to here.
80 top_builddir = .
81
82 # The absolute path to the current directory.
83 objdir := $(shell pwd)
84
85 host_subdir=@host_subdir@
86 build_subdir=@build_subdir@
87 target_subdir=@target_subdir@
88 build_libsubdir=@build_libsubdir@
89
90 # Top build directory for the "Cygnus tree", relative to $(top_builddir).
91 ifeq ($(host_subdir),.)
92 toplevel_builddir := ..
93 else
94 toplevel_builddir := ../..
95 endif
96
97 build_objdir := $(toplevel_builddir)/$(build_subdir)
98 build_libobjdir := $(toplevel_builddir)/$(build_libsubdir)
99 target_objdir := $(toplevel_builddir)/$(target_subdir)
100
101 # --------
102 # Defined vpaths
103 # --------
104
105 # Directory where sources are, from where we are.
106 VPATH = @srcdir@
107
108 # We define a vpath for the sources of the .texi files here because they
109 # are split between multiple directories and we would rather use one implicit
110 # pattern rule for everything.
111 # This vpath could be extended within the Make-lang fragments.
112
113 vpath %.texi $(gcc_docdir)
114 vpath %.texi $(gcc_docdir)/include
115
116 # --------
117 # UNSORTED
118 # --------
119
120 # Variables that exist for you to override.
121 # See below for how to change them for certain systems.
122
123 # List of language subdirectories.
124 SUBDIRS =@subdirs@ build
125
126 # Selection of languages to be made.
127 CONFIG_LANGUAGES = @all_selected_languages@
128 LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES)
129
130 # Default values for variables overridden in Makefile fragments.
131 # CFLAGS is for the user to override to, e.g., do a cross build with -O2.
132 # TCFLAGS is used for compilations with the GCC just built.
133 # T_CFLAGS is used for all compilations and is overridden by t-* files.
134 T_CFLAGS =
135 TCFLAGS =
136 CFLAGS = @CFLAGS@
137 LDFLAGS = @LDFLAGS@
138
139 # Flags to determine code coverage. When coverage is disabled, this will
140 # contain the optimization flags, as you normally want code coverage
141 # without optimization.
142 COVERAGE_FLAGS = @coverage_flags@
143 coverageexts = .{gcda,gcno}
144
145 # The warning flags are separate from CFLAGS because people tend to
146 # override optimization flags and we'd like them to still have warnings
147 # turned on. These flags are also used to pass other stage dependent
148 # flags from configure. The user is free to explicitly turn these flags
149 # off if they wish.
150 # LOOSE_WARN are the warning flags to use when compiling something
151 # which is only compiled with gcc, such as libgcc.
152 # STRICT_WARN are the additional warning flags to
153 # apply to the back end and some front ends, which may be compiled
154 # with other compilers.
155 LOOSE_WARN = @loose_warn@
156 STRICT_WARN = @strict_warn@
157
158 # This is set by --enable-checking. The idea is to catch forgotten
159 # "extern" tags in header files.
160 NOCOMMON_FLAG = @nocommon_flag@
161
162 # This is set by --disable-maintainer-mode (default) to "#"
163 MAINT := @MAINT@
164
165 # These are set by --enable-checking=valgrind.
166 RUN_GEN = @valgrind_command@
167 VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
168
169 # This is how we control whether or not the additional warnings are applied.
170 .-warn = $(STRICT_WARN)
171 build-warn = $(STRICT_WARN)
172 GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn)
173
174 # These files are to have specific diagnostics suppressed, or are not to
175 # be subject to -Werror:
176 # flex output may yield harmless "no previous prototype" warnings
177 build/gengtype-lex.o-warn = -Wno-error
178 # mips-tfile.c contains -Wcast-qual warnings.
179 mips-tfile.o-warn = -Wno-error
180
181 # All warnings have to be shut off in stage1 if the compiler used then
182 # isn't gcc; configure determines that. WARN_CFLAGS will be either
183 # $(GCC_WARN_CFLAGS), or nothing.
184 WARN_CFLAGS = @warn_cflags@
185
186 CPPFLAGS = @CPPFLAGS@
187
188 AWK = @AWK@
189 CC = @CC@
190 BISON = @BISON@
191 BISONFLAGS =
192 FLEX = @FLEX@
193 FLEXFLAGS =
194 AR = @AR@
195 AR_FLAGS = rc
196 NM = @NM@
197 RANLIB = @RANLIB@
198 RANLIB_FLAGS = @ranlib_flags@
199
200 # The name of the compiler to use. Currently always $(CC). In the
201 # future this may change to $(CXX).
202 COMPILER = $(CC)
203 COMPILER_FLAGS = $(CFLAGS)
204
205 # -------------------------------------------
206 # Programs which operate on the build machine
207 # -------------------------------------------
208
209 SHELL = @SHELL@
210 # pwd command to use. Allow user to override default by setting PWDCMD in
211 # the environment to account for automounters. The make variable must not
212 # be called PWDCMD, otherwise the value set here is passed to make
213 # subprocesses and overrides the setting from the user's environment.
214 # Don't use PWD since it is a common shell environment variable and we
215 # don't want to corrupt it.
216 PWD_COMMAND = $${PWDCMD-pwd}
217 # on sysV, define this as cp.
218 INSTALL = @INSTALL@
219 # Some systems may be missing symbolic links, regular links, or both.
220 # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
221 LN=@LN@
222 LN_S=@LN_S@
223 # These permit overriding just for certain files.
224 INSTALL_PROGRAM = @INSTALL_PROGRAM@
225 INSTALL_DATA = @INSTALL_DATA@
226 INSTALL_SCRIPT = @INSTALL@
227 MAKEINFO = @MAKEINFO@
228 MAKEINFOFLAGS = --no-split
229 TEXI2DVI = texi2dvi
230 TEXI2PDF = texi2pdf
231 TEXI2HTML = $(MAKEINFO) --html
232 TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
233 POD2MAN = pod2man --center="GNU" --release="gcc-$(version)"
234 # Some versions of `touch' (such as the version on Solaris 2.8)
235 # do not correctly set the timestamp due to buggy versions of `utime'
236 # in the kernel. So, we use `echo' instead.
237 STAMP = echo timestamp >
238 # If necessary (e.g., when using the MSYS shell on Microsoft Windows)
239 # translate the shell's notion of absolute pathnames to the native
240 # spelling.
241 build_file_translate = @build_file_translate@
242
243 # Make sure the $(MAKE) variable is defined.
244 @SET_MAKE@
245
246 # Locate mkinstalldirs.
247 mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs
248
249 # write_entries_to_file - writes each entry in a list
250 # to the specified file. Entries are written in chunks of
251 # $(write_entries_to_file_split) to accomodate systems with
252 # severe command-line-length limitations.
253 # Parameters:
254 # $(1): variable containing entries to iterate over
255 # $(2): output file
256 write_entries_to_file_split = 50
257 write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \
258 $(foreach range, \
259 $(shell i=1; while test $$i -le $(words $(1)); do \
260 echo $$i; i=`expr $$i + $(write_entries_to_file_split)`; done), \
261 $(shell echo "$(wordlist $(range), \
262 $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \
263 | tr ' ' '\n' >> $(2)))
264
265 # --------
266 # UNSORTED
267 # --------
268
269 # Some compilers can't handle cc -c blah.c -o foo/blah.o.
270 # In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
271 OUTPUT_OPTION = @OUTPUT_OPTION@
272
273 # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
274 # -I../zlib, unless we were configured with --with-system-zlib, in which
275 # case both are empty.
276 ZLIB = @zlibdir@ -lz
277 ZLIBINC = @zlibinc@
278
279 # How to find GMP
280 GMPLIBS = @GMPLIBS@
281 GMPINC = @GMPINC@
282
283 # How to find PPL
284 PPLLIBS = @PPLLIBS@
285 PPLINC = @PPLINC@
286
287 # How to find CLOOG
288 CLOOGLIBS = @CLOOGLIBS@
289 CLOOGINC = @CLOOGINC@
290
291 # Libs and linker option needed for plugin support
292 PLUGINLIBS = @pluginlibs@
293
294 enable_plugin = @enable_plugin@
295
296 CPPLIB = ../libcpp/libcpp.a
297 CPPINC = -I$(srcdir)/../libcpp/include
298
299 # Where to find decNumber
300 enable_decimal_float = @enable_decimal_float@
301 DECNUM = $(srcdir)/../libdecnumber
302 DECNUMFMT = $(srcdir)/../libdecnumber/$(enable_decimal_float)
303 DECNUMINC = -I$(DECNUM) -I$(DECNUMFMT) -I../libdecnumber
304 LIBDECNUMBER = ../libdecnumber/libdecnumber.a
305
306 # Target to use when installing include directory. Either
307 # install-headers-tar, install-headers-cpio or install-headers-cp.
308 INSTALL_HEADERS_DIR = @build_install_headers_dir@
309
310 # Header files that are made available under the same name
311 # to programs compiled with GCC.
312 USER_H = $(srcdir)/ginclude/float.h \
313 $(srcdir)/ginclude/iso646.h \
314 $(srcdir)/ginclude/stdarg.h \
315 $(srcdir)/ginclude/stdbool.h \
316 $(srcdir)/ginclude/stddef.h \
317 $(srcdir)/ginclude/varargs.h \
318 $(srcdir)/ginclude/stdfix.h \
319 $(EXTRA_HEADERS)
320
321 UNWIND_H = $(srcdir)/unwind-generic.h
322
323 # The GCC to use for compiling crt*.o.
324 # Usually the one we just built.
325 # Don't use this as a dependency--use $(GCC_PASSES).
326 GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld
327
328 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
329 # It specifies -B./.
330 # It also specifies -isystem ./include to find, e.g., stddef.h.
331 GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS)
332
333 # ---------------------------------------------------
334 # Programs which produce files for the target machine
335 # ---------------------------------------------------
336
337 AR_FOR_TARGET := $(shell \
338 if [ -f $(objdir)/../binutils/ar ] ; then \
339 echo $(objdir)/../binutils/ar ; \
340 else \
341 if [ "$(host)" = "$(target)" ] ; then \
342 echo $(AR); \
343 else \
344 t='$(program_transform_name)'; echo ar | sed -e $$t ; \
345 fi; \
346 fi)
347 AR_FLAGS_FOR_TARGET =
348 AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
349 AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
350 LIPO_FOR_TARGET = lipo
351 ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@
352 RANLIB_FOR_TARGET := $(shell \
353 if [ -f $(objdir)/../binutils/ranlib ] ; then \
354 echo $(objdir)/../binutils/ranlib ; \
355 else \
356 if [ "$(host)" = "$(target)" ] ; then \
357 echo $(RANLIB); \
358 else \
359 t='$(program_transform_name)'; echo ranlib | sed -e $$t ; \
360 fi; \
361 fi)
362 ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@
363 ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@
364 NM_FOR_TARGET = ./nm
365 STRIP_FOR_TARGET := $(shell \
366 if [ -f $(objdir)/../binutils/strip ] ; then \
367 echo $(objdir)/../binutils/strip ; \
368 else \
369 if [ "$(host)" = "$(target)" ] ; then \
370 echo strip; \
371 else \
372 t='$(program_transform_name)'; echo strip | sed -e $$t ; \
373 fi; \
374 fi)
375
376 # --------
377 # UNSORTED
378 # --------
379
380 # Where to find some libiberty headers.
381 HASHTAB_H = $(srcdir)/../include/hashtab.h
382 OBSTACK_H = $(srcdir)/../include/obstack.h
383 SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
384 FIBHEAP_H = $(srcdir)/../include/fibheap.h
385 PARTITION_H = $(srcdir)/../include/partition.h
386 MD5_H = $(srcdir)/../include/md5.h
387
388 # Default native SYSTEM_HEADER_DIR, to be overridden by targets.
389 NATIVE_SYSTEM_HEADER_DIR = /usr/include
390 # Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
391 CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
392
393 # autoconf sets SYSTEM_HEADER_DIR to one of the above.
394 # Purge it of unneccessary internal relative paths
395 # to directories that might not exist yet.
396 # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta.
397 # Use single quotes here to avoid nested double- and backquotes, this
398 # macro is also used in a double-quoted context.
399 SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
400
401 # Control whether to run fixincludes.
402 STMP_FIXINC = @STMP_FIXINC@
403
404 # Test to see whether <limits.h> exists in the system header files.
405 LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
406
407 # Directory for prefix to system directories, for
408 # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
409 TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
410
411 xmake_file=@xmake_file@
412 tmake_file=@tmake_file@
413 TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
414 TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
415 TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
416 out_file=$(srcdir)/config/@out_file@
417 out_object_file=@out_object_file@
418 md_file=$(srcdir)/config/@md_file@
419 tm_file_list=@tm_file_list@
420 tm_include_list=@tm_include_list@
421 tm_defines=@tm_defines@
422 tm_p_file_list=@tm_p_file_list@
423 tm_p_include_list=@tm_p_include_list@
424 build_xm_file_list=@build_xm_file_list@
425 build_xm_include_list=@build_xm_include_list@
426 build_xm_defines=@build_xm_defines@
427 host_xm_file_list=@host_xm_file_list@
428 host_xm_include_list=@host_xm_include_list@
429 host_xm_defines=@host_xm_defines@
430 xm_file_list=@xm_file_list@
431 xm_include_list=@xm_include_list@
432 xm_defines=@xm_defines@
433 lang_checks=check-gcc
434 lang_checks_parallelized=check-gcc
435 # This lists a couple of test files that take most time during check-gcc.
436 # When doing parallelized check-gcc, these can run in parallel with the
437 # remaining tests. Each word in this variable stands for work for one
438 # make goal and one extra make goal is added to handle all the *.exp
439 # files not handled explicitly already. If multiple *.exp files
440 # should be run in the same runtest invocation (usually if they aren't
441 # very long running, but still should be split of from the check-parallel-$lang
442 # remaining tests runtest invocation), they should be concatenated with commas.
443 # Note that [a-zA-Z] wildcards need to have []s prefixed with \ (needed
444 # by tcl) and as the *.exp arguments are mached both as is and with
445 # */ prefixed to it in runtest_file_p, it is usually desirable to include
446 # a subdirectory name.
447 check_gcc_parallelize=execute.exp=execute/2* \
448 execute.exp=execute/\[013-9a-zA-Z\]* \
449 compile.exp dg.exp \
450 struct-layout-1.exp,unsorted.exp,stackalign.exp,i386.exp
451 lang_opt_files=@lang_opt_files@ $(srcdir)/c.opt $(srcdir)/common.opt
452 lang_specs_files=@lang_specs_files@
453 lang_tree_files=@lang_tree_files@
454 target_cpu_default=@target_cpu_default@
455 GCC_THREAD_FILE=@thread_file@
456 OBJC_BOEHM_GC=@objc_boehm_gc@
457 GTHREAD_FLAGS=@gthread_flags@
458 extra_modes_file=@extra_modes_file@
459 extra_opt_files=@extra_opt_files@
460 host_hook_obj=@out_host_hook_obj@
461
462 # ------------------------
463 # Installation directories
464 # ------------------------
465
466 # Common prefix for installation directories.
467 # NOTE: This directory must exist when you start installation.
468 prefix = @prefix@
469 # Directory in which to put localized header files. On the systems with
470 # gcc as the native cc, `local_prefix' may not be `prefix' which is
471 # `/usr'.
472 # NOTE: local_prefix *should not* default from prefix.
473 local_prefix = @local_prefix@
474 # Directory in which to put host dependent programs and libraries
475 exec_prefix = @exec_prefix@
476 # Directory in which to put the executable for the command `gcc'
477 bindir = @bindir@
478 # Directory in which to put the directories used by the compiler.
479 libdir = @libdir@
480 # Directory in which GCC puts its executables.
481 libexecdir = @libexecdir@
482
483 # --------
484 # UNSORTED
485 # --------
486
487 # Directory in which the compiler finds libraries etc.
488 libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(version)
489 # Directory in which the compiler finds executables
490 libexecsubdir = $(libexecdir)/gcc/$(target_noncanonical)/$(version)
491 # Directory in which plugin headers are installed
492 plugin_includedir = $(libsubdir)/plugin/include
493 # Used to produce a relative $(gcc_tooldir) in gcc.o
494 unlibsubdir = ../../..
495 # $(prefix), expressed as a path relative to $(libsubdir).
496 #
497 # An explanation of the sed strings:
498 # -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
499 # -e 's|/$$||' match a trailing forward slash and eliminates it
500 # -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
501 # -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
502 #
503 # (*) Note this pattern overwrites the first character of the string
504 # with a forward slash if one is not already present. This is not a
505 # problem because the exact names of the sub-directories concerned is
506 # unimportant, just the number of them matters.
507 #
508 # The practical upshot of these patterns is like this:
509 #
510 # prefix exec_prefix result
511 # ------ ----------- ------
512 # /foo /foo/bar ../
513 # /foo/ /foo/bar ../
514 # /foo /foo/bar/ ../
515 # /foo/ /foo/bar/ ../
516 # /foo /foo/bar/ugg ../../
517 libsubdir_to_prefix := \
518 $(unlibsubdir)/$(shell echo "$(libdir)" | \
519 sed -e 's|^$(prefix)||' -e 's|/$$||' -e 's|^[^/]|/|' \
520 -e 's|/[^/]*|../|g')
521 # $(exec_prefix), expressed as a path relative to $(prefix).
522 prefix_to_exec_prefix := \
523 $(shell echo "$(exec_prefix)" | \
524 sed -e 's|^$(prefix)||' -e 's|^/||' -e '/./s|$$|/|')
525 # Directory in which to find other cross-compilation tools and headers.
526 dollar = @dollar@
527 # Used in install-cross.
528 gcc_tooldir = @gcc_tooldir@
529 # Used to install the shared libgcc.
530 slibdir = @slibdir@
531 # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
532 build_tooldir = $(exec_prefix)/$(target_noncanonical)
533 # Directory in which the compiler finds target-independent g++ includes.
534 gcc_gxx_include_dir = @gcc_gxx_include_dir@
535 # Directory to search for site-specific includes.
536 local_includedir = $(local_prefix)/include
537 includedir = $(prefix)/include
538 # where the info files go
539 infodir = @infodir@
540 # Where cpp should go besides $prefix/bin if necessary
541 cpp_install_dir = @cpp_install_dir@
542 # where the locale files go
543 datadir = @datadir@
544 localedir = $(datadir)/locale
545 # Extension (if any) to put in installed man-page filename.
546 man1ext = .1
547 man7ext = .7
548 objext = .o
549 exeext = @host_exeext@
550 build_exeext = @build_exeext@
551
552 # Directory in which to put man pages.
553 mandir = @mandir@
554 man1dir = $(mandir)/man1
555 man7dir = $(mandir)/man7
556 # Dir for temp files.
557 tmpdir = /tmp
558
559 datarootdir = @datarootdir@
560 docdir = @docdir@
561 # Directory in which to build HTML
562 build_htmldir = $(objdir)/HTML/gcc-$(version)
563 # Directory in which to put HTML
564 htmldir = @htmldir@
565
566 # Whether we were configured with NLS.
567 USE_NLS = @USE_NLS@
568
569 # Internationalization library.
570 LIBINTL = @LIBINTL@
571 LIBINTL_DEP = @LIBINTL_DEP@
572
573 # Character encoding conversion library.
574 LIBICONV = @LIBICONV@
575 LIBICONV_DEP = @LIBICONV_DEP@
576
577 # The GC method to be used on this system.
578 GGC=@GGC@.o
579
580 # If a supplementary library is being used for the GC.
581 GGC_LIB=
582
583 # "true" if the target C library headers are unavailable; "false"
584 # otherwise.
585 inhibit_libc = @inhibit_libc@
586 ifeq ($(inhibit_libc),true)
587 INHIBIT_LIBC_CFLAGS = -Dinhibit_libc
588 endif
589
590 # Options to use when compiling libgcc2.a.
591 #
592 LIBGCC2_DEBUG_CFLAGS = -g
593 LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) \
594 $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) \
595 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED \
596 $(INHIBIT_LIBC_CFLAGS)
597
598 # Additional options to use when compiling libgcc2.a.
599 # Some targets override this to -isystem include
600 LIBGCC2_INCLUDES =
601
602 # Additional target-dependent options for compiling libgcc2.a.
603 TARGET_LIBGCC2_CFLAGS =
604
605 # Options to use when compiling crtbegin/end.
606 CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
607 -finhibit-size-directive -fno-inline -fno-exceptions \
608 -fno-zero-initialized-in-bss -fno-toplevel-reorder -fno-tree-vectorize \
609 $(INHIBIT_LIBC_CFLAGS)
610
611 # Additional sources to handle exceptions; overridden by targets as needed.
612 LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde.c \
613 $(srcdir)/unwind-sjlj.c $(srcdir)/gthr-gnat.c $(srcdir)/unwind-c.c
614 LIB2ADDEHSTATIC = $(LIB2ADDEH)
615 LIB2ADDEHSHARED = $(LIB2ADDEH)
616 LIB2ADDEHDEP = $(UNWIND_H) unwind-pe.h unwind.inc unwind-dw2-fde.h unwind-dw2.h
617
618 # Don't build libunwind by default.
619 LIBUNWIND =
620 LIBUNWINDDEP =
621 SHLIBUNWIND_LINK =
622 SHLIBUNWIND_INSTALL =
623
624 # nm flags to list global symbols in libgcc object files.
625 SHLIB_NM_FLAGS = -pg
626
627 # List of extra executables that should be compiled for this target machine
628 # that are used for compiling from source code to object code.
629 # The rules for compiling them should be in the t-* file for the machine.
630 EXTRA_PASSES =@extra_passes@
631
632 # Like EXTRA_PASSES, but these are used when linking.
633 EXTRA_PROGRAMS = @extra_programs@
634
635 # List of extra object files that should be compiled for this target machine.
636 # The rules for compiling them should be in the t-* file for the machine.
637 EXTRA_PARTS = @extra_parts@
638
639 # List of extra object files that should be compiled and linked with
640 # compiler proper (cc1, cc1obj, cc1plus).
641 EXTRA_OBJS = @extra_objs@
642
643 # List of extra object files that should be compiled and linked with
644 # the gcc driver.
645 EXTRA_GCC_OBJS =@extra_gcc_objs@
646
647 # List of additional header files to install.
648 EXTRA_HEADERS =@extra_headers_list@
649
650 # How to handle <stdint.h>.
651 USE_GCC_STDINT = @use_gcc_stdint@
652
653 # The configure script will set this to collect2$(exeext), except on a
654 # (non-Unix) host which can not build collect2, for which it will be
655 # set to empty.
656 COLLECT2 = @collect2@
657
658 # List of extra C and assembler files to add to static and shared libgcc2.
659 # Assembler files should have names ending in `.asm'.
660 LIB2FUNCS_EXTRA =
661
662 # List of extra C and assembler files to add to static libgcc2.
663 # Assembler files should have names ending in `.asm'.
664 LIB2FUNCS_STATIC_EXTRA =
665
666 # List of functions not to build from libgcc2.c.
667 LIB2FUNCS_EXCLUDE =
668
669 # Target sfp-machine.h file.
670 SFP_MACHINE =
671
672 # Program to convert libraries.
673 LIBCONVERT =
674
675 # Control whether header files are installed.
676 INSTALL_HEADERS=install-headers install-mkheaders
677
678 # Control whether Info documentation is built and installed.
679 BUILD_INFO = @BUILD_INFO@
680
681 # Control whether manpages generated by texi2pod.pl can be rebuilt.
682 GENERATED_MANPAGES = @GENERATED_MANPAGES@
683
684 # Additional directories of header files to run fixincludes on.
685 # These should be directories searched automatically by default
686 # just as /usr/include is.
687 # *Do not* use this for directories that happen to contain
688 # header files, but are not searched automatically by default.
689 # On most systems, this is empty.
690 OTHER_FIXINCLUDES_DIRS=
691
692 # A list of all the language-specific executables.
693 COMPILERS = cc1$(exeext) @all_compilers@
694
695 # List of things which should already be built whenever we try to use xgcc
696 # to compile anything (without linking).
697 GCC_PASSES=xgcc$(exeext) cc1$(exeext) specs $(EXTRA_PASSES)
698
699 # Directory to link to, when using the target `maketest'.
700 DIR = ../gcc
701
702 # Native compiler for the build machine and its switches.
703 CC_FOR_BUILD = @CC_FOR_BUILD@
704 BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE
705
706 # Native compiler that we use. This may be C++ some day.
707 COMPILER_FOR_BUILD = $(CC_FOR_BUILD)
708 BUILD_COMPILERFLAGS = $(BUILD_CFLAGS)
709
710 # Native linker and preprocessor flags. For x-fragment overrides.
711 BUILD_LDFLAGS=@BUILD_LDFLAGS@
712 BUILD_CPPFLAGS=$(ALL_CPPFLAGS)
713
714 # Actual name to use when installing a native compiler.
715 GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
716 GCC_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gcc|sed '$(program_transform_name)')
717 CPP_INSTALL_NAME := $(shell echo cpp|sed '$(program_transform_name)')
718 GCOV_INSTALL_NAME := $(shell echo gcov|sed '$(program_transform_name)')
719 GCCBUG_INSTALL_NAME := $(shell echo gccbug|sed '$(program_transform_name)')
720
721 # Setup the testing framework, if you have one
722 EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
723 echo $${rootme}/../expect/expect ; \
724 else echo expect ; fi`
725
726 RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
727 echo $${srcdir}/../dejagnu/runtest ; \
728 else echo runtest; fi`
729 RUNTESTFLAGS =
730
731 # Extra flags to use when compiling crt{begin,end}.o.
732 CRTSTUFF_T_CFLAGS =
733
734 # Extra flags to use when compiling [m]crt0.o.
735 CRT0STUFF_T_CFLAGS =
736
737 # "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
738 T =
739
740 # Should T contain a `=', libgcc/Makefile will make T_TARGET, setting
741 # $(T_TARGET) to the name of the actual target filename.
742 T_TARGET =
743 T_TARGET : $(T_TARGET)
744
745 # This should name the specs file that we're going to install. Target
746 # Makefiles may override it and name another file to be generated from
747 # the built-in specs and installed as the default spec, as long as
748 # they also introduce a rule to generate a file name specs, to be used
749 # at build time.
750 SPECS = specs
751
752 # End of variables for you to override.
753
754 # GTM_H lists the config files that the generator files depend on,
755 # while TM_H lists the ones ordinary gcc files depend on, which
756 # includes several files generated by those generators.
757 BCONFIG_H = bconfig.h $(build_xm_file_list)
758 CONFIG_H = config.h $(host_xm_file_list)
759 TCONFIG_H = tconfig.h $(xm_file_list)
760 TM_P_H = tm_p.h $(tm_p_file_list)
761 GTM_H = tm.h $(tm_file_list)
762 TM_H = $(GTM_H) insn-constants.h insn-flags.h options.h
763
764 # Variables for version information.
765 BASEVER := $(srcdir)/BASE-VER # 4.x.y
766 DEVPHASE := $(srcdir)/DEV-PHASE # experimental, prerelease, ""
767 DATESTAMP := $(srcdir)/DATESTAMP # YYYYMMDD or empty
768 REVISION := $(srcdir)/REVISION # [BRANCH revision XXXXXX]
769
770 BASEVER_c := $(shell cat $(BASEVER))
771 DEVPHASE_c := $(shell cat $(DEVPHASE))
772 DATESTAMP_c := $(shell cat $(DATESTAMP))
773
774 ifeq (,$(wildcard $(REVISION)))
775 REVISION_c :=
776 else
777 REVISION_c := $(shell cat $(REVISION))
778 endif
779
780 version := $(BASEVER_c)
781
782 # For use in version.c - double quoted strings, with appropriate
783 # surrounding punctuation and spaces, and with the datestamp and
784 # development phase collapsed to the empty string in release mode
785 # (i.e. if DEVPHASE_c is empty). The space immediately after the
786 # comma in the $(if ...) constructs is significant - do not remove it.
787 BASEVER_s := "\"$(BASEVER_c)\""
788 DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\""
789 DATESTAMP_s := "\"$(if $(DEVPHASE_c), $(DATESTAMP_c))\""
790 PKGVERSION_s:= "\"@PKGVERSION@\""
791 BUGURL_s := "\"@REPORT_BUGS_TO@\""
792
793 PKGVERSION := @PKGVERSION@
794 BUGURL_TEXI := @REPORT_BUGS_TEXI@
795
796 ifdef REVISION_c
797 REVISION_s := "\"$(if $(DEVPHASE_c), $(REVISION_c))\""
798 else
799 REVISION_s := "\"\""
800 endif
801
802 # Shorthand variables for dependency lists.
803 EXCEPT_H = except.h sbitmap.h vecprim.h
804 TOPLEV_H = toplev.h input.h bversion.h
805 TARGET_H = $(TM_H) target.h insn-modes.h
806 MACHMODE_H = machmode.h mode-classes.def insn-modes.h
807 HOOKS_H = hooks.h $(MACHMODE_H)
808 HOSTHOOKS_DEF_H = hosthooks-def.h $(HOOKS_H)
809 LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
810 TARGET_DEF_H = target-def.h $(HOOKS_H) targhooks.h
811 RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H) reg-notes.def insn-notes.def \
812 $(INPUT_H) $(REAL_H) statistics.h vec.h $(FIXED_VALUE_H) alias.h
813 FIXED_VALUE_H = fixed-value.h $(MACHMODE_H) double-int.h
814 RTL_H = $(RTL_BASE_H) genrtl.h
815 PARAMS_H = params.h params.def
816 BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def
817 TREE_H = tree.h all-tree.def tree.def c-common.def $(lang_tree_files) \
818 $(MACHMODE_H) tree-check.h $(BUILTINS_DEF) \
819 $(INPUT_H) statistics.h vec.h treestruct.def $(HASHTAB_H) \
820 double-int.h alias.h $(SYMTAB_H) options.h
821 BASIC_BLOCK_H = basic-block.h $(BITMAP_H) sbitmap.h varray.h $(PARTITION_H) \
822 hard-reg-set.h $(PREDICT_H) vec.h $(FUNCTION_H) \
823 cfghooks.h $(OBSTACK_H)
824 GIMPLE_H = gimple.h gimple.def gsstruct.def pointer-set.h vec.h \
825 $(GGC_H) $(BASIC_BLOCK_H) $(TM_H) $(TARGET_H) tree-ssa-operands.h
826 GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h
827 COVERAGE_H = coverage.h $(GCOV_IO_H)
828 DEMANGLE_H = $(srcdir)/../include/demangle.h
829 RECOG_H = recog.h
830 ALIAS_H = alias.h coretypes.h
831 EMIT_RTL_H = emit-rtl.h
832 FLAGS_H = flags.h options.h
833 FUNCTION_H = function.h $(TREE_H) $(HASHTAB_H) varray.h
834 EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) $(MACHMODE_H) $(EMIT_RTL_H)
835 OPTABS_H = optabs.h insn-codes.h
836 REGS_H = regs.h varray.h $(MACHMODE_H) $(OBSTACK_H) $(BASIC_BLOCK_H) $(FUNCTION_H)
837 RESOURCE_H = resource.h hard-reg-set.h
838 SCHED_INT_H = sched-int.h $(INSN_ATTR_H) $(BASIC_BLOCK_H) $(RTL_H) $(DF_H) vecprim.h
839 SEL_SCHED_IR_H = sel-sched-ir.h $(INSN_ATTR_H) $(BASIC_BLOCK_H) $(RTL_H) \
840 $(GGC_H) $(SCHED_INT_H)
841 SEL_SCHED_DUMP_H = sel-sched-dump.h $(SEL_SCHED_IR_H)
842 INTEGRATE_H = integrate.h $(VARRAY_H)
843 CFGLAYOUT_H = cfglayout.h $(BASIC_BLOCK_H)
844 CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) $(RTL_H) vecprim.h double-int.h
845 IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H)
846 IPA_REFERENCE_H = ipa-reference.h $(BITMAP_H) $(TREE_H)
847 IPA_TYPE_ESCAPE_H = ipa-type-escape.h $(TREE_H)
848 CGRAPH_H = cgraph.h $(TREE_H) $(BASIC_BLOCK_H) cif-code.def
849 DF_H = df.h $(BITMAP_H) $(BASIC_BLOCK_H) alloc-pool.h $(TIMEVAR_H)
850 RESOURCE_H = resource.h hard-reg-set.h $(DF_H)
851 DDG_H = ddg.h sbitmap.h $(DF_H)
852 GCC_H = gcc.h version.h
853 GGC_H = ggc.h gtype-desc.h statistics.h
854 TIMEVAR_H = timevar.h timevar.def
855 INSN_ATTR_H = insn-attr.h $(INSN_ADDR_H) $(srcdir)/varray.h
856 INSN_ADDR_H = $(srcdir)/insn-addr.h vecprim.h
857 C_COMMON_H = c-common.h $(SPLAY_TREE_H) $(CPPLIB_H) $(GGC_H)
858 C_PRAGMA_H = c-pragma.h $(CPPLIB_H)
859 C_TREE_H = c-tree.h $(C_COMMON_H) $(TOPLEV_H) $(DIAGNOSTIC_H)
860 SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \
861 $(srcdir)/../include/safe-ctype.h $(srcdir)/../include/filenames.h
862 PREDICT_H = predict.h predict.def
863 CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \
864 $(srcdir)/../libcpp/include/cpplib.h
865 INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h
866 DECNUM_H = $(DECNUM)/decContext.h $(DECNUM)/decDPD.h $(DECNUM)/decNumber.h \
867 $(DECNUMFMT)/decimal32.h $(DECNUMFMT)/decimal64.h \
868 $(DECNUMFMT)/decimal128.h $(DECNUMFMT)/decimal128Local.h
869 MKDEPS_H = $(srcdir)/../libcpp/include/mkdeps.h
870 SYMTAB_H = $(srcdir)/../libcpp/include/symtab.h $(OBSTACK_H)
871 CPP_ID_DATA_H = $(CPPLIB_H) $(srcdir)/../libcpp/include/cpp-id-data.h
872 CPP_INTERNAL_H = $(srcdir)/../libcpp/internal.h $(CPP_ID_DATA_H)
873 TREE_PASS_H = tree-pass.h $(TIMEVAR_H)
874 TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H) $(TREE_PASS_H)
875 TREE_FLOW_H = tree-flow.h tree-flow-inline.h tree-ssa-operands.h \
876 $(BITMAP_H) $(BASIC_BLOCK_H) hard-reg-set.h $(GIMPLE_H) \
877 $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \
878 tree-ssa-alias.h
879 TREE_SSA_LIVE_H = tree-ssa-live.h $(PARTITION_H) vecprim.h
880 SSAEXPAND_H = ssaexpand.h $(TREE_SSA_LIVE_H)
881 PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H)
882 DIAGNOSTIC_H = diagnostic.h diagnostic.def $(PRETTY_PRINT_H) options.h
883 C_PRETTY_PRINT_H = c-pretty-print.h $(PRETTY_PRINT_H) $(C_COMMON_H) $(TREE_H)
884 SCEV_H = tree-scalar-evolution.h $(GGC_H) tree-chrec.h $(PARAMS_H)
885 LAMBDA_H = lambda.h $(TREE_H) vec.h $(GGC_H)
886 TREE_DATA_REF_H = tree-data-ref.h $(LAMBDA_H) omega.h graphds.h tree-chrec.h
887 VARRAY_H = varray.h $(MACHMODE_H) $(SYSTEM_H) coretypes.h $(TM_H)
888 TREE_INLINE_H = tree-inline.h $(VARRAY_H) pointer-set.h
889 REAL_H = real.h $(MACHMODE_H)
890 IRA_INT_H = ira.h ira-int.h $(CFGLOOP_H) alloc-pool.h
891 DBGCNT_H = dbgcnt.h dbgcnt.def
892 EBIMAP_H = ebitmap.h sbitmap.h
893 IPA_PROP_H = ipa-prop.h $(TREE_H) vec.h $(CGRAPH_H)
894 GSTAB_H = gstab.h stab.def
895 BITMAP_H = bitmap.h $(HASHTAB_H) statistics.h
896 GCC_PLUGIN_H = gcc-plugin.h $(CONFIG_H) $(SYSTEM_H)
897 PLUGIN_H = plugin.h $(GCC_PLUGIN_H)
898 PLUGIN_VERSION_H = plugin-version.h configargs.h
899
900 #\f
901 # Now figure out from those variables how to compile and link.
902
903 # IN_GCC distinguishes between code compiled into GCC itself and other
904 # programs built during a bootstrap.
905 # autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a
906 # cross compiler which does not use the native headers and libraries.
907 INTERNAL_CFLAGS = -DIN_GCC @CROSS@
908
909 # This is the variable actually used when we compile. If you change this,
910 # you probably want to update BUILD_CFLAGS in configure.ac
911 ALL_CFLAGS = $(T_CFLAGS) \
912 $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@
913
914 # Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro
915 # puts -I options in CPPFLAGS, our include files in the srcdir will always
916 # win against random include files in /usr/include.
917 ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS)
918
919 # This is the variable to use when using $(COMPILER).
920 ALL_COMPILERFLAGS = $(ALL_CFLAGS)
921
922 # Build and host support libraries.
923 LIBIBERTY = ../libiberty/libiberty.a
924 BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a
925
926 # Dependencies on the intl and portability libraries.
927 LIBDEPS= $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) $(LIBDECNUMBER)
928
929 # Likewise, for use in the tools that must run on this machine
930 # even if we are cross-building GCC.
931 BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
932
933 # How to link with both our special library facilities
934 # and the system's installed libraries.
935 LIBS = @LIBS@ $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBIBERTY) $(LIBDECNUMBER)
936 BACKENDLIBS = $(CLOOGLIBS) $(PPLLIBS) $(GMPLIBS) $(PLUGINLIBS)
937 # Any system libraries needed just for GNAT.
938 SYSLIBS = @GNAT_LIBEXC@
939
940 # Used from ada/Make-lang.in
941 GNATBIND = @GNATBIND@
942 GNATMAKE = @GNATMAKE@
943
944 # Libs needed (at present) just for jcf-dump.
945 LDEXP_LIB = @LDEXP_LIB@
946
947 # Likewise, for use in the tools that must run on this machine
948 # even if we are cross-building GCC.
949 BUILD_LIBS = $(BUILD_LIBIBERTY)
950
951 BUILD_RTL = build/rtl.o build/read-rtl.o build/ggc-none.o build/vec.o \
952 build/min-insn-modes.o build/gensupport.o build/print-rtl.o
953 BUILD_ERRORS = build/errors.o
954
955 # Specify the directories to be searched for header files.
956 # Both . and srcdir are used, in that order,
957 # so that *config.h will be found in the compilation
958 # subdirectory rather than in the source directory.
959 # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
960 # currently being compiled, in both source trees, to be examined as well.
961 # libintl.h will be found in ../intl if we are using the included libintl.
962 INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
963 -I$(srcdir)/../include @INCINTL@ \
964 $(CPPINC) $(GMPINC) $(DECNUMINC) \
965 $(PPLINC) $(CLOOGINC)
966
967 .c.o:
968 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION)
969
970 #\f
971 # Support for additional languages (other than C).
972 # C can be supported this way too (leave for later).
973
974 LANG_MAKEFRAGS = @all_lang_makefrags@
975 LANG_MAKEFILES = @all_lang_makefiles@
976
977 # Flags to pass to recursive makes.
978 # CC is set by configure.
979 # ??? The choices here will need some experimenting with.
980
981 export AR_FOR_TARGET
982 export AR_CREATE_FOR_TARGET
983 export AR_FLAGS_FOR_TARGET
984 export AR_EXTRACT_FOR_TARGET
985 export AWK
986 export DESTDIR
987 export GCC_FOR_TARGET
988 export INCLUDES
989 export INSTALL_DATA
990 export LIB1ASMSRC
991 export LIBGCC2_CFLAGS
992 export LIPO_FOR_TARGET
993 export MACHMODE_H
994 export NM_FOR_TARGET
995 export STRIP_FOR_TARGET
996 export RANLIB_FOR_TARGET
997 export libsubdir
998 export slibdir
999
1000 FLAGS_TO_PASS = \
1001 "ADA_CFLAGS=$(ADA_CFLAGS)" \
1002 "BISON=$(BISON)" \
1003 "BISONFLAGS=$(BISONFLAGS)" \
1004 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
1005 "LDFLAGS=$(LDFLAGS)" \
1006 "FLEX=$(FLEX)" \
1007 "FLEXFLAGS=$(FLEXFLAGS)" \
1008 "LN=$(LN)" \
1009 "LN_S=$(LN_S)" \
1010 "MAKEINFO=$(MAKEINFO)" \
1011 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
1012 "MAKEOVERRIDES=" \
1013 "SHELL=$(SHELL)" \
1014 "exeext=$(exeext)" \
1015 "build_exeext=$(build_exeext)" \
1016 "objext=$(objext)" \
1017 "exec_prefix=$(exec_prefix)" \
1018 "prefix=$(prefix)" \
1019 "local_prefix=$(local_prefix)" \
1020 "gxx_include_dir=$(gcc_gxx_include_dir)" \
1021 "build_tooldir=$(build_tooldir)" \
1022 "gcc_tooldir=$(gcc_tooldir)" \
1023 "bindir=$(bindir)" \
1024 "libexecsubdir=$(libsubdir)" \
1025 "datarootdir=$(datarootdir)" \
1026 "datadir=$(datadir)" \
1027 "localedir=$(localedir)"
1028 #\f
1029 # Lists of files for various purposes.
1030
1031 # All option source files
1032 ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files)
1033
1034 # Target specific, C specific object file
1035 C_TARGET_OBJS=@c_target_objs@
1036
1037 # Target specific, C++ specific object file
1038 CXX_TARGET_OBJS=@cxx_target_objs@
1039
1040 # Target specific, Fortran specific object file
1041 FORTRAN_TARGET_OBJS=@fortran_target_objs@
1042
1043 # Object files for gcc driver.
1044 GCC_OBJS = gcc.o opts-common.o gcc-options.o
1045
1046 # Language-specific object files for C and Objective C.
1047 C_AND_OBJC_OBJS = attribs.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \
1048 c-convert.o c-aux-info.o c-common.o c-opts.o c-format.o c-semantics.o \
1049 c-ppoutput.o c-cppbuiltin.o \
1050 c-objc-common.o c-dump.o c-pch.o c-parser.o $(C_TARGET_OBJS) \
1051 c-gimplify.o tree-mudflap.o c-pretty-print.o c-omp.o
1052
1053 # Language-specific object files for C.
1054 C_OBJS = c-lang.o stub-objc.o $(C_AND_OBJC_OBJS)
1055
1056 # Language-independent object files.
1057 # We put the insn-*.o files first so that a parallel make will build
1058 # them sooner, because they are large and otherwise tend to be the
1059 # last objects to finish building.
1060 OBJS-common = \
1061 insn-attrtab.o \
1062 insn-automata.o \
1063 insn-emit.o \
1064 insn-extract.o \
1065 insn-modes.o \
1066 insn-opinit.o \
1067 insn-output.o \
1068 insn-peep.o \
1069 insn-preds.o \
1070 insn-recog.o \
1071 $(GGC) \
1072 alias.o \
1073 alloc-pool.o \
1074 auto-inc-dec.o \
1075 bb-reorder.o \
1076 bitmap.o \
1077 bt-load.o \
1078 builtins.o \
1079 caller-save.o \
1080 calls.o \
1081 cfg.o \
1082 cfganal.o \
1083 cfgbuild.o \
1084 cfgcleanup.o \
1085 cfgexpand.o \
1086 cfghooks.o \
1087 cfglayout.o \
1088 cfgloop.o \
1089 cfgloopanal.o \
1090 cfgloopmanip.o \
1091 cfgrtl.o \
1092 combine.o \
1093 combine-stack-adj.o \
1094 convert.o \
1095 coverage.o \
1096 cse.o \
1097 cselib.o \
1098 dbxout.o \
1099 dbgcnt.o \
1100 dce.o \
1101 ddg.o \
1102 debug.o \
1103 df-byte-scan.o \
1104 df-core.o \
1105 df-problems.o \
1106 df-scan.o \
1107 dfp.o \
1108 diagnostic.o \
1109 dojump.o \
1110 dominance.o \
1111 domwalk.o \
1112 double-int.o \
1113 dse.o \
1114 dwarf2asm.o \
1115 dwarf2out.o \
1116 ebitmap.o \
1117 emit-rtl.o \
1118 et-forest.o \
1119 except.o \
1120 explow.o \
1121 expmed.o \
1122 expr.o \
1123 final.o \
1124 fixed-value.o \
1125 fold-const.o \
1126 function.o \
1127 fwprop.o \
1128 gcse.o \
1129 genrtl.o \
1130 ggc-common.o \
1131 gimple.o \
1132 gimple-iterator.o \
1133 gimple-low.o \
1134 gimple-pretty-print.o \
1135 gimplify.o \
1136 graph.o \
1137 graphds.o \
1138 graphite.o \
1139 gtype-desc.o \
1140 haifa-sched.o \
1141 hooks.o \
1142 ifcvt.o \
1143 init-regs.o \
1144 integrate.o \
1145 intl.o \
1146 ira.o \
1147 ira-build.o \
1148 ira-costs.o \
1149 ira-conflicts.o \
1150 ira-color.o \
1151 ira-emit.o \
1152 ira-lives.o \
1153 jump.o \
1154 lambda-code.o \
1155 lambda-mat.o \
1156 lambda-trans.o \
1157 langhooks.o \
1158 lcm.o \
1159 lists.o \
1160 loop-doloop.o \
1161 loop-init.o \
1162 loop-invariant.o \
1163 loop-iv.o \
1164 loop-unroll.o \
1165 loop-unswitch.o \
1166 lower-subreg.o \
1167 mcf.o \
1168 mode-switching.o \
1169 modulo-sched.o \
1170 omega.o \
1171 omp-low.o \
1172 optabs.o \
1173 options.o \
1174 opts-common.o \
1175 opts.o \
1176 params.o \
1177 passes.o \
1178 plugin.o \
1179 pointer-set.o \
1180 postreload-gcse.o \
1181 postreload.o \
1182 predict.o \
1183 pretty-print.o \
1184 print-rtl.o \
1185 print-tree.o \
1186 profile.o \
1187 real.o \
1188 recog.o \
1189 reg-stack.o \
1190 regcprop.o \
1191 reginfo.o \
1192 regmove.o \
1193 regrename.o \
1194 regstat.o \
1195 reload.o \
1196 reload1.o \
1197 reorg.o \
1198 resource.o \
1199 rtl-error.o \
1200 rtl.o \
1201 rtlanal.o \
1202 rtlhooks.o \
1203 sbitmap.o \
1204 sched-deps.o \
1205 sched-ebb.o \
1206 sched-rgn.o \
1207 sched-vis.o \
1208 sdbout.o \
1209 see.o \
1210 sel-sched-ir.o \
1211 sel-sched-dump.o \
1212 sel-sched.o \
1213 simplify-rtx.o \
1214 sparseset.o \
1215 sreal.o \
1216 stack-ptr-mod.o \
1217 statistics.o \
1218 stmt.o \
1219 stor-layout.o \
1220 store-motion.o \
1221 stringpool.o \
1222 targhooks.o \
1223 timevar.o \
1224 toplev.o \
1225 tracer.o \
1226 tree-affine.o \
1227 tree-call-cdce.o \
1228 tree-cfg.o \
1229 tree-cfgcleanup.o \
1230 tree-chrec.o \
1231 tree-complex.o \
1232 tree-data-ref.o \
1233 tree-dfa.o \
1234 tree-dump.o \
1235 tree-eh.o \
1236 tree-if-conv.o \
1237 tree-into-ssa.o \
1238 tree-iterator.o \
1239 tree-loop-distribution.o \
1240 tree-loop-linear.o \
1241 tree-nested.o \
1242 tree-nrv.o \
1243 tree-object-size.o \
1244 tree-optimize.o \
1245 tree-outof-ssa.o \
1246 tree-parloops.o \
1247 tree-phinodes.o \
1248 tree-predcom.o \
1249 tree-pretty-print.o \
1250 tree-profile.o \
1251 tree-scalar-evolution.o \
1252 tree-sra.o \
1253 tree-switch-conversion.o \
1254 tree-ssa-address.o \
1255 tree-ssa-alias.o \
1256 tree-ssa-ccp.o \
1257 tree-ssa-coalesce.o \
1258 tree-ssa-copy.o \
1259 tree-ssa-copyrename.o \
1260 tree-ssa-dce.o \
1261 tree-ssa-dom.o \
1262 tree-ssa-dse.o \
1263 tree-ssa-forwprop.o \
1264 tree-ssa-ifcombine.o \
1265 tree-ssa-live.o \
1266 tree-ssa-loop-ch.o \
1267 tree-ssa-loop-im.o \
1268 tree-ssa-loop-ivcanon.o \
1269 tree-ssa-loop-ivopts.o \
1270 tree-ssa-loop-manip.o \
1271 tree-ssa-loop-niter.o \
1272 tree-ssa-loop-prefetch.o \
1273 tree-ssa-loop-unswitch.o \
1274 tree-ssa-loop.o \
1275 tree-ssa-math-opts.o \
1276 tree-ssa-operands.o \
1277 tree-ssa-phiopt.o \
1278 tree-ssa-phiprop.o \
1279 tree-ssa-pre.o \
1280 tree-ssa-propagate.o \
1281 tree-ssa-reassoc.o \
1282 tree-ssa-sccvn.o \
1283 tree-ssa-sink.o \
1284 tree-ssa-structalias.o \
1285 tree-ssa-ter.o \
1286 tree-ssa-threadedge.o \
1287 tree-ssa-threadupdate.o \
1288 tree-ssa-uncprop.o \
1289 tree-ssa.o \
1290 tree-ssanames.o \
1291 tree-stdarg.o \
1292 tree-tailcall.o \
1293 tree-vect-generic.o \
1294 tree-vect-patterns.o \
1295 tree-vect-data-refs.o \
1296 tree-vect-stmts.o \
1297 tree-vect-loop.o \
1298 tree-vect-loop-manip.o \
1299 tree-vect-slp.o \
1300 tree-vectorizer.o \
1301 tree-vrp.o \
1302 tree.o \
1303 value-prof.o \
1304 var-tracking.o \
1305 varasm.o \
1306 varray.o \
1307 vec.o \
1308 version.o \
1309 vmsdbgout.o \
1310 web.o \
1311 xcoffout.o
1312
1313 # Target object files.
1314 OBJS-md = $(out_object_file)
1315
1316 # Language independent object files which are not used by all languages.
1317 OBJS-archive = \
1318 $(EXTRA_OBJS) \
1319 $(host_hook_obj) \
1320 cgraph.o \
1321 cgraphbuild.o \
1322 cgraphunit.o \
1323 cppdefault.o \
1324 incpath.o \
1325 ipa-cp.o \
1326 ipa-inline.o \
1327 ipa-prop.o \
1328 ipa-pure-const.o \
1329 ipa-reference.o \
1330 ipa-struct-reorg.o \
1331 ipa-type-escape.o \
1332 ipa-utils.o \
1333 ipa.o \
1334 matrix-reorg.o \
1335 prefix.o \
1336 tree-inline.o \
1337 tree-nomudflap.o \
1338 varpool.o
1339
1340 OBJS = $(OBJS-common) $(OBJS-md) $(OBJS-archive)
1341
1342 OBJS-onestep = libbackend.o $(OBJS-archive)
1343
1344 # This lists all host object files, whether they are included in this
1345 # compilation or not.
1346 ALL_HOST_OBJS = $(GCC_OBJS) $(C_OBJS) $(OBJS) libbackend.o \
1347 @TREEBROWSER@ main.o gccspec.o version.o intl.o prefix.o cppspec.o \
1348 $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS)) \
1349 $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) \
1350 mips-tfile.o mips-tdump.o \
1351 $(GCOV_OBJS) $(GCOV_DUMP_OBJS)
1352
1353 BACKEND = main.o @TREEBROWSER@ libbackend.a $(CPPLIB) $(LIBDECNUMBER)
1354
1355 MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \
1356 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
1357 insn-attr.h insn-attrtab.c insn-opinit.c insn-preds.c insn-constants.h \
1358 tm-preds.h tm-constrs.h \
1359 tree-check.h min-insn-modes.c insn-modes.c insn-modes.h \
1360 genrtl.c genrtl.h gt-*.h gtype-*.h gtype-desc.c gtyp-input.list \
1361 xgcc$(exeext) cpp$(exeext) cc1$(exeext) cc1*-dummy$(exeext) $(EXTRA_PASSES) \
1362 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
1363 $(SPECS) collect2$(exeext) \
1364 gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
1365 *.[0-9][0-9].* *.[si] *-checksum.c libbackend.a libgcc.mk
1366
1367 # Defined in libgcc2.c, included only in the static library.
1368 LIB2FUNCS_ST = _eprintf __gcc_bcmp
1369
1370 # Defined in libgcov.c, included only in gcov library
1371 LIBGCOV = _gcov _gcov_merge_add _gcov_merge_single _gcov_merge_delta \
1372 _gcov_fork _gcov_execl _gcov_execlp _gcov_execle \
1373 _gcov_execv _gcov_execvp _gcov_execve \
1374 _gcov_interval_profiler _gcov_pow2_profiler _gcov_one_value_profiler \
1375 _gcov_indirect_call_profiler _gcov_average_profiler _gcov_ior_profiler \
1376 _gcov_merge_ior
1377
1378 FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
1379 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
1380 _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
1381 _sf_to_df _sf_to_tf _thenan_sf _sf_to_usi _usi_to_sf
1382
1383 DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
1384 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
1385 _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
1386 _df_to_sf _df_to_tf _thenan_df _df_to_usi _usi_to_df
1387
1388 TPBIT_FUNCS = _pack_tf _unpack_tf _addsub_tf _mul_tf _div_tf \
1389 _fpcmp_parts_tf _compare_tf _eq_tf _ne_tf _gt_tf _ge_tf \
1390 _lt_tf _le_tf _unord_tf _si_to_tf _tf_to_si _negate_tf _make_tf \
1391 _tf_to_df _tf_to_sf _thenan_tf _tf_to_usi _usi_to_tf
1392
1393 D32PBIT_FUNCS = _addsub_sd _div_sd _mul_sd _plus_sd _minus_sd \
1394 _eq_sd _ne_sd _lt_sd _gt_sd _le_sd _ge_sd \
1395 _sd_to_si _sd_to_di _sd_to_usi _sd_to_udi \
1396 _si_to_sd _di_to_sd _usi_to_sd _udi_to_sd \
1397 _sd_to_sf _sd_to_df _sd_to_xf _sd_to_tf \
1398 _sf_to_sd _df_to_sd _xf_to_sd _tf_to_sd \
1399 _sd_to_dd _sd_to_td _unord_sd _conv_sd
1400
1401 D64PBIT_FUNCS = _addsub_dd _div_dd _mul_dd _plus_dd _minus_dd \
1402 _eq_dd _ne_dd _lt_dd _gt_dd _le_dd _ge_dd \
1403 _dd_to_si _dd_to_di _dd_to_usi _dd_to_udi \
1404 _si_to_dd _di_to_dd _usi_to_dd _udi_to_dd \
1405 _dd_to_sf _dd_to_df _dd_to_xf _dd_to_tf \
1406 _sf_to_dd _df_to_dd _xf_to_dd _tf_to_dd \
1407 _dd_to_sd _dd_to_td _unord_dd _conv_dd
1408
1409 D128PBIT_FUNCS = _addsub_td _div_td _mul_td _plus_td _minus_td \
1410 _eq_td _ne_td _lt_td _gt_td _le_td _ge_td \
1411 _td_to_si _td_to_di _td_to_usi _td_to_udi \
1412 _si_to_td _di_to_td _usi_to_td _udi_to_td \
1413 _td_to_sf _td_to_df _td_to_xf _td_to_tf \
1414 _sf_to_td _df_to_td _xf_to_td _tf_to_td \
1415 _td_to_sd _td_to_dd _unord_td _conv_td
1416
1417 # These might cause a divide overflow trap and so are compiled with
1418 # unwinder info.
1419 LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
1420
1421 #\f
1422 # Language makefile fragments.
1423
1424 # The following targets define the interface between us and the languages.
1425 #
1426 # all.cross, start.encap, rest.encap,
1427 # install-common, install-info, install-man,
1428 # uninstall,
1429 # mostlyclean, clean, distclean, maintainer-clean,
1430 #
1431 # Each language is linked in with a series of hooks. The name of each
1432 # hooked is "lang.${target_name}" (eg: lang.info). Configure computes
1433 # and adds these here. We use double-colon rules for some of the hooks;
1434 # double-colon rules should be preferred for any new hooks.
1435
1436 # language hooks, generated by configure
1437 @language_hooks@
1438
1439 # per-language makefile fragments
1440 ifneq ($(LANG_MAKEFRAGS),)
1441 include $(LANG_MAKEFRAGS)
1442 endif
1443
1444 # target and host overrides must follow the per-language makefile fragments
1445 # so they can override or augment language-specific variables
1446
1447 # target overrides
1448 ifneq ($(tmake_file),)
1449 include $(tmake_file)
1450 endif
1451
1452 # host overrides
1453 ifneq ($(xmake_file),)
1454 include $(xmake_file)
1455 endif
1456
1457 # all-tree.def includes all the tree.def files.
1458 all-tree.def: s-alltree; @true
1459 s-alltree: Makefile
1460 rm -f tmp-all-tree.def
1461 echo '#include "tree.def"' > tmp-all-tree.def
1462 echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
1463 echo '#include "c-common.def"' >> tmp-all-tree.def
1464 ltf="$(lang_tree_files)"; for f in $$ltf; do \
1465 echo "#include \"$$f\""; \
1466 done | sed 's|$(srcdir)/||' >> tmp-all-tree.def
1467 $(SHELL) $(srcdir)/../move-if-change tmp-all-tree.def all-tree.def
1468 $(STAMP) s-alltree
1469
1470 #\f
1471
1472 # -----------------------------
1473 # Rebuilding this configuration
1474 # -----------------------------
1475
1476 # On the use of stamps:
1477 # Consider the example of tree-check.h. It is constructed with build/gencheck.
1478 # A simple rule to build tree-check.h would be
1479 # tree-check.h: build/gencheck$(build_exeext)
1480 # $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h
1481 #
1482 # but tree-check.h doesn't change every time gencheck changes. It would the
1483 # nice if targets that depend on tree-check.h wouldn't be rebuild
1484 # unnecessarily when tree-check.h is unchanged. To make this, tree-check.h
1485 # must not be overwritten with a identical copy. One solution is to use a
1486 # temporary file
1487 # tree-check.h: build/gencheck$(build_exeext)
1488 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1489 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1490 #
1491 # This solution has a different problem. Since the time stamp of tree-check.h
1492 # is unchanged, make will try to update tree-check.h every time it runs.
1493 # To prevent this, one can add a stamp
1494 # tree-check.h: s-check
1495 # s-check : build/gencheck$(build_exeext)
1496 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1497 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1498 # $(STAMP) s-check
1499 #
1500 # The problem with this solution is that make thinks that tree-check.h is
1501 # always unchanged. Make must be deceived into thinking that tree-check.h is
1502 # rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command:
1503 # tree-check.h: s-check; @true
1504 # s-check : build/gencheck$(build_exeext)
1505 # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
1506 # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1507 # $(STAMP) s-check
1508 #
1509 # This is what is done in this makefile. Note that mkconfig.sh has a
1510 # move-if-change built-in
1511
1512 Makefile: config.status $(srcdir)/Makefile.in $(LANG_MAKEFRAGS)
1513 LANGUAGES="$(CONFIG_LANGUAGES)" \
1514 CONFIG_HEADERS= \
1515 CONFIG_SHELL="$(SHELL)" \
1516 CONFIG_FILES=$@ $(SHELL) config.status
1517
1518 config.h: cs-config.h ; @true
1519 bconfig.h: cs-bconfig.h ; @true
1520 tconfig.h: cs-tconfig.h ; @true
1521 tm.h: cs-tm.h ; @true
1522 tm_p.h: cs-tm_p.h ; @true
1523
1524 cs-config.h: Makefile
1525 TARGET_CPU_DEFAULT="" \
1526 HEADERS="$(host_xm_include_list)" DEFINES="$(host_xm_defines)" \
1527 $(SHELL) $(srcdir)/mkconfig.sh config.h
1528
1529 cs-bconfig.h: Makefile
1530 TARGET_CPU_DEFAULT="" \
1531 HEADERS="$(build_xm_include_list)" DEFINES="$(build_xm_defines)" \
1532 $(SHELL) $(srcdir)/mkconfig.sh bconfig.h
1533
1534 cs-tconfig.h: Makefile
1535 TARGET_CPU_DEFAULT="" \
1536 HEADERS="$(xm_include_list)" DEFINES="USED_FOR_TARGET $(xm_defines)" \
1537 $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
1538
1539 cs-tm.h: Makefile
1540 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
1541 HEADERS="$(tm_include_list)" DEFINES="$(tm_defines)" \
1542 $(SHELL) $(srcdir)/mkconfig.sh tm.h
1543
1544 cs-tm_p.h: Makefile
1545 TARGET_CPU_DEFAULT="" \
1546 HEADERS="$(tm_p_include_list)" DEFINES="" \
1547 $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
1548
1549 # Don't automatically run autoconf, since configure.ac might be accidentally
1550 # newer than configure. Also, this writes into the source directory which
1551 # might be on a read-only file system. If configured for maintainer mode
1552 # then do allow autoconf to be run.
1553
1554 $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/aclocal.m4 \
1555 $(srcdir)/acinclude.m4
1556 (cd $(srcdir) && autoconf)
1557
1558 gccbug: $(srcdir)/gccbug.in
1559 CONFIG_FILES=gccbug CONFIG_HEADERS= ./config.status
1560
1561 # cstamp-h.in controls rebuilding of config.in.
1562 # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
1563 # delete it. A stamp file is needed as autoheader won't update the file if
1564 # nothing has changed.
1565 # It remains in the source directory and is part of the distribution.
1566 # This follows what is done in shellutils, fileutils, etc.
1567 # "echo timestamp" is used instead of touch to be consistent with other
1568 # packages that use autoconf (??? perhaps also to avoid problems with patch?).
1569 # ??? Newer versions have a maintainer mode that may be useful here.
1570
1571 # Don't run autoheader automatically either.
1572 # Only run it if maintainer mode is enabled.
1573 @MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
1574 @MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.ac
1575 @MAINT@ (cd $(srcdir) && autoheader)
1576 @MAINT@ @rm -f $(srcdir)/cstamp-h.in
1577 @MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
1578 auto-host.h: cstamp-h ; @true
1579 cstamp-h: config.in config.status
1580 CONFIG_HEADERS=auto-host.h:config.in \
1581 CONFIG_FILES= \
1582 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
1583
1584 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
1585 # a target to build even if it is up-to-date. So we must verify that
1586 # config.status does not exist before failing.
1587 config.status: $(srcdir)/configure $(srcdir)/config.gcc
1588 @if [ ! -f config.status ] ; then \
1589 echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
1590 false; \
1591 else \
1592 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
1593 fi
1594
1595 # --------
1596 # UNSORTED
1597 # --------
1598
1599 # Provide quickstrap as a target that people can type into the gcc directory,
1600 # and that fails if you're not into it.
1601 quickstrap: all
1602 cd $(toplevel_builddir) && $(MAKE) all-target-libgcc
1603
1604 all.internal: start.encap rest.encap doc
1605 # This is what to compile if making a cross-compiler.
1606 all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \
1607 libgcc-support lang.all.cross doc @GENINSRC@ srcextra
1608 # This is what must be made before installing GCC and converting libraries.
1609 start.encap: native xgcc$(exeext) cpp$(exeext) specs \
1610 libgcc-support lang.start.encap @GENINSRC@ srcextra
1611 # These can't be made until after GCC can run.
1612 rest.encap: lang.rest.encap
1613 # This is what is made with the host's compiler
1614 # whether making a cross compiler or not.
1615 native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \
1616 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(COLLECT2)
1617
1618 # Define the names for selecting languages in LANGUAGES.
1619 c: cc1$(exeext)
1620
1621 # Tell GNU make these are phony targets.
1622 .PHONY: c
1623
1624 # On the target machine, finish building a cross compiler.
1625 # This does the things that can't be done on the host machine.
1626 rest.cross: specs
1627
1628 # Recompile all the language-independent object files.
1629 # This is used only if the user explicitly asks for it.
1630 compilations: $(BACKEND)
1631
1632 # This archive is strictly for the host.
1633 libbackend.a: $(OBJS@onestep@)
1634 -rm -rf libbackend.a
1635 $(AR) $(AR_FLAGS) libbackend.a $(OBJS@onestep@)
1636 -$(RANLIB) $(RANLIB_FLAGS) libbackend.a
1637
1638 # We call this executable `xgcc' rather than `gcc'
1639 # to avoid confusion if the current directory is in the path
1640 # and CC is `gcc'. It is renamed to `gcc' when it is installed.
1641 xgcc$(exeext): $(GCC_OBJS) gccspec.o version.o intl.o prefix.o \
1642 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1643 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
1644 gccspec.o intl.o prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1645
1646 # cpp is to cpp0 as gcc is to cc1.
1647 # The only difference from xgcc is that it's linked with cppspec.o
1648 # instead of gccspec.o.
1649 cpp$(exeext): $(GCC_OBJS) cppspec.o version.o intl.o prefix.o \
1650 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
1651 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
1652 cppspec.o intl.o prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
1653
1654 # Dump a specs file to make -B./ read these specs over installed ones.
1655 $(SPECS): xgcc$(exeext)
1656 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
1657 mv tmp-specs $(SPECS)
1658
1659 # We do want to create an executable named `xgcc', so we can use it to
1660 # compile libgcc2.a.
1661 # Also create gcc-cross, so that install-common will install properly.
1662 gcc-cross$(exeext): xgcc$(exeext)
1663 cp xgcc$(exeext) gcc-cross$(exeext)
1664
1665 dummy-checksum.o : dummy-checksum.c
1666
1667 cc1-dummy$(exeext): $(C_OBJS) dummy-checksum.o $(BACKEND) $(LIBDEPS)
1668 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) \
1669 dummy-checksum.o $(BACKEND) $(LIBS) $(BACKENDLIBS)
1670
1671 cc1-checksum.c : cc1-dummy$(exeext) build/genchecksum$(build_exeext)
1672 build/genchecksum$(build_exeext) cc1-dummy$(exeext) > $@
1673
1674 cc1-checksum.o : cc1-checksum.c
1675
1676 cc1$(exeext): $(C_OBJS) cc1-checksum.o $(BACKEND) $(LIBDEPS)
1677 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) \
1678 cc1-checksum.o $(BACKEND) $(LIBS) $(BACKENDLIBS)
1679
1680 #\f
1681 # Build libgcc.a.
1682
1683 LIB2ADD = $(LIB2FUNCS_EXTRA)
1684 LIB2ADD_ST = $(LIB2FUNCS_STATIC_EXTRA)
1685
1686 # All source files for libgcc are either in the source directory (in
1687 # which case they will start with $(srcdir)), or generated into the build
1688 # directory (in which case they will be relative paths).
1689 srcdirify = $(patsubst $(srcdir)%,$$(gcc_srcdir)%,$(filter $(srcdir)%,$(1))) \
1690 $(patsubst %,$$(gcc_objdir)/%,$(filter-out $(srcdir)%,$(1)))
1691
1692 # The distinction between these two variables is no longer relevant,
1693 # so we combine them. Sort removes duplicates.
1694 GCC_EXTRA_PARTS := $(sort $(EXTRA_MULTILIB_PARTS) $(EXTRA_PARTS))
1695
1696 libgcc-support: libgcc.mvars stmp-int-hdrs $(TCONFIG_H) \
1697 $(MACHMODE_H) $(FPBIT) $(DPBIT) $(TPBIT) $(LIB2ADD) \
1698 $(LIB2ADD_ST) $(LIB2ADDEH) $(srcdir)/emutls.c gcov-iov.h $(SFP_MACHINE)
1699
1700 libgcc.mvars: config.status Makefile $(LIB2ADD) $(LIB2ADD_ST) specs \
1701 xgcc$(exeext)
1702 : > tmp-libgcc.mvars
1703 echo LIB1ASMFUNCS = '$(LIB1ASMFUNCS)' >> tmp-libgcc.mvars
1704 echo LIB1ASMSRC = '$(LIB1ASMSRC)' >> tmp-libgcc.mvars
1705 echo LIB2FUNCS_ST = '$(LIB2FUNCS_ST)' >> tmp-libgcc.mvars
1706 echo LIB2FUNCS_EXCLUDE = '$(LIB2FUNCS_EXCLUDE)' >> tmp-libgcc.mvars
1707 echo LIBGCOV = '$(LIBGCOV)' >> tmp-libgcc.mvars
1708 echo LIB2ADD = '$(call srcdirify,$(LIB2ADD))' >> tmp-libgcc.mvars
1709 echo LIB2ADD_ST = '$(call srcdirify,$(LIB2ADD_ST))' >> tmp-libgcc.mvars
1710 echo LIB2ADDEH = '$(call srcdirify,$(LIB2ADDEH) $(srcdir)/emutls.c)' >> tmp-libgcc.mvars
1711 echo LIB2ADDEHSTATIC = '$(call srcdirify,$(LIB2ADDEHSTATIC) $(srcdir)/emutls.c)' >> tmp-libgcc.mvars
1712 echo LIB2ADDEHSHARED = '$(call srcdirify,$(LIB2ADDEHSHARED) $(srcdir)/emutls.c)' >> tmp-libgcc.mvars
1713 echo LIB2_SIDITI_CONV_FUNCS = '$(LIB2_SIDITI_CONV_FUNCS)' >> tmp-libgcc.mvars
1714 echo LIBUNWIND = '$(call srcdirify,$(LIBUNWIND))' >> tmp-libgcc.mvars
1715 echo SHLIBUNWIND_LINK = '$(SHLIBUNWIND_LINK)' >> tmp-libgcc.mvars
1716 echo SHLIBUNWIND_INSTALL = '$(SHLIBUNWIND_INSTALL)' >> tmp-libgcc.mvars
1717 echo FPBIT = '$(FPBIT)' >> tmp-libgcc.mvars
1718 echo FPBIT_FUNCS = '$(FPBIT_FUNCS)' >> tmp-libgcc.mvars
1719 echo LIB2_DIVMOD_FUNCS = '$(LIB2_DIVMOD_FUNCS)' >> tmp-libgcc.mvars
1720 echo DPBIT = '$(DPBIT)' >> tmp-libgcc.mvars
1721 echo DPBIT_FUNCS = '$(DPBIT_FUNCS)' >> tmp-libgcc.mvars
1722 echo TPBIT = '$(TPBIT)' >> tmp-libgcc.mvars
1723 echo TPBIT_FUNCS = '$(TPBIT_FUNCS)' >> tmp-libgcc.mvars
1724 echo DFP_ENABLE = '$(DFP_ENABLE)' >> tmp-libgcc.mvars
1725 echo DFP_CFLAGS='$(DFP_CFLAGS)' >> tmp-libgcc.mvars
1726 echo D32PBIT='$(D32PBIT)' >> tmp-libgcc.mvars
1727 echo D32PBIT_FUNCS='$(D32PBIT_FUNCS)' >> tmp-libgcc.mvars
1728 echo D64PBIT='$(D64PBIT)' >> tmp-libgcc.mvars
1729 echo D64PBIT_FUNCS='$(D64PBIT_FUNCS)' >> tmp-libgcc.mvars
1730 echo D128PBIT='$(D128PBIT)' >> tmp-libgcc.mvars
1731 echo D128PBIT_FUNCS='$(D128PBIT_FUNCS)' >> tmp-libgcc.mvars
1732 echo GCC_EXTRA_PARTS = '$(GCC_EXTRA_PARTS)' >> tmp-libgcc.mvars
1733 echo SHLIB_LINK = '$(subst $(GCC_FOR_TARGET),$$(GCC_FOR_TARGET),$(SHLIB_LINK))' >> tmp-libgcc.mvars
1734 echo SHLIB_INSTALL = '$(SHLIB_INSTALL)' >> tmp-libgcc.mvars
1735 echo SHLIB_EXT = '$(SHLIB_EXT)' >> tmp-libgcc.mvars
1736 echo SHLIB_MKMAP = '$(call srcdirify,$(SHLIB_MKMAP))' >> tmp-libgcc.mvars
1737 echo SHLIB_MKMAP_OPTS = '$(SHLIB_MKMAP_OPTS)' >> tmp-libgcc.mvars
1738 echo SHLIB_MAPFILES = '$(call srcdirify,$(SHLIB_MAPFILES))' >> tmp-libgcc.mvars
1739 echo SHLIB_NM_FLAGS = '$(SHLIB_NM_FLAGS)' >> tmp-libgcc.mvars
1740 echo LIBGCC2_CFLAGS = '$(LIBGCC2_CFLAGS)' >> tmp-libgcc.mvars
1741 echo TARGET_LIBGCC2_CFLAGS = '$(TARGET_LIBGCC2_CFLAGS)' >> tmp-libgcc.mvars
1742 echo LIBGCC_SYNC = '$(LIBGCC_SYNC)' >> tmp-libgcc.mvars
1743 echo LIBGCC_SYNC_CFLAGS = '$(LIBGCC_SYNC_CFLAGS)' >> tmp-libgcc.mvars
1744 echo CRTSTUFF_CFLAGS = '$(CRTSTUFF_CFLAGS)' >> tmp-libgcc.mvars
1745 echo CRTSTUFF_T_CFLAGS = '$(CRTSTUFF_T_CFLAGS)' >> tmp-libgcc.mvars
1746 echo CRTSTUFF_T_CFLAGS_S = '$(CRTSTUFF_T_CFLAGS_S)' >> tmp-libgcc.mvars
1747
1748 mv tmp-libgcc.mvars libgcc.mvars
1749
1750 # Use the genmultilib shell script to generate the information the gcc
1751 # driver program needs to select the library directory based on the
1752 # switches.
1753 multilib.h: s-mlib; @true
1754 s-mlib: $(srcdir)/genmultilib Makefile
1755 if test @enable_multilib@ = yes \
1756 || test -n "$(MULTILIB_OSDIRNAMES)"; then \
1757 $(SHELL) $(srcdir)/genmultilib \
1758 "$(MULTILIB_OPTIONS)" \
1759 "$(MULTILIB_DIRNAMES)" \
1760 "$(MULTILIB_MATCHES)" \
1761 "$(MULTILIB_EXCEPTIONS)" \
1762 "$(MULTILIB_EXTRA_OPTS)" \
1763 "$(MULTILIB_EXCLUSIONS)" \
1764 "$(MULTILIB_OSDIRNAMES)" \
1765 "@enable_multilib@" \
1766 > tmp-mlib.h; \
1767 else \
1768 $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' no \
1769 > tmp-mlib.h; \
1770 fi
1771 $(SHELL) $(srcdir)/../move-if-change tmp-mlib.h multilib.h
1772 $(STAMP) s-mlib
1773
1774 # Compile two additional files that are linked with every program
1775 # linked using GCC on systems using COFF or ELF, for the sake of C++
1776 # constructors.
1777 $(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1778 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1779 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1780 -c $(srcdir)/crtstuff.c -DCRT_BEGIN \
1781 -o $(T)crtbegin$(objext)
1782
1783 $(T)crtend.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1784 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1785 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1786 -c $(srcdir)/crtstuff.c -DCRT_END \
1787 -o $(T)crtend$(objext)
1788
1789 # These are versions of crtbegin and crtend for shared libraries.
1790 $(T)crtbeginS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1791 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1792 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1793 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O \
1794 -o $(T)crtbeginS$(objext)
1795
1796 $(T)crtendS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1797 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1798 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1799 -c $(srcdir)/crtstuff.c -DCRT_END -DCRTSTUFFS_O \
1800 -o $(T)crtendS$(objext)
1801
1802 # This is a version of crtbegin for -static links.
1803 $(T)crtbeginT.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1804 gbl-ctors.h stmp-int-hdrs tsystem.h coretypes.h $(TM_H)
1805 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1806 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFT_O \
1807 -o $(T)crtbeginT$(objext)
1808
1809 # Compile the start modules crt0.o and mcrt0.o that are linked with
1810 # every program
1811 $(T)crt0.o: s-crt0 ; @true
1812 $(T)mcrt0.o: s-crt0; @true
1813
1814 s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
1815 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1816 -o $(T)crt0.o -c $(CRT0_S)
1817 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1818 -o $(T)mcrt0.o -c $(MCRT0_S)
1819 $(STAMP) s-crt0
1820 #\f
1821 # Compiling object files from source files.
1822
1823 # Note that dependencies on obstack.h are not written
1824 # because that file is not part of GCC.
1825
1826 # C language specific files.
1827
1828 c-errors.o: c-errors.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1829 $(C_TREE_H) $(FLAGS_H) $(DIAGNOSTIC_H) $(TM_P_H)
1830 c-parser.o : c-parser.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1831 $(GGC_H) $(TIMEVAR_H) $(C_TREE_H) $(INPUT_H) $(FLAGS_H) $(TOPLEV_H) output.h \
1832 $(CPPLIB_H) gt-c-parser.h $(RTL_H) langhooks.h $(C_COMMON_H) $(C_PRAGMA_H) \
1833 vec.h $(TARGET_H) $(CGRAPH_H) $(PLUGIN_H)
1834
1835 srcextra: gcc.srcextra lang.srcextra
1836
1837 gcc.srcextra: gengtype-lex.c
1838 -cp -p $^ $(srcdir)
1839
1840 incpath.o: incpath.c incpath.h $(CONFIG_H) $(SYSTEM_H) $(CPPLIB_H) \
1841 intl.h prefix.h coretypes.h $(TM_H) cppdefault.h $(TARGET_H) \
1842 $(MACHMODE_H)
1843
1844 c-decl.o : c-decl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1845 $(RTL_H) $(C_TREE_H) $(GGC_H) $(TARGET_H) $(FLAGS_H) $(FUNCTION_H) output.h \
1846 $(EXPR_H) debug.h $(TOPLEV_H) intl.h $(TM_P_H) $(TREE_INLINE_H) $(TIMEVAR_H) \
1847 opts.h $(C_PRAGMA_H) gt-c-decl.h $(CGRAPH_H) $(HASHTAB_H) libfuncs.h \
1848 $(EXCEPT_H) $(LANGHOOKS_DEF_H) $(TREE_DUMP_H) $(C_COMMON_H) $(CPPLIB_H) \
1849 $(DIAGNOSTIC_H) $(INPUT_H) langhooks.h $(GIMPLE_H) tree-mudflap.h \
1850 pointer-set.h $(BASIC_BLOCK_H) $(GIMPLE_H) tree-iterator.h
1851 c-typeck.o : c-typeck.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1852 $(TREE_H) $(C_TREE_H) $(TARGET_H) $(FLAGS_H) intl.h output.h $(EXPR_H) \
1853 $(RTL_H) $(TOPLEV_H) $(TM_P_H) langhooks.h $(GGC_H) $(TREE_FLOW_H) \
1854 $(GIMPLE_H) tree-iterator.h
1855 c-lang.o : c-lang.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1856 $(C_TREE_H) $(DIAGNOSTIC_H) \
1857 $(GGC_H) langhooks.h $(LANGHOOKS_DEF_H) $(C_COMMON_H) gtype-c.h \
1858 c-objc-common.h $(C_PRAGMA_H) c-common.def $(TREE_INLINE_H)
1859 stub-objc.o : stub-objc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \
1860 $(C_COMMON_H)
1861 c-lex.o : c-lex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1862 $(RTL_H) debug.h $(C_TREE_H) $(C_COMMON_H) $(REAL_H) $(SPLAY_TREE_H) \
1863 $(C_PRAGMA_H) $(INPUT_H) intl.h $(FLAGS_H) $(TOPLEV_H) output.h \
1864 $(CPPLIB_H) $(TARGET_H) $(TIMEVAR_H) $(TM_P_H)
1865 c-ppoutput.o : c-ppoutput.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1866 $(C_COMMON_H) $(TREE_H) $(CPPLIB_H) $(CPP_INTERNAL_H) $(C_PRAGMA_H)
1867 c-objc-common.o : c-objc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
1868 $(TM_H) $(TREE_H) $(C_TREE_H) $(RTL_H) insn-config.h $(INTEGRATE_H) \
1869 $(FUNCTION_H) $(FLAGS_H) $(TOPLEV_H) $(TREE_INLINE_H) $(DIAGNOSTIC_H) $(VARRAY_H) \
1870 langhooks.h $(GGC_H) $(TARGET_H) $(C_PRETTY_PRINT_H) c-objc-common.h \
1871 tree-mudflap.h
1872 c-aux-info.o : c-aux-info.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1873 $(C_TREE_H) $(FLAGS_H) $(TOPLEV_H)
1874 c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1875 $(TREE_H) $(FLAGS_H) $(TOPLEV_H) $(C_COMMON_H) convert.h $(C_TREE_H) \
1876 langhooks.h $(TARGET_H)
1877 c-pragma.o: c-pragma.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1878 $(TREE_H) $(FUNCTION_H) $(C_PRAGMA_H) $(TOPLEV_H) output.h $(GGC_H) $(TM_P_H) \
1879 $(C_COMMON_H) $(TARGET_H) gt-c-pragma.h $(CPPLIB_H) $(FLAGS_H) $(DIAGNOSTIC_H) \
1880 opts.h
1881 graph.o: graph.c $(SYSTEM_H) coretypes.h $(TM_H) $(TOPLEV_H) $(FLAGS_H) output.h \
1882 $(RTL_H) $(FUNCTION_H) hard-reg-set.h $(BASIC_BLOCK_H) graph.h $(OBSTACK_H) \
1883 $(CONFIG_H)
1884 sbitmap.o: sbitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
1885 $(FLAGS_H) hard-reg-set.h $(BASIC_BLOCK_H) $(OBSTACK_H)
1886 ebitmap.o: ebitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1887 $(EBITMAP_H) $(RTL_H) $(FLAGS_H) $(OBSTACK_H)
1888 sparseset.o: sparseset.c $(SYSTEM_H) sparseset.h $(CONFIG_H)
1889
1890 COLLECT2_OBJS = collect2.o tlink.o intl.o version.o
1891 COLLECT2_LIBS = @COLLECT2_LIBS@
1892 collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
1893 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
1894 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o T$@ \
1895 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
1896 mv -f T$@ $@
1897
1898 collect2.o : collect2.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h \
1899 $(OBSTACK_H) $(DEMANGLE_H) collect2.h version.h
1900 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1901 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
1902 -c $(srcdir)/collect2.c $(OUTPUT_OPTION)
1903
1904 tlink.o: tlink.c $(DEMANGLE_H) $(HASHTAB_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1905 $(OBSTACK_H) collect2.h intl.h
1906
1907 # A file used by all variants of C.
1908
1909 c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1910 $(OBSTACK_H) $(C_COMMON_H) $(FLAGS_H) $(TOPLEV_H) output.h $(C_PRAGMA_H) \
1911 $(GGC_H) $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def \
1912 $(DIAGNOSTIC_H) gt-c-common.h langhooks.h $(VARRAY_H) $(RTL_H) \
1913 $(TARGET_H) $(C_TREE_H) tree-iterator.h langhooks.h tree-mudflap.h \
1914 intl.h opts.h $(REAL_H) $(CPPLIB_H) $(TREE_INLINE_H) $(HASHTAB_H) \
1915 $(BUILTINS_DEF) $(CGRAPH_H) $(BASIC_BLOCK_H) $(TARGET_DEF_H) \
1916 $(GIMPLE_H) libfuncs.h
1917
1918 c-pretty-print.o : c-pretty-print.c $(C_PRETTY_PRINT_H) \
1919 $(C_TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(REAL_H) \
1920 $(DIAGNOSTIC_H) tree-iterator.h fixed-value.h
1921
1922 c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1923 $(TREE_H) $(C_PRAGMA_H) $(FLAGS_H) $(TOPLEV_H) langhooks.h \
1924 $(TREE_INLINE_H) $(DIAGNOSTIC_H) intl.h debug.h $(C_COMMON_H) \
1925 opts.h options.h $(MKDEPS_H) incpath.h cppdefault.h $(TARGET_H) \
1926 $(TM_P_H) $(VARRAY_H) $(C_TREE_H)
1927 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1928 $< $(OUTPUT_OPTION) @TARGET_SYSTEM_ROOT_DEFINE@
1929
1930 c-cppbuiltin.o : c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1931 $(TREE_H) version.h $(C_COMMON_H) $(C_PRAGMA_H) $(FLAGS_H) \
1932 $(TOPLEV_H) output.h $(EXCEPT_H) $(REAL_H) $(TARGET_H) $(TM_P_H) \
1933 $(BASEVER) debug.h
1934 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1935 -DBASEVER=$(BASEVER_s) $< $(OUTPUT_OPTION)
1936
1937 # A file used by all variants of C and some other languages.
1938
1939 attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1940 $(FLAGS_H) $(TOPLEV_H) output.h $(RTL_H) $(GGC_H) $(TM_P_H) \
1941 $(TARGET_H) langhooks.h $(CPPLIB_H)
1942
1943 c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) langhooks.h \
1944 $(C_COMMON_H) $(FLAGS_H) $(TOPLEV_H) intl.h $(DIAGNOSTIC_H) alloc-pool.h \
1945 c-format.h
1946
1947 c-semantics.o : c-semantics.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
1948 $(TREE_H) $(FLAGS_H) $(TOPLEV_H) output.h $(RTL_H) $(GGC_H) \
1949 $(PREDICT_H) $(TREE_INLINE_H) $(C_COMMON_H) $(EXCEPT_H) $(FUNCTION_H) \
1950 langhooks.h $(SPLAY_TREE_H) $(TIMEVAR_H) $(GIMPLE_H) \
1951 $(VARRAY_H) tree-iterator.h
1952
1953 c-dump.o : c-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1954 $(C_TREE_H) $(TREE_DUMP_H)
1955
1956 c-pch.o : c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(CPPLIB_H) $(TREE_H) \
1957 $(C_COMMON_H) output.h $(TOPLEV_H) $(C_PRAGMA_H) $(GGC_H) debug.h \
1958 langhooks.h $(FLAGS_H) hosthooks.h version.h $(TARGET_H) opts.h
1959 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1960 -DHOST_MACHINE=\"$(host)\" -DTARGET_MACHINE=\"$(target)\" \
1961 $< $(OUTPUT_OPTION)
1962
1963 c-omp.o : c-omp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
1964 $(FUNCTION_H) $(C_COMMON_H) $(TOPLEV.H) $(GIMPLE_H) $(BITMAP_H) \
1965 langhooks.h
1966
1967 # Language-independent files.
1968
1969 DRIVER_DEFINES = \
1970 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
1971 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
1972 -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \
1973 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
1974 -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \
1975 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
1976 -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \
1977 @TARGET_SYSTEM_ROOT_DEFINE@ \
1978 $(VALGRIND_DRIVER_DEFINES) \
1979 `test "X$${SHLIB_LINK}" = "X" || test "@enable_shared@" != "yes" || echo "-DENABLE_SHARED_LIBGCC"`
1980
1981 gcc.o: gcc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h multilib.h \
1982 Makefile $(lang_specs_files) specs.h prefix.h $(GCC_H) $(FLAGS_H) \
1983 configargs.h $(OBSTACK_H) opts.h
1984 (SHLIB_LINK='$(SHLIB_LINK)'; \
1985 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1986 $(DRIVER_DEFINES) \
1987 -c $(srcdir)/gcc.c $(OUTPUT_OPTION))
1988
1989 gccspec.o: gccspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1990 (SHLIB_LINK='$(SHLIB_LINK)'; \
1991 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
1992 $(DRIVER_DEFINES) \
1993 -c $(srcdir)/gccspec.c $(OUTPUT_OPTION))
1994
1995 cppspec.o: cppspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H)
1996
1997 specs.h : s-specs ; @true
1998 s-specs : Makefile
1999 lsf="$(lang_specs_files)"; for f in $$lsf; do \
2000 echo "#include \"$$f\""; \
2001 done | sed 's|$(srcdir)/||' > tmp-specs.h
2002 $(SHELL) $(srcdir)/../move-if-change tmp-specs.h specs.h
2003 $(STAMP) s-specs
2004
2005 optionlist: s-options ; @true
2006 s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk
2007 $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist
2008 $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist
2009 $(STAMP) s-options
2010
2011 options.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/optc-gen.awk
2012 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/optc-gen.awk \
2013 -v header_name="config.h system.h coretypes.h tm.h" < $< > $@
2014
2015 options.h: s-options-h ; @true
2016 s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opth-gen.awk
2017 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opth-gen.awk \
2018 < $< > tmp-options.h
2019 $(SHELL) $(srcdir)/../move-if-change tmp-options.h options.h
2020 $(STAMP) $@
2021
2022 options.o: options.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TARGET_H) $(FLAGS_H) \
2023 $(TM_H) opts.h intl.h
2024
2025 gcc-options.o: options.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) opts.h intl.h
2026 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(OUTPUT_OPTION) \
2027 -DGCC_DRIVER options.c
2028
2029 dumpvers: dumpvers.c
2030
2031 ifdef REVISION_c
2032 version.o: version.c version.h $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE)
2033 else
2034 version.o: version.c version.h $(DATESTAMP) $(BASEVER) $(DEVPHASE)
2035 endif
2036 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
2037 -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
2038 -DREVISION=$(REVISION_s) \
2039 -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \
2040 -DBUGURL=$(BUGURL_s) -c $(srcdir)/version.c $(OUTPUT_OPTION)
2041
2042 gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2043 $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) $(OBSTACK_H) $(BITMAP_H) \
2044 input.h $(TREE_H) $(RTL_H) $(FUNCTION_H) insn-config.h $(EXPR_H) \
2045 hard-reg-set.h $(BASIC_BLOCK_H) cselib.h $(INSN_ADDR_H) $(OPTABS_H) \
2046 libfuncs.h debug.h $(GGC_H) $(CGRAPH_H) $(TREE_FLOW_H) reload.h \
2047 $(CPP_ID_DATA_H) tree-chrec.h $(CFGLAYOUT_H) $(EXCEPT_H) output.h \
2048 $(CFGLOOP_H)
2049
2050 ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2051 $(GGC_H) $(HASHTAB_H) $(TOPLEV_H) $(PARAMS_H) hosthooks.h \
2052 $(HOSTHOOKS_DEF_H) vec.h plugin.h
2053
2054 ggc-page.o: ggc-page.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
2055 $(FLAGS_H) $(TOPLEV_H) $(GGC_H) $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H) $(TREE_FLOW_H) plugin.h
2056
2057 ggc-zone.o: ggc-zone.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2058 $(TREE_H) $(FLAGS_H) $(TOPLEV_H) $(GGC_H) $(TIMEVAR_H) $(TM_P_H) \
2059 $(PARAMS_H) $(BITMAP_H) $(VARRAY_H) plugin.h
2060
2061 ggc-none.o: ggc-none.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \
2062 $(BCONFIG_H)
2063
2064 stringpool.o: stringpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2065 $(TREE_H) $(GGC_H) gt-stringpool.h $(CPPLIB_H) $(SYMTAB_H)
2066
2067 prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) prefix.h \
2068 Makefile $(BASEVER)
2069 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
2070 -DPREFIX=\"$(prefix)\" -DBASEVER=$(BASEVER_s) \
2071 -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
2072
2073 convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2074 $(FLAGS_H) convert.h $(TOPLEV_H) langhooks.h $(REAL_H) fixed-value.h
2075
2076 double-int.o: double-int.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H)
2077
2078 langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2079 $(TREE_H) $(TOPLEV_H) $(TREE_INLINE_H) $(RTL_H) insn-config.h $(INTEGRATE_H) \
2080 langhooks.h $(TARGET_H) $(LANGHOOKS_DEF_H) $(FLAGS_H) $(GGC_H) $(DIAGNOSTIC_H) \
2081 intl.h $(GIMPLE_H)
2082 tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2083 all-tree.def $(FLAGS_H) $(FUNCTION_H) $(PARAMS_H) \
2084 $(TOPLEV_H) $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h \
2085 $(REAL_H) gt-tree.h tree-iterator.h $(BASIC_BLOCK_H) $(TREE_FLOW_H) \
2086 $(OBSTACK_H) pointer-set.h fixed-value.h
2087 tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2088 $(TREE_H) langhooks.h $(TOPLEV_H) $(SPLAY_TREE_H) $(TREE_DUMP_H) \
2089 tree-iterator.h $(TREE_PASS_H) $(DIAGNOSTIC_H) $(REAL_H) fixed-value.h
2090 tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2091 $(TREE_H) $(RTL_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) $(INPUT_H) insn-config.h \
2092 $(VARRAY_H) $(HASHTAB_H) $(TOPLEV_H) langhooks.h $(TREE_INLINE_H) $(CGRAPH_H) \
2093 intl.h $(FUNCTION_H) $(GGC_H) $(GIMPLE_H) \
2094 debug.h $(DIAGNOSTIC_H) $(EXCEPT_H) $(TREE_FLOW_H) tree-iterator.h tree-mudflap.h \
2095 $(IPA_PROP_H) value-prof.h $(TREE_PASS_H) $(TARGET_H) $(INTEGRATE_H)
2096 print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2097 $(GGC_H) langhooks.h $(REAL_H) tree-iterator.h fixed-value.h \
2098 $(DIAGNOSTIC_H) $(TREE_FLOW_H)
2099 stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2100 $(TREE_H) $(PARAMS_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) output.h $(RTL_H) \
2101 $(GGC_H) $(TM_P_H) $(TARGET_H) langhooks.h $(REGS_H) gt-stor-layout.h \
2102 $(TOPLEV_H)
2103 tree-ssa-structalias.o: tree-ssa-structalias.c \
2104 $(SYSTEM_H) $(CONFIG_H) coretypes.h $(TM_H) $(GGC_H) $(OBSTACK_H) $(BITMAP_H) \
2105 $(FLAGS_H) $(RTL_H) $(TM_P_H) hard-reg-set.h $(BASIC_BLOCK_H) output.h \
2106 $(DIAGNOSTIC_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) varray.h \
2107 $(GIMPLE_H) $(HASHTAB_H) $(FUNCTION_H) $(CGRAPH_H) \
2108 $(TREE_PASS_H) $(TIMEVAR_H) alloc-pool.h $(SPLAY_TREE_H) $(PARAMS_H) \
2109 gt-tree-ssa-structalias.h $(CGRAPH_H) $(ALIAS_H) pointer-set.h
2110 tree-ssa.o : tree-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2111 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h $(DIAGNOSTIC_H) \
2112 $(TOPLEV_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2113 $(TREE_DUMP_H) langhooks.h $(TREE_PASS_H) $(BASIC_BLOCK_H) $(BITMAP_H) \
2114 $(FLAGS_H) $(GGC_H) hard-reg-set.h $(HASHTAB_H) pointer-set.h \
2115 $(GIMPLE_H) $(TREE_INLINE_H) $(VARRAY_H)
2116 tree-into-ssa.o : tree-into-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2117 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) output.h $(DIAGNOSTIC_H) \
2118 $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2119 langhooks.h domwalk.h $(TREE_PASS_H) $(GGC_H) $(PARAMS_H) $(BASIC_BLOCK_H) \
2120 $(BITMAP_H) $(CFGLOOP_H) $(FLAGS_H) hard-reg-set.h $(HASHTAB_H) \
2121 $(GIMPLE_H) $(TREE_INLINE_H) $(VARRAY_H) vecprim.h
2122 tree-ssa-ter.o : tree-ssa-ter.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2123 $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2124 $(TREE_SSA_LIVE_H) $(BITMAP_H)
2125 tree-ssa-coalesce.o : tree-ssa-coalesce.c $(TREE_FLOW_H) $(CONFIG_H) \
2126 $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2127 $(TREE_SSA_LIVE_H) $(BITMAP_H) $(FLAGS_H) $(HASHTAB_H) $(TOPLEV_H)
2128 tree-outof-ssa.o : tree-outof-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2129 $(TREE_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2130 $(TREE_PASS_H) $(TREE_SSA_LIVE_H) $(BASIC_BLOCK_H) $(BITMAP_H) $(GGC_H) \
2131 $(TOPLEV_H) $(EXPR_H) $(SSAEXPAND_H)
2132 tree-ssa-dse.o : tree-ssa-dse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2133 $(TM_H) $(GGC_H) $(TREE_H) $(RTL_H) $(TM_P_H) $(BASIC_BLOCK_H) \
2134 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) domwalk.h $(FLAGS_H) \
2135 $(DIAGNOSTIC_H) $(TIMEVAR_H) langhooks.h
2136 tree-ssa-forwprop.o : tree-ssa-forwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2137 $(TM_H) $(GGC_H) $(TREE_H) $(RTL_H) $(TM_P_H) $(BASIC_BLOCK_H) \
2138 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) \
2139 langhooks.h $(FLAGS_H) $(GIMPLE_H)
2140 tree-ssa-phiprop.o : tree-ssa-phiprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2141 $(TM_H) $(GGC_H) $(TREE_H) $(RTL_H) $(TM_P_H) $(BASIC_BLOCK_H) \
2142 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) \
2143 langhooks.h $(FLAGS_H)
2144 tree-ssa-ifcombine.o : tree-ssa-ifcombine.c $(CONFIG_H) $(SYSTEM_H) \
2145 coretypes.h $(TM_H) $(TREE_H) $(BASIC_BLOCK_H) \
2146 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) $(DIAGNOSTIC_H) $(TIMEVAR_H)
2147 tree-ssa-phiopt.o : tree-ssa-phiopt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2148 $(TM_H) $(GGC_H) $(TREE_H) $(RTL_H) $(TM_P_H) $(BASIC_BLOCK_H) \
2149 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) langhooks.h $(FLAGS_H) \
2150 $(DIAGNOSTIC_H) $(TIMEVAR_H) pointer-set.h domwalk.h
2151 tree-nrv.o : tree-nrv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2152 $(TM_H) $(TREE_H) $(RTL_H) $(FUNCTION_H) $(BASIC_BLOCK_H) $(EXPR_H) \
2153 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TIMEVAR_H) $(TREE_DUMP_H) $(TREE_PASS_H) \
2154 langhooks.h
2155 tree-ssa-copy.o : tree-ssa-copy.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2156 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h $(DIAGNOSTIC_H) \
2157 $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2158 $(BASIC_BLOCK_H) $(TREE_PASS_H) langhooks.h tree-ssa-propagate.h \
2159 $(FLAGS_H) $(CFGLOOP_H)
2160 tree-ssa-propagate.o : tree-ssa-propagate.c $(TREE_FLOW_H) $(CONFIG_H) \
2161 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h \
2162 $(DIAGNOSTIC_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2163 $(TREE_DUMP_H) $(BASIC_BLOCK_H) $(TREE_PASS_H) langhooks.h \
2164 tree-ssa-propagate.h vec.h value-prof.h gt-tree-ssa-propagate.h $(FLAGS_H) \
2165 $(VARRAY_H) $(GIMPLE_H)
2166 tree-ssa-dom.o : tree-ssa-dom.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2167 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h $(DIAGNOSTIC_H) \
2168 $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2169 $(BASIC_BLOCK_H) domwalk.h $(TREE_PASS_H) $(FLAGS_H) langhooks.h \
2170 tree-ssa-propagate.h $(CFGLOOP_H) $(PARAMS_H) $(REAL_H)
2171 tree-ssa-uncprop.o : tree-ssa-uncprop.c $(TREE_FLOW_H) $(CONFIG_H) \
2172 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h \
2173 $(DIAGNOSTIC_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2174 $(TREE_DUMP_H) $(BASIC_BLOCK_H) domwalk.h $(TREE_PASS_H) $(FLAGS_H) \
2175 langhooks.h tree-ssa-propagate.h $(REAL_H)
2176 tree-ssa-threadedge.o : tree-ssa-threadedge.c $(TREE_FLOW_H) $(CONFIG_H) \
2177 $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(FLAGS_H) $(RTL_H) $(TM_P_H) $(GGC_H) \
2178 $(BASIC_BLOCK_H) $(CFGLOOP_H) output.h $(EXPR_H) \
2179 $(FUNCTION_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TREE_DUMP_H) $(TREE_FLOW_H) \
2180 domwalk.h $(REAL_H) $(TREE_PASS_H) tree-ssa-propagate.h langhooks.h \
2181 $(PARAMS_H)
2182 tree-ssa-threadupdate.o : tree-ssa-threadupdate.c $(TREE_FLOW_H) $(CONFIG_H) \
2183 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h \
2184 $(DIAGNOSTIC_H) $(FUNCTION_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2185 $(BASIC_BLOCK_H) $(FLAGS_H) $(TREE_PASS_H) $(CFGLOOP_H)
2186 tree-ssanames.o : tree-ssanames.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2187 $(TM_H) $(TREE_H) $(VARRAY_H) $(GGC_H) $(TREE_FLOW_H)
2188 tree-phinodes.o : tree-phinodes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2189 $(TM_H) $(TREE_H) $(VARRAY_H) $(GGC_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) \
2190 gt-tree-phinodes.h $(RTL_H) $(TOPLEV.H) $(GIMPLE_H)
2191 domwalk.o : domwalk.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2192 $(TREE_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) domwalk.h $(GGC_H)
2193 tree-ssa-live.o : tree-ssa-live.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2194 $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2195 $(TREE_SSA_LIVE_H) $(BITMAP_H) $(TOPLEV_H) debug.h $(FLAGS_H)
2196 tree-ssa-copyrename.o : tree-ssa-copyrename.c $(TREE_FLOW_H) $(CONFIG_H) \
2197 $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) $(FUNCTION_H) $(TIMEVAR_H) \
2198 $(TREE_PASS_H) $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_SSA_LIVE_H) \
2199 $(BASIC_BLOCK_H) $(BITMAP_H) $(FLAGS_H) $(HASHTAB_H) langhooks.h \
2200 $(GIMPLE_H) $(TREE_INLINE_H) $(GIMPLE_H)
2201 tree-ssa-pre.o : tree-ssa-pre.c $(TREE_FLOW_H) $(CONFIG_H) \
2202 $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(FIBHEAP_H) \
2203 $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) langhooks.h \
2204 $(CFGLOOP_H) alloc-pool.h $(BASIC_BLOCK_H) $(BITMAP_H) $(HASHTAB_H) \
2205 $(GIMPLE_H) $(TREE_INLINE_H) tree-iterator.h tree-ssa-sccvn.h $(PARAMS_H) \
2206 $(DBGCNT_H)
2207 tree-ssa-sccvn.o : tree-ssa-sccvn.c $(TREE_FLOW_H) $(CONFIG_H) \
2208 $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(FIBHEAP_H) \
2209 $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) $(CFGLOOP_H) \
2210 alloc-pool.h $(BASIC_BLOCK_H) $(BITMAP_H) langhooks.h $(HASHTAB_H) $(GIMPLE_H) \
2211 $(TREE_INLINE_H) tree-iterator.h tree-ssa-propagate.h tree-ssa-sccvn.h \
2212 $(PARAMS_H)
2213 tree-vrp.o : tree-vrp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2214 $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_DUMP_H) $(DIAGNOSTIC_H) $(GGC_H) \
2215 $(BASIC_BLOCK_H) tree-ssa-propagate.h $(FLAGS_H) $(TREE_DUMP_H) \
2216 $(CFGLOOP_H) tree-chrec.h $(TIMEVAR_H) $(TOPLEV_H) intl.h
2217 tree-cfg.o : tree-cfg.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2218 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) $(FLAGS_H) output.h \
2219 $(DIAGNOSTIC_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2220 $(TREE_DUMP_H) $(EXCEPT_H) langhooks.h $(CFGLOOP_H) $(TREE_PASS_H) \
2221 $(CFGLAYOUT_H) $(BASIC_BLOCK_H) hard-reg-set.h $(TOPLEV_H) \
2222 value-prof.h tree-ssa-propagate.h $(TREE_INLINE_H)
2223 tree-cfgcleanup.o : tree-cfgcleanup.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2224 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) $(FLAGS_H) output.h \
2225 $(DIAGNOSTIC_H) $(TOPLEV_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2226 $(TREE_DUMP_H) $(EXCEPT_H) langhooks.h $(CFGLOOP_H) $(TREE_PASS_H) \
2227 $(CFGLAYOUT_H) $(BASIC_BLOCK_H) hard-reg-set.h $(HASHTAB_H) $(TOPLEV_H) \
2228 tree-ssa-propagate.h tree-scalar-evolution.h
2229 tree-tailcall.o : tree-tailcall.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2230 $(RTL_H) $(TREE_H) $(TM_P_H) $(FUNCTION_H) $(TM_H) coretypes.h \
2231 $(TREE_DUMP_H) $(DIAGNOSTIC_H) $(EXCEPT_H) $(TREE_PASS_H) $(FLAGS_H) langhooks.h \
2232 $(BASIC_BLOCK_H) hard-reg-set.h $(DBGCNT_H)
2233 tree-ssa-sink.o : tree-ssa-sink.c $(TREE_FLOW_H) $(CONFIG_H) \
2234 $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) \
2235 $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) alloc-pool.h \
2236 $(BASIC_BLOCK_H) $(BITMAP_H) $(CFGLOOP_H) $(FIBHEAP_H) $(HASHTAB_H) \
2237 langhooks.h $(REAL_H) $(GIMPLE_H) $(TREE_INLINE_H) tree-iterator.h
2238 tree-nested.o: tree-nested.c $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TREE_H) \
2239 $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(TREE_DUMP_H) $(TREE_INLINE_H) \
2240 tree-iterator.h $(GIMPLE_H) $(CGRAPH_H) $(EXPR_H) langhooks.h \
2241 $(GGC_H) gt-tree-nested.h coretypes.h $(TREE_FLOW_H) pointer-set.h
2242 tree-if-conv.o: tree-if-conv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2243 $(TREE_H) $(FLAGS_H) $(TIMEVAR_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) \
2244 $(CFGLOOP_H) $(RTL_H) tree-chrec.h $(TREE_DATA_REF_H) \
2245 $(SCEV_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) $(TARGET_H) $(TREE_DUMP_H) \
2246 $(VARRAY_H)
2247 tree-iterator.o : tree-iterator.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2248 coretypes.h $(GGC_H) tree-iterator.h $(GIMPLE_H) gt-tree-iterator.h
2249 tree-dfa.o : tree-dfa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2250 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h $(DIAGNOSTIC_H) \
2251 $(TREE_INLINE_H) $(HASHTAB_H) pointer-set.h $(FLAGS_H) $(FUNCTION_H) \
2252 $(TIMEVAR_H) convert.h $(TM_H) coretypes.h langhooks.h $(TREE_DUMP_H) \
2253 $(TREE_PASS_H) $(PARAMS_H) $(CGRAPH_H) $(BASIC_BLOCK_H) hard-reg-set.h \
2254 $(GIMPLE_H)
2255 tree-ssa-operands.o : tree-ssa-operands.c $(TREE_FLOW_H) $(CONFIG_H) \
2256 $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \
2257 $(FLAGS_H) $(FUNCTION_H) $(TM_H) $(TIMEVAR_H) $(TREE_PASS_H) $(TOPLEV_H) \
2258 coretypes.h langhooks.h $(IPA_REFERENCE_H)
2259 tree-eh.o : tree-eh.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2260 $(RTL_H) $(TREE_H) $(TM_H) $(FLAGS_H) $(FUNCTION_H) $(EXCEPT_H) langhooks.h \
2261 $(GGC_H) $(TREE_PASS_H) coretypes.h $(TIMEVAR_H) $(TM_P_H) pointer-set.h \
2262 $(TREE_DUMP_H) $(TREE_INLINE_H) tree-iterator.h $(TOPLEV_H)
2263 tree-ssa-loop.o : tree-ssa-loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2264 $(TREE_H) $(RTL_H) $(TM_P_H) hard-reg-set.h $(BASIC_BLOCK_H) output.h \
2265 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(TREE_PASS_H) $(TIMEVAR_H) \
2266 $(CFGLOOP_H) $(FLAGS_H) $(TREE_INLINE_H) tree-scalar-evolution.h
2267 tree-ssa-loop-unswitch.o : tree-ssa-loop-unswitch.c $(TREE_FLOW_H) \
2268 $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) \
2269 domwalk.h $(PARAMS_H) output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) \
2270 coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(BASIC_BLOCK_H) hard-reg-set.h \
2271 $(TREE_INLINE_H)
2272 tree-ssa-address.o : tree-ssa-address.c $(TREE_FLOW_H) $(CONFIG_H) \
2273 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) \
2274 output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2275 $(TREE_PASS_H) $(FLAGS_H) $(TREE_INLINE_H) $(RECOG_H) insn-config.h \
2276 $(EXPR_H) gt-tree-ssa-address.h $(GGC_H) tree-affine.h
2277 tree-ssa-loop-niter.o : tree-ssa-loop-niter.c $(TREE_FLOW_H) $(CONFIG_H) \
2278 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(PARAMS_H) \
2279 $(TREE_INLINE_H) output.h $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2280 $(TOPLEV_H) $(FLAGS_H) $(TREE_PASS_H) $(SCEV_H) $(TREE_DATA_REF_H) \
2281 $(BASIC_BLOCK_H) $(GGC_H) hard-reg-set.h tree-chrec.h intl.h
2282 tree-ssa-loop-ivcanon.o : tree-ssa-loop-ivcanon.c $(TREE_FLOW_H) $(CONFIG_H) \
2283 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(PARAMS_H) \
2284 $(TREE_INLINE_H) output.h $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2285 $(FLAGS_H) $(TREE_PASS_H) $(SCEV_H) $(BASIC_BLOCK_H) $(GGC_H) \
2286 hard-reg-set.h tree-chrec.h $(TARGET_H)
2287 tree-ssa-loop-ch.o : tree-ssa-loop-ch.c $(TREE_FLOW_H) $(CONFIG_H) \
2288 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(TREE_INLINE_H) \
2289 output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2290 $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) hard-reg-set.h
2291 tree-ssa-loop-prefetch.o: tree-ssa-loop-prefetch.c $(TREE_FLOW_H) $(CONFIG_H) \
2292 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(EXPR_H) \
2293 output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2294 $(TREE_PASS_H) $(GGC_H) $(RECOG_H) insn-config.h $(HASHTAB_H) $(SCEV_H) \
2295 $(CFGLOOP_H) $(PARAMS_H) langhooks.h $(BASIC_BLOCK_H) hard-reg-set.h \
2296 tree-chrec.h $(TOPLEV_H) langhooks.h $(TREE_INLINE_H) $(TREE_DATA_REF_H) \
2297 $(OPTABS_H)
2298 tree-predcom.o: tree-predcom.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_P_H) \
2299 $(CFGLOOP_H) $(TREE_FLOW_H) $(GGC_H) $(TREE_DATA_REF_H) $(SCEV_H) \
2300 $(PARAMS_H) $(DIAGNOSTIC_H) $(TREE_PASS_H) $(TM_H) coretypes.h \
2301 tree-affine.h $(TREE_INLINE_H)
2302 tree-ssa-loop-ivopts.o : tree-ssa-loop-ivopts.c $(TREE_FLOW_H) $(CONFIG_H) \
2303 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(EXPR_H) \
2304 output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) \
2305 $(TREE_PASS_H) $(GGC_H) $(RECOG_H) insn-config.h $(HASHTAB_H) $(SCEV_H) \
2306 $(CFGLOOP_H) $(PARAMS_H) langhooks.h $(BASIC_BLOCK_H) hard-reg-set.h \
2307 tree-chrec.h $(VARRAY_H) tree-affine.h pointer-set.h $(TARGET_H)
2308 tree-affine.o : tree-affine.c tree-affine.h $(CONFIG_H) pointer-set.h \
2309 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) hard-reg-set.h $(GIMPLE_H) \
2310 output.h $(DIAGNOSTIC_H) $(TM_H) coretypes.h $(TREE_DUMP_H) $(FLAGS_H)
2311 tree-ssa-loop-manip.o : tree-ssa-loop-manip.c $(TREE_FLOW_H) $(CONFIG_H) \
2312 $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) $(RTL_H) $(TM_P_H) hard-reg-set.h \
2313 $(BASIC_BLOCK_H) output.h $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) \
2314 $(TIMEVAR_H) $(CFGLOOP_H) $(TREE_PASS_H) $(CFGLAYOUT_H) \
2315 tree-scalar-evolution.h $(PARAMS_H) $(TREE_INLINE_H)
2316 tree-ssa-loop-im.o : tree-ssa-loop-im.c $(TREE_FLOW_H) $(CONFIG_H) \
2317 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) domwalk.h \
2318 $(PARAMS_H) output.h $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2319 $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) $(REAL_H) $(BASIC_BLOCK_H) \
2320 hard-reg-set.h pointer-set.h tree-affine.h tree-ssa-propagate.h
2321 tree-ssa-math-opts.o : tree-ssa-math-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2322 $(TM_H) $(FLAGS_H) $(TREE_H) $(TREE_FLOW_H) $(REAL_H) $(TIMEVAR_H) \
2323 $(TREE_PASS_H) alloc-pool.h $(BASIC_BLOCK_H) $(TARGET_H)
2324 tree-ssa-alias.o : tree-ssa-alias.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2325 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) $(TREE_INLINE_H) $(FLAGS_H) \
2326 $(FUNCTION_H) $(TIMEVAR_H) convert.h $(TM_H) coretypes.h langhooks.h \
2327 $(TREE_DUMP_H) $(TREE_PASS_H) $(PARAMS_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) \
2328 hard-reg-set.h $(GIMPLE_H) vec.h \
2329 $(IPA_TYPE_ESCAPE_H) vecprim.h pointer-set.h alloc-pool.h
2330 tree-ssa-reassoc.o : tree-ssa-reassoc.c $(TREE_FLOW_H) $(CONFIG_H) \
2331 $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) \
2332 $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) \
2333 tree-iterator.h $(BASIC_BLOCK_H) $(GIMPLE_H) $(TREE_INLINE_H) vec.h \
2334 langhooks.h alloc-pool.h pointer-set.h $(CFGLOOP_H)
2335 tree-optimize.o : tree-optimize.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2336 $(RTL_H) $(TREE_H) $(TM_P_H) hard-reg-set.h $(EXPR_H) $(GGC_H) output.h \
2337 $(DIAGNOSTIC_H) $(BASIC_BLOCK_H) $(FLAGS_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2338 $(TREE_DUMP_H) $(TOPLEV_H) $(FUNCTION_H) langhooks.h $(FLAGS_H) $(CGRAPH_H) \
2339 $(TREE_INLINE_H) tree-mudflap.h $(GGC_H) graph.h $(CGRAPH_H) \
2340 $(TREE_PASS_H) $(CFGLOOP_H) $(EXCEPT_H)
2341
2342 c-gimplify.o : c-gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2343 $(C_TREE_H) $(C_COMMON_H) $(DIAGNOSTIC_H) $(GIMPLE_H) $(VARRAY_H) \
2344 $(FLAGS_H) langhooks.h $(TOPLEV_H) $(RTL_H) $(TREE_FLOW_H) $(LANGHOOKS_DEF_H) \
2345 $(TM_H) coretypes.h $(C_PRETTY_PRINT_H) $(CGRAPH_H) $(BASIC_BLOCK_H) \
2346 hard-reg-set.h $(TREE_DUMP_H) $(TREE_INLINE_H)
2347 gimplify.o : gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(GIMPLE_H) \
2348 $(DIAGNOSTIC_H) $(GIMPLE_H) $(TREE_INLINE_H) $(VARRAY_H) langhooks.h \
2349 $(LANGHOOKS_DEF_H) $(TREE_FLOW_H) $(CGRAPH_H) $(TIMEVAR_H) $(TM_H) \
2350 coretypes.h $(EXCEPT_H) $(FLAGS_H) $(RTL_H) $(FUNCTION_H) $(EXPR_H) output.h \
2351 $(GGC_H) gt-gimplify.h $(HASHTAB_H) $(TARGET_H) $(TOPLEV_H) $(OPTABS_H) \
2352 $(REAL_H) $(SPLAY_TREE_H) vec.h tree-iterator.h
2353 gimple-iterator.o : gimple-iterator.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2354 $(TREE_H) $(GIMPLE_H) $(TREE_FLOW_H) value-prof.h
2355 gimple-low.o : gimple-low.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2356 $(DIAGNOSTIC_H) $(GIMPLE_H) $(TREE_INLINE_H) $(VARRAY_H) langhooks.h \
2357 $(LANGHOOKS_DEF_H) $(TREE_FLOW_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2358 $(EXCEPT_H) $(FLAGS_H) $(RTL_H) $(FUNCTION_H) $(EXPR_H) $(TREE_PASS_H) \
2359 $(HASHTAB_H) $(TOPLEV.H) tree-iterator.h
2360 omp-low.o : omp-low.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2361 $(RTL_H) $(GIMPLE_H) $(TREE_INLINE_H) langhooks.h $(DIAGNOSTIC_H) \
2362 $(TREE_FLOW_H) $(TIMEVAR_H) $(FLAGS_H) $(EXPR_H) $(TOPLEV_H) \
2363 $(TREE_PASS_H) $(GGC_H) $(EXCEPT_H) $(SPLAY_TREE_H) $(OPTABS_H) \
2364 $(CFGLOOP_H) tree-iterator.h
2365 tree-browser.o : tree-browser.c tree-browser.def $(CONFIG_H) $(SYSTEM_H) \
2366 $(TREE_H) $(TREE_INLINE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) \
2367 $(TM_H) coretypes.h
2368 omega.o : omega.c omega.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2369 $(GGC_H) $(TREE_H) $(DIAGNOSTIC_H) varray.h $(TREE_PASS_H) $(PARAMS_H)
2370 tree-chrec.o: tree-chrec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2371 $(GGC_H) $(TREE_H) $(REAL_H) $(SCEV_H) $(TREE_PASS_H) $(PARAMS_H) \
2372 $(DIAGNOSTIC_H) $(CFGLOOP_H) $(TREE_FLOW_H)
2373 tree-scalar-evolution.o: tree-scalar-evolution.c $(CONFIG_H) $(SYSTEM_H) \
2374 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(REAL_H) $(RTL_H) \
2375 $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) \
2376 $(TIMEVAR_H) $(CFGLOOP_H) $(SCEV_H) $(TREE_PASS_H) $(FLAGS_H) tree-chrec.h \
2377 gt-tree-scalar-evolution.h
2378 tree-data-ref.o: tree-data-ref.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2379 $(GGC_H) $(TREE_H) $(RTL_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) \
2380 $(TREE_FLOW_H) $(TREE_DUMP_H) $(TIMEVAR_H) $(CFGLOOP_H) \
2381 $(TREE_DATA_REF_H) $(SCEV_H) $(TREE_PASS_H) tree-chrec.h langhooks.h
2382 graphite.o: graphite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2383 $(GGC_H) $(TREE_H) $(RTL_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) $(TOPLEV_H) \
2384 $(TREE_FLOW_H) $(TREE_DUMP_H) $(TIMEVAR_H) $(CFGLOOP_H) $(GIMPLE_H) domwalk.h \
2385 $(TREE_DATA_REF_H) $(SCEV_H) $(TREE_PASS_H) tree-chrec.h graphite.h \
2386 pointer-set.h value-prof.h
2387 tree-vect-loop.o: tree-vect-loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2388 $(TM_H) $(GGC_H) $(TREE_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) \
2389 $(TREE_DUMP_H) $(CFGLOOP_H) $(EXPR_H) $(RECOG_H) $(OPTABS_H) $(TOPLEV_H) \
2390 tree-chrec.h $(SCEV_H) tree-vectorizer.h
2391 tree-vect-loop-manip.o: tree-vect-loop-manip.c $(CONFIG_H) $(SYSTEM_H) \
2392 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) \
2393 $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(EXPR_H) $(TOPLEV_H) $(SCEV_H) \
2394 tree-vectorizer.h langhooks.h
2395 tree-vect-patterns.o: tree-vect-patterns.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2396 $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) \
2397 $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(EXPR_H) $(OPTABS_H) $(PARAMS_H) \
2398 $(TREE_DATA_REF_H) tree-vectorizer.h $(RECOG_H) $(TOPLEV_H)
2399 tree-vect-slp.o: tree-vect-slp.c $(CONFIG_H) $(SYSTEM_H) \
2400 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \
2401 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) \
2402 $(EXPR_H) $(RECOG_H) $(OPTABS_H) tree-vectorizer.h
2403 tree-vect-stmts.o: tree-vect-stmts.c $(CONFIG_H) $(SYSTEM_H) \
2404 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \
2405 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) \
2406 $(EXPR_H) $(RECOG_H) $(OPTABS_H) tree-vectorizer.h langhooks.h
2407 tree-vect-data-refs.o: tree-vect-data-refs.c $(CONFIG_H) $(SYSTEM_H) \
2408 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \
2409 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) \
2410 $(EXPR_H) $(OPTABS_H) tree-chrec.h $(SCEV_H) tree-vectorizer.h $(TOPLEV_H)
2411 tree-vectorizer.o: tree-vectorizer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2412 $(TM_H) $(GGC_H) $(TREE_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) \
2413 $(CFGLOOP_H) $(TREE_PASS_H) tree-vectorizer.h $(TIMEVAR_H)
2414 tree-loop-linear.o: tree-loop-linear.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2415 $(TM_H) $(GGC_H) $(OPTABS_H) $(TREE_H) $(RTL_H) $(BASIC_BLOCK_H) \
2416 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(TIMEVAR_H) $(CFGLOOP_H) \
2417 $(TREE_PASS_H) $(TREE_DATA_REF_H) $(SCEV_H) $(EXPR_H) $(LAMBDA_H) \
2418 $(TARGET_H) tree-chrec.h $(OBSTACK_H)
2419 tree-loop-distribution.o: tree-loop-distribution.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2420 $(TM_H) $(GGC_H) $(OPTABS_H) $(TREE_H) $(RTL_H) $(BASIC_BLOCK_H) \
2421 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(TIMEVAR_H) $(CFGLOOP_H) \
2422 $(TREE_PASS_H) $(TREE_DATA_REF_H) $(SCEV_H) $(EXPR_H) \
2423 $(TARGET_H) tree-chrec.h langhooks.h $(TREE_VECTORIZER_H)
2424 tree-parloops.o: tree-parloops.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2425 $(TREE_FLOW_H) $(TREE_H) $(RTL_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(GGC_H) \
2426 $(DIAGNOSTIC_H) $(TREE_PASS_H) $(SCEV_H) langhooks.h gt-tree-parloops.h \
2427 $(TREE_VECTORIZER_H)
2428 tree-stdarg.o: tree-stdarg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2429 $(TREE_H) $(FUNCTION_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_PASS_H) \
2430 tree-stdarg.h $(TARGET_H) langhooks.h
2431 tree-object-size.o: tree-object-size.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2432 $(TM_H) $(TREE_H) $(TOPLEV_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) \
2433 $(TREE_PASS_H) tree-ssa-propagate.h
2434 gimple.o : gimple.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \
2435 $(GGC_H) $(GIMPLE_H) $(TOPLEV_H) $(DIAGNOSTIC_H) gt-gimple.h \
2436 $(TREE_FLOW_H) value-prof.h $(FLAGS_H)
2437 gimple-pretty-print.o : gimple-pretty-print.c $(CONFIG_H) $(SYSTEM_H) \
2438 $(TREE_H) $(DIAGNOSTIC_H) $(REAL_H) $(HASHTAB_H) $(TREE_FLOW_H) \
2439 $(TM_H) coretypes.h $(TREE_PASS_H) $(GIMPLE_H) value-prof.h
2440 tree-mudflap.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TREE_INLINE_H) \
2441 $(GIMPLE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) langhooks.h tree-mudflap.h \
2442 $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(CGRAPH_H) $(GGC_H) \
2443 gt-tree-mudflap.h $(BASIC_BLOCK_H) $(FLAGS_H) $(FUNCTION_H) hard-reg-set.h \
2444 $(RTL_H) $(TM_P_H) $(TREE_FLOW_H) $(TOPLEV.H) $(GIMPLE_H) tree-iterator.h
2445 tree-nomudflap.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TREE_INLINE_H) \
2446 $(C_TREE_H) $(C_COMMON_H) $(GIMPLE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) \
2447 output.h $(VARRAY_H) langhooks.h tree-mudflap.h $(TM_H) coretypes.h \
2448 $(GGC_H) gt-tree-mudflap.h $(TREE_PASS_H) $(TOPLEV_H)
2449 tree-pretty-print.o : tree-pretty-print.c $(CONFIG_H) $(SYSTEM_H) \
2450 $(TREE_H) $(DIAGNOSTIC_H) $(REAL_H) $(HASHTAB_H) $(TREE_FLOW_H) \
2451 $(TM_H) coretypes.h tree-iterator.h tree-chrec.h langhooks.h \
2452 $(TREE_PASS_H) value-prof.h fixed-value.h output.h
2453 fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2454 $(TREE_H) $(FLAGS_H) $(REAL_H) $(TOPLEV_H) $(HASHTAB_H) $(EXPR_H) $(RTL_H) \
2455 $(GGC_H) $(TM_P_H) langhooks.h $(MD5_H) intl.h fixed-value.h $(TARGET_H) \
2456 $(GIMPLE_H)
2457 diagnostic.o : diagnostic.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2458 $(TREE_H) version.h $(TM_P_H) $(FLAGS_H) $(INPUT_H) $(TOPLEV_H) intl.h \
2459 $(DIAGNOSTIC_H) langhooks.h $(LANGHOOKS_DEF_H) diagnostic.def opts.h \
2460 $(PLUGIN_H)
2461 opts.o : opts.c opts.h options.h $(TOPLEV_H) $(CONFIG_H) $(SYSTEM_H) \
2462 coretypes.h $(TREE_H) $(TM_H) langhooks.h $(GGC_H) $(EXPR_H) $(RTL_H) \
2463 output.h $(DIAGNOSTIC_H) $(TM_P_H) $(INSN_ATTR_H) intl.h $(TARGET_H) \
2464 $(FLAGS_H) $(PARAMS_H) $(TREE_PASS_H) $(DBGCNT_H) debug.h varray.h \
2465 $(PLUGIN_H)
2466 opts-common.o : opts-common.c opts.h $(CONFIG_H) $(SYSTEM_H) \
2467 coretypes.h intl.h
2468 targhooks.o : targhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \
2469 $(EXPR_H) $(TM_H) $(RTL_H) $(TM_P_H) $(FUNCTION_H) output.h $(TOPLEV_H) \
2470 $(MACHMODE_H) $(TARGET_DEF_H) $(TARGET_H) $(GGC_H) gt-targhooks.h \
2471 $(OPTABS_H) $(RECOG_H) reload.h
2472
2473 bversion.h: s-bversion; @true
2474 s-bversion: BASE-VER
2475 echo "#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h
2476 echo "#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h
2477 echo "#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h
2478 echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
2479 $(STAMP) s-bversion
2480
2481 toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2482 version.h $(RTL_H) $(FUNCTION_H) $(FLAGS_H) xcoffout.h $(INPUT_H) \
2483 $(INSN_ATTR_H) output.h $(DIAGNOSTIC_H) debug.h insn-config.h intl.h \
2484 $(RECOG_H) Makefile $(TOPLEV_H) dwarf2out.h sdbout.h dbxout.h $(EXPR_H) \
2485 hard-reg-set.h $(BASIC_BLOCK_H) graph.h $(EXCEPT_H) $(REGS_H) $(TIMEVAR_H) \
2486 value-prof.h $(PARAMS_H) $(TM_P_H) reload.h ira.h dwarf2asm.h $(TARGET_H) \
2487 langhooks.h insn-flags.h $(CFGLAYOUT_H) $(CFGLOOP_H) hosthooks.h \
2488 $(CGRAPH_H) $(COVERAGE_H) alloc-pool.h $(GGC_H) $(INTEGRATE_H) \
2489 opts.h params.def tree-mudflap.h $(REAL_H) $(TREE_PASS_H) $(GIMPLE_H) \
2490 tree-ssa-alias.h $(PLUGIN_H)
2491 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
2492 -DTARGET_NAME=\"$(target_noncanonical)\" \
2493 -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
2494
2495 passes.o : passes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2496 $(RTL_H) $(FUNCTION_H) $(FLAGS_H) xcoffout.h $(INPUT_H) $(INSN_ATTR_H) output.h \
2497 $(DIAGNOSTIC_H) debug.h insn-config.h intl.h $(RECOG_H) $(TOPLEV_H) \
2498 dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
2499 graph.h $(EXCEPT_H) $(REGS_H) $(TIMEVAR_H) value-prof.h \
2500 $(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
2501 langhooks.h insn-flags.h $(CFGLAYOUT_H) $(REAL_H) $(CFGLOOP_H) \
2502 hosthooks.h $(CGRAPH_H) $(COVERAGE_H) $(TREE_PASS_H) $(TREE_DUMP_H) \
2503 $(GGC_H) $(INTEGRATE_H) $(CPPLIB_H) opts.h $(TREE_FLOW_H) $(TREE_INLINE_H) \
2504 gt-passes.h $(DF_H) $(PREDICT_H)
2505
2506 plugin.o : plugin.c $(PLUGIN_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2507 $(TOPLEV_H) $(TREE_H) $(TREE_PASS_H) intl.h $(PLUGIN_VERSION_H) $(GGC_H)
2508
2509 main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TOPLEV_H)
2510
2511 host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2512 hosthooks.h $(HOSTHOOKS_DEF_H)
2513
2514 rtl-error.o: rtl-error.c $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2515 $(INSN_ATTR_H) insn-config.h $(INPUT_H) $(TOPLEV_H) intl.h $(DIAGNOSTIC_H) \
2516 $(CONFIG_H) varray.h
2517
2518 rtl.o : rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2519 $(GGC_H) $(BCONFIG_H) insn-notes.def reg-notes.def $(TOPLEV_H) $(REAL_H)
2520
2521 print-rtl.o : print-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2522 $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H) $(FLAGS_H) \
2523 $(BCONFIG_H) $(REAL_H)
2524 rtlanal.o : rtlanal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TOPLEV_H) \
2525 $(RTL_H) hard-reg-set.h $(TM_P_H) insn-config.h $(RECOG_H) $(REAL_H) \
2526 $(FLAGS_H) $(REGS_H) output.h $(TARGET_H) $(FUNCTION_H) $(TREE_H) \
2527 $(DF_H)
2528
2529 varasm.o : varasm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2530 $(RTL_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) hard-reg-set.h $(REGS_H) \
2531 output.h $(TOPLEV_H) xcoffout.h debug.h $(GGC_H) $(TM_P_H) \
2532 $(HASHTAB_H) $(TARGET_H) langhooks.h gt-varasm.h $(BASIC_BLOCK_H) \
2533 $(CFGLAYOUT_H) $(CGRAPH_H) targhooks.h tree-mudflap.h $(REAL_H) tree-iterator.h
2534 function.o : function.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2535 $(TREE_H) $(CFGLAYOUT_H) $(GIMPLE_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) \
2536 $(OPTABS_H) libfuncs.h $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
2537 output.h $(TOPLEV_H) $(EXCEPT_H) $(HASHTAB_H) $(GGC_H) $(TM_P_H) langhooks.h \
2538 gt-function.h $(TARGET_H) $(BASIC_BLOCK_H) $(INTEGRATE_H) $(PREDICT_H) \
2539 $(TREE_PASS_H) $(DF_H) $(TIMEVAR_H) vecprim.h
2540 statistics.o : statistics.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2541 $(TREE_PASS_H) $(TREE_DUMP_H) $(HASHTAB_H) statistics.h $(TM_H) $(FUNCTION_H)
2542 stmt.o : stmt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2543 $(TREE_H) $(FLAGS_H) $(FUNCTION_H) insn-config.h hard-reg-set.h $(EXPR_H) \
2544 libfuncs.h $(EXCEPT_H) $(RECOG_H) $(TOPLEV_H) output.h $(GGC_H) $(TM_P_H) \
2545 langhooks.h $(PREDICT_H) $(OPTABS_H) $(TARGET_H) $(MACHMODE_H) \
2546 $(REGS_H) alloc-pool.h
2547 except.o : except.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2548 $(TREE_H) $(FLAGS_H) $(EXCEPT_H) $(FUNCTION_H) $(EXPR_H) libfuncs.h \
2549 langhooks.h insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \
2550 dwarf2asm.h dwarf2out.h $(TOPLEV_H) $(HASHTAB_H) intl.h $(GGC_H) \
2551 gt-$(EXCEPT_H) $(CGRAPH_H) $(INTEGRATE_H) $(DIAGNOSTIC_H) dwarf2.h \
2552 $(TARGET_H) $(TM_P_H) $(TREE_PASS_H) $(TIMEVAR_H) $(TREE_FLOW_H)
2553 expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2554 $(TREE_H) $(FLAGS_H) $(FUNCTION_H) $(REGS_H) $(EXPR_H) $(OPTABS_H) \
2555 libfuncs.h $(INSN_ATTR_H) insn-config.h $(RECOG_H) output.h \
2556 typeclass.h hard-reg-set.h $(TOPLEV_H) hard-reg-set.h $(EXCEPT_H) reload.h \
2557 $(GGC_H) langhooks.h intl.h $(TM_P_H) $(REAL_H) $(TARGET_H) \
2558 tree-iterator.h gt-expr.h $(MACHMODE_H) $(TIMEVAR_H) $(TREE_FLOW_H) \
2559 $(TREE_PASS_H) $(DF_H) $(DIAGNOSTIC_H) vecprim.h $(SSAEXPAND_H)
2560 dojump.o : dojump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
2561 $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) $(OPTABS_H) $(INSN_ATTR_H) insn-config.h \
2562 langhooks.h $(GGC_H) gt-dojump.h vecprim.h $(BASIC_BLOCK_H)
2563 builtins.o : builtins.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2564 $(TREE_H) $(GIMPLE_H) $(FLAGS_H) $(TARGET_H) $(FUNCTION_H) $(REGS_H) \
2565 $(EXPR_H) $(OPTABS_H) insn-config.h $(RECOG_H) output.h typeclass.h \
2566 hard-reg-set.h $(TOPLEV_H) hard-reg-set.h $(EXCEPT_H) $(TM_P_H) $(PREDICT_H) \
2567 libfuncs.h $(REAL_H) langhooks.h $(BASIC_BLOCK_H) tree-mudflap.h \
2568 $(BUILTINS_DEF) $(MACHMODE_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) value-prof.h
2569 calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2570 $(TREE_H) $(FLAGS_H) $(EXPR_H) $(OPTABS_H) langhooks.h $(TARGET_H) \
2571 libfuncs.h $(REGS_H) $(TOPLEV_H) output.h $(FUNCTION_H) $(TIMEVAR_H) $(TM_P_H) \
2572 $(CGRAPH_H) $(EXCEPT_H) sbitmap.h $(DBGCNT_H) $(TREE_FLOW_H)
2573 expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
2574 $(FLAGS_H) insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) $(REAL_H) \
2575 $(TOPLEV_H) $(TM_P_H) langhooks.h $(DF_H) $(TARGET_H)
2576 explow.o : explow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \
2577 $(FLAGS_H) hard-reg-set.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \
2578 $(TOPLEV_H) $(EXCEPT_H) $(FUNCTION_H) $(GGC_H) $(TM_P_H) langhooks.h gt-explow.h \
2579 $(TARGET_H) output.h
2580 optabs.o : optabs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2581 $(TREE_H) $(FLAGS_H) insn-config.h $(EXPR_H) $(OPTABS_H) libfuncs.h \
2582 $(RECOG_H) reload.h $(TOPLEV_H) $(GGC_H) $(REAL_H) $(TM_P_H) $(EXCEPT_H) \
2583 gt-optabs.h $(BASIC_BLOCK_H) $(TARGET_H) $(FUNCTION_H)
2584 dbxout.o : dbxout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2585 $(RTL_H) $(FLAGS_H) $(REGS_H) debug.h $(TM_P_H) $(TARGET_H) $(FUNCTION_H) \
2586 langhooks.h insn-config.h reload.h $(GSTAB_H) xcoffout.h output.h dbxout.h \
2587 $(TOPLEV_H) $(GGC_H) $(OBSTACK_H) $(EXPR_H) gt-dbxout.h
2588 debug.o : debug.c debug.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H)
2589 sdbout.o : sdbout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) debug.h \
2590 $(TREE_H) $(GGC_H) $(RTL_H) $(REGS_H) $(FLAGS_H) insn-config.h \
2591 output.h $(TOPLEV_H) $(TM_P_H) gsyms.h langhooks.h $(TARGET_H) sdbout.h \
2592 gt-sdbout.h reload.h $(VARRAY_H)
2593 dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2594 $(TREE_H) version.h $(RTL_H) dwarf2.h debug.h $(FLAGS_H) insn-config.h \
2595 output.h $(DIAGNOSTIC_H) $(REAL_H) hard-reg-set.h $(REGS_H) $(EXPR_H) \
2596 libfuncs.h $(TOPLEV_H) dwarf2out.h reload.h $(GGC_H) $(EXCEPT_H) dwarf2asm.h \
2597 $(TM_P_H) langhooks.h $(HASHTAB_H) gt-dwarf2out.h $(TARGET_H) $(CGRAPH_H) \
2598 $(MD5_H) $(INPUT_H) $(FUNCTION_H) $(VARRAY_H)
2599 dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2600 $(FLAGS_H) $(RTL_H) $(TREE_H) output.h dwarf2asm.h $(TM_P_H) $(GGC_H) \
2601 gt-dwarf2asm.h dwarf2.h $(SPLAY_TREE_H) $(TARGET_H)
2602 vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) version.h \
2603 $(FLAGS_H) $(RTL_H) output.h vmsdbg.h debug.h langhooks.h $(FUNCTION_H) $(TARGET_H)
2604 xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2605 $(TREE_H) $(RTL_H) xcoffout.h $(FLAGS_H) $(TOPLEV_H) output.h dbxout.h \
2606 $(GGC_H) $(TARGET_H) debug.h $(GSTAB_H) xcoff.h
2607 emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2608 $(TREE_H) $(FLAGS_H) $(FUNCTION_H) $(REGS_H) insn-config.h $(RECOG_H) \
2609 $(GGC_H) $(EXPR_H) hard-reg-set.h $(BITMAP_H) $(TOPLEV_H) $(BASIC_BLOCK_H) \
2610 $(HASHTAB_H) $(TM_P_H) debug.h langhooks.h $(TREE_PASS_H) gt-emit-rtl.h \
2611 $(REAL_H) $(DF_H)
2612 real.o : real.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2613 $(TOPLEV_H) $(TM_P_H) $(REAL_H) dfp.h
2614 dfp.o : dfp.c dfp.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2615 $(TOPLEV_H) $(TM_P_H) $(REAL_H) $(DECNUM_H)
2616 fixed-value.o: fixed-value.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2617 $(TREE_H) fixed-value.h $(REAL_H) $(TOPLEV_H)
2618 integrate.o : integrate.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2619 $(RTL_H) $(TREE_H) $(FLAGS_H) debug.h $(INTEGRATE_H) insn-config.h \
2620 $(EXPR_H) $(REAL_H) $(REGS_H) intl.h $(FUNCTION_H) output.h $(RECOG_H) \
2621 $(EXCEPT_H) $(TOPLEV_H) $(PARAMS_H) $(TM_P_H) $(TARGET_H) langhooks.h \
2622 gt-integrate.h $(GGC_H) $(TREE_PASS_H) $(DF_H)
2623 jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2624 $(FLAGS_H) hard-reg-set.h $(REGS_H) insn-config.h $(RECOG_H) $(EXPR_H) \
2625 $(REAL_H) $(EXCEPT_H) $(FUNCTION_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) \
2626 $(TOPLEV_H) $(INSN_ATTR_H) $(TM_P_H) reload.h $(PREDICT_H) \
2627 $(TIMEVAR_H) $(TARGET_H)
2628 simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2629 $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) $(REAL_H) insn-config.h \
2630 $(RECOG_H) $(EXPR_H) $(TOPLEV_H) output.h $(FUNCTION_H) $(GGC_H) $(TM_P_H) \
2631 $(TREE_H) $(TARGET_H)
2632 cgraph.o : cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \
2633 langhooks.h $(TOPLEV_H) $(FLAGS_H) $(GGC_H) $(TARGET_H) $(CGRAPH_H) \
2634 gt-cgraph.h output.h intl.h $(BASIC_BLOCK_H) debug.h $(HASHTAB_H) \
2635 $(TREE_INLINE_H) $(VARRAY_H) $(TREE_DUMP_H) $(TREE_FLOW_H) value-prof.h
2636 cgraphunit.o : cgraphunit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2637 $(TREE_H) langhooks.h $(TREE_INLINE_H) $(TOPLEV_H) $(FLAGS_H) $(GGC_H) \
2638 $(TARGET_H) $(CGRAPH_H) intl.h pointer-set.h $(FUNCTION_H) $(GIMPLE_H) \
2639 $(TREE_FLOW_H) $(TREE_PASS_H) debug.h $(DIAGNOSTIC_H) \
2640 $(FIBHEAP_H) output.h $(PARAMS_H) $(RTL_H) $(TIMEVAR_H) $(IPA_PROP_H) \
2641 gt-cgraphunit.h tree-iterator.h $(COVERAGE_H)
2642 cgraphbuild.o : cgraphbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2643 $(TREE_H) langhooks.h $(CGRAPH_H) intl.h pointer-set.h $(GIMPLE_H) \
2644 $(TREE_FLOW_H) $(TREE_PASS_H)
2645 varpool.o : varpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2646 $(TREE_H) $(CGRAPH_H) langhooks.h $(DIAGNOSTIC_H) $(HASHTAB_H) \
2647 $(GGC_H) $(TIMEVAR_H) debug.h $(TARGET_H) output.h $(GIMPLE_H) \
2648 $(TREE_FLOW_H) gt-varpool.h
2649 ipa.o : ipa.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(CGRAPH_H) \
2650 $(TREE_PASS_H) $(TIMEVAR_H) $(GGC_H)
2651 ipa-prop.o : ipa-prop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2652 langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(IPA_PROP_H) $(DIAGNOSTIC_H) \
2653 $(TREE_FLOW_H) $(TM_H) $(TREE_PASS_H) $(FLAGS_H) $(TREE_H) \
2654 $(TREE_INLINE_H) $(TIMEVAR_H)
2655 ipa-cp.o : ipa-cp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2656 $(TREE_H) $(TARGET_H) $(CGRAPH_H) $(IPA_PROP_H) $(TREE_FLOW_H) \
2657 $(TREE_PASS_H) $(FLAGS_H) $(TIMEVAR_H) $(DIAGNOSTIC_H) $(TREE_DUMP_H) \
2658 $(TREE_INLINE_H)
2659 matrix-reorg.o : matrix-reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2660 $(TM_H) $(TREE_H) $(RTL_H) $(TREE_INLINE_H) $(TREE_FLOW_H) \
2661 tree-flow-inline.h langhooks.h $(HASHTAB_H) $(TOPLEV_H) $(FLAGS_H) $(GGC_H) \
2662 debug.h $(TARGET_H) $(CGRAPH_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(PARAMS_H) \
2663 $(FIBHEAP_H) intl.h $(FUNCTION_H) $(BASIC_BLOCK_H) $(CFGLOOP_H) \
2664 tree-iterator.h $(TREE_PASS_H) opts.h $(TREE_DATA_REF_H) tree-chrec.h \
2665 tree-scalar-evolution.h
2666 ipa-inline.o : ipa-inline.c gt-ipa-inline.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2667 $(TREE_H) langhooks.h $(TREE_INLINE_H) $(FLAGS_H) $(CGRAPH_H) intl.h \
2668 $(DIAGNOSTIC_H) $(FIBHEAP_H) $(PARAMS_H) $(TIMEVAR_H) $(TREE_PASS_H) \
2669 $(HASHTAB_H) $(COVERAGE_H) $(GGC_H) $(TREE_FLOW_H) $(RTL_H) $(IPA_PROP_H)
2670 ipa-utils.o : ipa-utils.c $(IPA_UTILS_H) $(CONFIG_H) $(SYSTEM_H) \
2671 coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \
2672 pointer-set.h $(GGC_H) $(GIMPLE_H) $(SPLAY_TREE_H) \
2673 $(CGRAPH_H) output.h $(FLAGS_H) $(TREE_PASS_H) $(TIMEVAR_H) $(DIAGNOSTIC_H)
2674 ipa-reference.o : ipa-reference.c $(CONFIG_H) $(SYSTEM_H) \
2675 coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \
2676 pointer-set.h $(GGC_H) $(IPA_REFERENCE_H) $(IPA_UTILS_H) $(SPLAY_TREE_H) \
2677 $(GIMPLE_H) $(CGRAPH_H) output.h $(FLAGS_H) $(TREE_PASS_H) \
2678 $(TIMEVAR_H) $(DIAGNOSTIC_H) $(FUNCTION_H)
2679
2680 ipa-pure-const.o : ipa-pure-const.c $(CONFIG_H) $(SYSTEM_H) \
2681 coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \
2682 pointer-set.h $(GGC_H) $(IPA_UTILS_H) $(TARGET_H) \
2683 $(GIMPLE_H) $(CGRAPH_H) output.h $(FLAGS_H) $(TREE_PASS_H) $(TIMEVAR_H) \
2684 $(DIAGNOSTIC_H)
2685 ipa-type-escape.o : ipa-type-escape.c $(CONFIG_H) $(SYSTEM_H) \
2686 coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \
2687 pointer-set.h $(GGC_H) $(IPA_TYPE_ESCAPE_H) $(IPA_UTILS_H) $(SPLAY_TREE_H) \
2688 $(GIMPLE_H) $(CGRAPH_H) output.h $(FLAGS_H) $(TREE_PASS_H) \
2689 $(TIMEVAR_H) $(DIAGNOSTIC_H) $(FUNCTION_H)
2690 ipa-struct-reorg.o: ipa-struct-reorg.c ipa-struct-reorg.h $(CONFIG_H) $(SYSTEM_H) \
2691 coretypes.h $(TM_H) $(GGC_H) $(TREE_H) $(RTL_H) $(GIMPLE_H) tree-inline.h \
2692 $(TREE_FLOW_H) langhooks.h pointer-set.h $(HASHTAB_H) $(TOPLEV_H) \
2693 $(FLAGS_H) debug.h $(TARGET_H) $(CGRAPH_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) \
2694 $(PARAMS_H) $(FIBHEAP_H) intl.h $(FUNCTION_H) $(BASIC_BLOCK_H) tree-iterator.h \
2695 $(TREE_PASS_H) opts.h $(IPA_TYPE_ESCAPE_H) $(TREE_DUMP_H) \
2696 $(GIMPLE_H)
2697
2698 coverage.o : coverage.c $(GCOV_IO_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2699 $(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) output.h $(REGS_H) $(EXPR_H) \
2700 $(FUNCTION_H) $(TOPLEV_H) $(GGC_H) langhooks.h $(COVERAGE_H) gt-coverage.h \
2701 $(HASHTAB_H) tree-iterator.h $(CGRAPH_H) $(TREE_PASS_H) gcov-io.c $(TM_P_H)
2702 cselib.o : cselib.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2703 $(REGS_H) hard-reg-set.h $(FLAGS_H) $(REAL_H) insn-config.h $(RECOG_H) \
2704 $(EMIT_RTL_H) $(TOPLEV_H) output.h $(FUNCTION_H) cselib.h $(GGC_H) $(TM_P_H) \
2705 gt-cselib.h $(PARAMS_H) alloc-pool.h $(HASHTAB_H) $(TARGET_H)
2706 cse.o : cse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
2707 hard-reg-set.h $(FLAGS_H) insn-config.h $(RECOG_H) $(EXPR_H) $(TOPLEV_H) \
2708 output.h $(FUNCTION_H) $(BASIC_BLOCK_H) $(GGC_H) $(TM_P_H) $(TIMEVAR_H) \
2709 $(EXCEPT_H) $(TARGET_H) $(PARAMS_H) rtlhooks-def.h $(TREE_PASS_H) \
2710 $(REAL_H) $(DF_H) $(DBGCNT_H)
2711 dce.o : dce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2712 $(TREE_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) $(EXCEPT_H) $(DF_H) cselib.h \
2713 $(DBGCNT_H) dce.h $(TIMEVAR_H) $(TREE_PASS_H) $(DBGCNT_H) $(TM_P_H)
2714 dse.o : dse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2715 $(TREE_H) $(TM_P_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
2716 $(RECOG_H) $(EXPR_H) $(DF_H) cselib.h $(DBGCNT_H) $(TIMEVAR_H) \
2717 $(TREE_PASS_H) alloc-pool.h $(ALIAS_H) dse.h $(OPTABS_H) $(TARGET_H)
2718 fwprop.o : fwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2719 $(TOPLEV_H) insn-config.h $(RECOG_H) $(FLAGS_H) $(OBSTACK_H) $(BASIC_BLOCK_H) \
2720 output.h $(DF_H) alloc-pool.h $(TIMEVAR_H) $(TREE_PASS_H) $(TARGET_H) \
2721 $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H)
2722 web.o : web.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2723 hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) $(FUNCTION_H) output.h $(TOPLEV_H) \
2724 $(DF_H) $(OBSTACK_H) $(TIMEVAR_H) $(TREE_PASS_H)
2725 see.o : see.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2726 hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) $(FUNCTION_H) output.h \
2727 $(DF_H) $(OBSTACK_H) $(TIMEVAR_H) $(TREE_PASS_H) $(RECOG_H) $(EXPR_H) \
2728 $(SPLAY_TREE_H) $(HASHTAB_H) $(REGS_H) dce.h
2729 gcse.o : gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2730 $(REGS_H) hard-reg-set.h $(FLAGS_H) $(REAL_H) insn-config.h $(GGC_H) \
2731 $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) output.h $(TOPLEV_H) \
2732 $(TM_P_H) $(PARAMS_H) $(EXCEPT_H) $(TREE_H) $(TIMEVAR_H) \
2733 intl.h $(OBSTACK_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H)
2734 store-motion.o : store-motion.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2735 $(REGS_H) hard-reg-set.h $(FLAGS_H) $(REAL_H) insn-config.h $(GGC_H) \
2736 $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) output.h $(TOPLEV_H) \
2737 $(TM_P_H) $(EXCEPT_H) $(TREE_H) $(TIMEVAR_H) \
2738 intl.h $(OBSTACK_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H)
2739 resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) \
2740 coretypes.h $(TM_H) $(REGS_H) $(FLAGS_H) output.h $(RESOURCE_H) $(DF_H) \
2741 $(FUNCTION_H) $(TOPLEV_H) $(INSN_ATTR_H) $(EXCEPT_H) $(PARAMS_H) $(TM_P_H)
2742 lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \
2743 hard-reg-set.h $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(RECOG_H) \
2744 $(BASIC_BLOCK_H) $(TM_P_H) $(FUNCTION_H) output.h $(REAL_H)
2745 mode-switching.o : mode-switching.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2746 $(TM_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
2747 $(INSN_ATTR_H) $(RECOG_H) $(BASIC_BLOCK_H) $(TM_P_H) $(FUNCTION_H) \
2748 output.h $(TREE_PASS_H) $(TIMEVAR_H) $(REAL_H) $(DF_H)
2749 tree-ssa-dce.o : tree-ssa-dce.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2750 $(RTL_H) $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) \
2751 coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) \
2752 $(GGC_H) hard-reg-set.h $(OBSTACK_H) $(GIMPLE_H) $(CFGLOOP_H) \
2753 tree-scalar-evolution.h
2754 tree-call-cdce.o : tree-call-cdce.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2755 $(RTL_H) $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TM_H) \
2756 coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) \
2757 $(GGC_H) hard-reg-set.h $(OBSTACK_H) $(GIMPLE_H)
2758 tree-ssa-ccp.o : tree-ssa-ccp.c $(TREE_FLOW_H) $(CONFIG_H) \
2759 $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(GGC_H) output.h \
2760 $(DIAGNOSTIC_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) coretypes.h \
2761 $(TREE_DUMP_H) $(BASIC_BLOCK_H) $(TREE_PASS_H) langhooks.h \
2762 tree-ssa-propagate.h value-prof.h $(FLAGS_H) $(TARGET_H) $(TOPLEV_H)
2763 tree-sra.o : tree-sra.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) \
2764 $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \
2765 $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) $(GIMPLE_H) \
2766 langhooks.h $(TREE_PASS_H) $(FLAGS_H) $(EXPR_H) $(BASIC_BLOCK_H) \
2767 $(BITMAP_H) $(GGC_H) hard-reg-set.h $(OBSTACK_H) $(PARAMS_H) $(TARGET_H)
2768 tree-switch-conversion.o : tree-switch-conversion.c $(CONFIG_H) $(SYSTEM_H) \
2769 $(TREE_H) $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \
2770 $(TIMEVAR_H) $(TM_H) coretypes.h $(TREE_DUMP_H) $(GIMPLE_H) \
2771 $(TREE_PASS_H) $(FLAGS_H) $(EXPR_H) $(BASIC_BLOCK_H) output.h \
2772 $(GGC_H) $(OBSTACK_H) $(PARAMS_H) $(CPPLIB_H) $(PARAMS_H)
2773 tree-complex.o : tree-complex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \
2774 $(TM_H) $(RTL_H) $(REAL_H) $(FLAGS_H) $(TREE_FLOW_H) $(GIMPLE_H) \
2775 tree-iterator.h $(TREE_PASS_H) tree-ssa-propagate.h $(DIAGNOSTIC_H)
2776 tree-vect-generic.o : tree-vect-generic.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
2777 $(TM_H) $(TREE_FLOW_H) $(GIMPLE_H) tree-iterator.h $(TREE_PASS_H) \
2778 $(FLAGS_H) $(OPTABS_H) $(RTL_H) $(MACHMODE_H) $(EXPR_H) \
2779 langhooks.h $(FLAGS_H) $(DIAGNOSTIC_H) gt-tree-vect-generic.h $(GGC_H) \
2780 coretypes.h insn-codes.h
2781 df-core.o : df-core.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2782 insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \
2783 hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h $(TIMEVAR_H) \
2784 $(TM_P_H) $(FLAGS_H) output.h $(TREE_PASS_H) $(PARAMS_H)
2785 df-problems.o : df-problems.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2786 $(RTL_H) insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \
2787 hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h $(TIMEVAR_H) \
2788 $(TM_P_H) $(FLAGS_H) output.h $(EXCEPT_H) dce.h vecprim.h
2789 df-scan.o : df-scan.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2790 insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \
2791 hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h $(TIMEVAR_H) \
2792 $(TM_P_H) $(FLAGS_H) $(TARGET_H) $(TARGET_DEF_H) $(TREE_H) output.h \
2793 $(TREE_PASS_H)
2794 df-byte-scan.o : df-byte-scan.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2795 tm_p.h $(DF_H) output.h $(DBGCNT_H)
2796 regstat.o : regstat.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2797 $(TM_P_H) $(FLAGS_H) $(REGS_H) output.h $(EXCEPT_H) hard-reg-set.h \
2798 $(BASIC_BLOCK_H) $(TIMEVAR_H) $(DF_H)
2799 var-tracking.o : var-tracking.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2800 $(RTL_H) $(TREE_H) hard-reg-set.h insn-config.h reload.h $(FLAGS_H) \
2801 $(BASIC_BLOCK_H) output.h sbitmap.h alloc-pool.h $(FIBHEAP_H) $(HASHTAB_H) \
2802 $(REGS_H) $(EXPR_H) $(TIMEVAR_H) $(TREE_PASS_H)
2803 profile.o : profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2804 $(TREE_H) $(FLAGS_H) output.h $(REGS_H) $(EXPR_H) $(FUNCTION_H) \
2805 $(TOPLEV_H) $(COVERAGE_H) $(TREE_FLOW_H) value-prof.h cfghooks.h \
2806 $(CFGLOOP_H) $(TIMEVAR_H) $(TREE_PASS_H) profile.h
2807 mcf.o : mcf.c profile.h $(CONFIG_H) $(SYSTEM_H) $(TM_H) coretypes.h \
2808 $(BASIC_BLOCK_H) output.h langhooks.h $(GCOV_IO_H) $(TREE_H)
2809 tree-profile.o : tree-profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2810 $(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) output.h $(REGS_H) $(EXPR_H) \
2811 $(FUNCTION_H) $(TOPLEV_H) $(COVERAGE_H) $(TREE_H) value-prof.h $(TREE_DUMP_H) \
2812 $(TREE_PASS_H) $(TREE_FLOW_H) $(TIMEVAR_H) $(GGC_H) gt-tree-profile.h $(CGRAPH_H)
2813 value-prof.o : value-prof.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2814 $(BASIC_BLOCK_H) hard-reg-set.h value-prof.h $(EXPR_H) output.h $(FLAGS_H) \
2815 $(RECOG_H) insn-config.h $(OPTABS_H) $(REGS_H) $(GGC_H) $(DIAGNOSTIC_H) \
2816 $(TREE_H) $(COVERAGE_H) $(RTL_H) $(GCOV_IO_H) $(TREE_FLOW_H) \
2817 tree-flow-inline.h $(TIMEVAR_H) $(TREE_PASS_H) $(TOPLEV_H) pointer-set.h
2818 loop-doloop.o : loop-doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2819 $(RTL_H) $(FLAGS_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) \
2820 $(TOPLEV_H) $(CFGLOOP_H) output.h $(PARAMS_H) $(TARGET_H)
2821 alloc-pool.o : alloc-pool.c $(CONFIG_H) $(SYSTEM_H) alloc-pool.h $(HASHTAB_H)
2822 auto-inc-dec.o : auto-inc-dec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2823 $(TREE_H) $(RTL_H) $(TM_P_H) hard-reg-set.h $(BASIC_BLOCK_H) insn-config.h \
2824 $(REGS_H) $(FLAGS_H) output.h $(FUNCTION_H) $(EXCEPT_H) $(TOPLEV_H) $(RECOG_H) \
2825 $(EXPR_H) $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H)
2826 cfg.o : cfg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(FLAGS_H) \
2827 $(REGS_H) hard-reg-set.h output.h $(TOPLEV_H) $(FUNCTION_H) $(EXCEPT_H) $(GGC_H) \
2828 $(TM_P_H) $(TIMEVAR_H) $(OBSTACK_H) $(TREE_H) alloc-pool.h \
2829 $(HASHTAB_H) $(DF_H) $(CFGLOOP_H) $(TREE_FLOW_H) $(TREE_PASS_H)
2830 cfghooks.o: cfghooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2831 $(TREE_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(TIMEVAR_H) $(TOPLEV_H) $(CFGLOOP_H)
2832 cfgexpand.o : cfgexpand.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \
2833 $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(FUNCTION_H) $(TIMEVAR_H) $(TM_H) \
2834 coretypes.h $(TREE_DUMP_H) $(EXCEPT_H) langhooks.h $(TREE_PASS_H) $(RTL_H) \
2835 $(DIAGNOSTIC_H) $(TOPLEV_H) $(BASIC_BLOCK_H) $(FLAGS_H) debug.h $(PARAMS_H) \
2836 value-prof.h $(TREE_INLINE_H) $(TARGET_H) $(SSAEXPAND_H)
2837 cfgrtl.o : cfgrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2838 $(FLAGS_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \
2839 output.h $(TOPLEV_H) $(FUNCTION_H) $(EXCEPT_H) $(TM_P_H) $(INSN_ATTR_H) \
2840 insn-config.h $(EXPR_H) \
2841 $(CFGLAYOUT_H) $(CFGLOOP_H) $(OBSTACK_H) $(TARGET_H) $(TREE_H) \
2842 $(TREE_PASS_H) $(DF_H) $(GGC_H)
2843 cfganal.o : cfganal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2844 $(BASIC_BLOCK_H) hard-reg-set.h insn-config.h $(RECOG_H) $(TM_P_H) \
2845 $(TIMEVAR_H) $(OBSTACK_H) $(TOPLEV_H) vecprim.h
2846 cfgbuild.o : cfgbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2847 $(FLAGS_H) $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h $(TOPLEV_H) \
2848 $(FUNCTION_H) $(EXCEPT_H) $(TIMEVAR_H) $(TREE_H)
2849 cfgcleanup.o : cfgcleanup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2850 $(RTL_H) $(TIMEVAR_H) hard-reg-set.h output.h $(FLAGS_H) $(RECOG_H) \
2851 $(TOPLEV_H) insn-config.h cselib.h $(TARGET_H) $(TM_P_H) $(PARAMS_H) \
2852 $(REGS_H) $(EMIT_RTL_H) $(CFGLAYOUT_H) $(TREE_PASS_H) $(CFGLOOP_H) $(EXPR_H) \
2853 $(DF_H) $(DBGCNT_H) dce.h
2854 cfgloop.o : cfgloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) coretypes.h $(TM_H) \
2855 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(FLAGS_H) $(FUNCTION_H) \
2856 $(OBSTACK_H) $(TOPLEV_H) $(TREE_FLOW_H) $(TREE_H) pointer-set.h output.h \
2857 $(GGC_H)
2858 cfgloopanal.o : cfgloopanal.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
2859 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) coretypes.h $(TM_H) \
2860 $(OBSTACK_H) output.h graphds.h $(PARAMS_H)
2861 graphds.o : graphds.c graphds.h $(CONFIG_H) $(SYSTEM_H) $(BITMAP_H) $(OBSTACK_H) \
2862 coretypes.h vec.h vecprim.h
2863 loop-iv.o : loop-iv.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(BASIC_BLOCK_H) \
2864 hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) coretypes.h $(TM_H) $(OBSTACK_H) \
2865 output.h intl.h $(TOPLEV_H) $(DF_H) $(HASHTAB_H)
2866 loop-invariant.o : loop-invariant.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
2867 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) $(RECOG_H) coretypes.h \
2868 $(TM_H) $(TM_P_H) $(FUNCTION_H) $(FLAGS_H) $(DF_H) $(OBSTACK_H) output.h \
2869 $(HASHTAB_H) $(EXCEPT_H) $(PARAMS_H)
2870 cfgloopmanip.o : cfgloopmanip.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
2871 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(CFGLAYOUT_H) output.h \
2872 coretypes.h $(TM_H) cfghooks.h $(OBSTACK_H) $(TREE_FLOW_H)
2873 loop-init.o : loop-init.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(GGC_H) \
2874 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(CFGLAYOUT_H) \
2875 coretypes.h $(TM_H) $(OBSTACK_H) $(TREE_PASS_H) $(TIMEVAR_H) $(FLAGS_H) \
2876 $(DF_H)
2877 loop-unswitch.o : loop-unswitch.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
2878 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(CFGLAYOUT_H) $(PARAMS_H) \
2879 output.h $(EXPR_H) coretypes.h $(TM_H) $(OBSTACK_H)
2880 loop-unroll.o: loop-unroll.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_H) \
2881 $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(CFGLAYOUT_H) $(PARAMS_H) \
2882 output.h $(EXPR_H) coretypes.h $(TM_H) $(HASHTAB_H) $(RECOG_H) \
2883 $(OBSTACK_H)
2884 dominance.o : dominance.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2885 hard-reg-set.h $(BASIC_BLOCK_H) et-forest.h $(OBSTACK_H) $(TOPLEV_H) \
2886 $(TIMEVAR_H) graphds.h vecprim.h pointer-set.h
2887 et-forest.o : et-forest.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2888 et-forest.h alloc-pool.h $(BASIC_BLOCK_H)
2889 combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2890 $(FLAGS_H) $(FUNCTION_H) insn-config.h $(INSN_ATTR_H) $(REGS_H) $(EXPR_H) \
2891 rtlhooks-def.h $(BASIC_BLOCK_H) $(RECOG_H) $(REAL_H) hard-reg-set.h \
2892 $(TOPLEV_H) $(TM_P_H) $(TREE_H) $(TARGET_H) output.h $(PARAMS_H) $(OPTABS_H) \
2893 insn-codes.h $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H) vecprim.h $(CGRAPH_H)
2894 reginfo.o : reginfo.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2895 hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) addresses.h $(REGS_H) insn-config.h \
2896 $(RECOG_H) reload.h $(REAL_H) $(TOPLEV_H) $(FUNCTION_H) output.h $(GGC_H) \
2897 $(TM_P_H) $(EXPR_H) $(TIMEVAR_H) gt-reginfo.h $(HASHTAB_H) \
2898 $(TARGET_H) $(TREE_PASS_H) $(DF_H) ira.h
2899 bitmap.o : bitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2900 $(FLAGS_H) $(GGC_H) gt-bitmap.h $(BITMAP_H) $(OBSTACK_H) $(HASHTAB_H)
2901 varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(GGC_H) \
2902 $(HASHTAB_H) $(BCONFIG_H) $(VARRAY_H) $(TOPLEV_H)
2903 vec.o : vec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h vec.h $(GGC_H) \
2904 $(TOPLEV_H)
2905 reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2906 $(FLAGS_H) output.h $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) \
2907 hard-reg-set.h insn-config.h $(REGS_H) $(FUNCTION_H) real.h $(TOPLEV_H) \
2908 addresses.h $(TM_P_H) $(PARAMS_H) $(TARGET_H) $(REAL_H) $(DF_H)
2909 reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2910 $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \
2911 $(BASIC_BLOCK_H) $(RECOG_H) output.h $(FUNCTION_H) $(TOPLEV_H) $(TM_P_H) \
2912 addresses.h $(EXCEPT_H) $(TREE_H) $(REAL_H) $(FLAGS_H) $(MACHMODE_H) \
2913 $(OBSTACK_H) $(DF_H) $(TARGET_H) $(EMIT_RTL_H) ira.h
2914 rtlhooks.o : rtlhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2915 rtlhooks-def.h $(EXPR_H) $(RECOG_H)
2916 postreload.o : postreload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2917 $(RTL_H) $(REAL_H) $(FLAGS_H) $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) \
2918 hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) $(RECOG_H) output.h \
2919 $(FUNCTION_H) $(TOPLEV_H) cselib.h $(TM_P_H) $(EXCEPT_H) $(TREE_H) $(MACHMODE_H) \
2920 $(OBSTACK_H) $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H)
2921 postreload-gcse.o : postreload-gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2922 $(TM_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
2923 $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) output.h $(TOPLEV_H) \
2924 $(TM_P_H) $(EXCEPT_H) $(TREE_H) $(TARGET_H) $(HASHTAB_H) intl.h $(OBSTACK_H) \
2925 $(PARAMS_H) $(TIMEVAR_H) $(TREE_PASS_H) $(REAL_H) $(DBGCNT_H)
2926 caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2927 $(FLAGS_H) $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) $(FUNCTION_H) \
2928 addresses.h $(RECOG_H) reload.h $(EXPR_H) $(TOPLEV_H) $(TM_P_H) $(DF_H) \
2929 output.h ira.h gt-caller-save.h $(GGC_H)
2930 bt-load.o : bt-load.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(EXCEPT_H) \
2931 $(RTL_H) hard-reg-set.h $(REGS_H) $(TM_P_H) $(FIBHEAP_H) output.h $(EXPR_H) \
2932 $(TARGET_H) $(FLAGS_H) $(INSN_ATTR_H) $(FUNCTION_H) $(TREE_PASS_H) \
2933 $(TOPLEV_H) $(DF_H) vecprim.h $(RECOG_H)
2934 reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2935 conditions.h hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h \
2936 $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) $(FUNCTION_H) $(FLAGS_H) output.h \
2937 $(EXPR_H) $(TOPLEV_H) $(PARAMS_H) $(TM_P_H) $(OBSTACK_H) $(RESOURCE_H) \
2938 $(TIMEVAR_H) $(TARGET_H) $(TREE_PASS_H)
2939 alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2940 $(FLAGS_H) hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) $(TOPLEV_H) output.h \
2941 $(ALIAS_H) $(EMIT_RTL_H) $(GGC_H) $(FUNCTION_H) cselib.h $(TREE_H) $(TM_P_H) \
2942 langhooks.h $(TARGET_H) gt-alias.h $(TIMEVAR_H) $(CGRAPH_H) \
2943 $(SPLAY_TREE_H) $(VARRAY_H) $(IPA_TYPE_ESCAPE_H) $(DF_H) $(TREE_PASS_H)
2944 stack-ptr-mod.o : stack-ptr-mod.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2945 $(TM_H) $(TREE_H) $(RTL_H) $(REGS_H) $(EXPR_H) $(TREE_PASS_H) \
2946 $(BASIC_BLOCK_H) $(FLAGS_H) output.h $(DF_H)
2947 init-regs.o : init-regs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2948 $(TM_H) $(TREE_H) $(RTL_H) $(REGS_H) $(EXPR_H) $(TREE_PASS_H) \
2949 $(BASIC_BLOCK_H) $(FLAGS_H) $(DF_H)
2950 ira-build.o: ira-build.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2951 $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \
2952 insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) \
2953 $(PARAMS_H) $(DF_H) sparseset.h $(IRA_INT_H)
2954 ira-costs.o: ira-costs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2955 $(TARGET_H) $(RTL_H) insn-config.h $(RECOG_H) \
2956 $(REGS_H) hard-reg-set.h $(FLAGS_H) \
2957 $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) \
2958 $(IRA_INT_H)
2959 ira-conflicts.o: ira-conflicts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2960 $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \
2961 insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(PARAMS_H) \
2962 $(DF_H) sparseset.h addresses.h $(IRA_INT_H)
2963 ira-color.o: ira-color.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2964 $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \
2965 $(EXPR_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(PARAMS_H) \
2966 $(DF_H) $(SPLAY_TREE_H) $(IRA_INT_H)
2967 ira-emit.o: ira-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2968 $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \
2969 $(EXPR_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(PARAMS_H) \
2970 $(IRA_INT_H)
2971 ira-lives.o: ira-lives.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
2972 $(TARGET_H) $(RTL_H) $(REGS_H) $(EXCEPT_H) hard-reg-set.h $(FLAGS_H) \
2973 insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(PARAMS_H) \
2974 $(DF_H) sparseset.h $(IRA_INT_H)
2975 ira.o: ira.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2976 $(TARGET_H) $(TM_H) $(RTL_H) $(RECOG_H) \
2977 $(REGS_H) hard-reg-set.h $(FLAGS_H) $(OBSTACK_H) \
2978 $(EXPR_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) \
2979 $(DF_H) $(IRA_INT_H) $(PARAMS_H) $(TIMEVAR_H) $(INTEGRATE_H) \
2980 $(TREE_PASS_H) output.h
2981 regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
2982 insn-config.h $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H)\
2983 $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \
2984 $(EXPR_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(EXCEPT_H) reload.h
2985 combine-stack-adj.o : combine-stack-adj.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
2986 $(TM_H) $(RTL_H) insn-config.h $(TIMEVAR_H) $(TREE_PASS_H) \
2987 $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \
2988 $(EXPR_H) $(BASIC_BLOCK_H) $(TOPLEV_H) $(TM_P_H) $(DF_H) $(EXCEPT_H) reload.h
2989 ddg.o : ddg.c $(DDG_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TARGET_H) \
2990 $(TOPLEV_H) $(RTL_H) $(TM_P_H) $(REGS_H) $(FUNCTION_H) \
2991 $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) \
2992 $(SCHED_INT_H) $(CFGLAYOUT_H) $(CFGLOOP_H) $(EXPR_H) $(BITMAP_H) \
2993 hard-reg-set.h sbitmap.h $(TM_H)
2994 modulo-sched.o : modulo-sched.c $(DDG_H) $(CONFIG_H) $(CONFIG_H) $(SYSTEM_H) \
2995 coretypes.h $(TARGET_H) $(TOPLEV_H) $(RTL_H) $(TM_P_H) $(REGS_H) $(FUNCTION_H) \
2996 $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) \
2997 $(SCHED_INT_H) $(CFGLAYOUT_H) $(CFGLOOP_H) $(EXPR_H) $(PARAMS_H) \
2998 cfghooks.h $(GCOV_IO_H) hard-reg-set.h $(TM_H) $(TIMEVAR_H) $(TREE_PASS_H) \
2999 $(DF_H) $(DBGCNT_H)
3000 haifa-sched.o : haifa-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3001 $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(FUNCTION_H) \
3002 $(INSN_ATTR_H) $(TOPLEV_H) $(RECOG_H) $(EXCEPT_H) $(TM_P_H) $(TARGET_H) output.h \
3003 $(PARAMS_H) $(DBGCNT_H)
3004 sched-deps.o : sched-deps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3005 $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3006 $(FUNCTION_H) $(INSN_ATTR_H) $(TOPLEV_H) $(RECOG_H) $(EXCEPT_H) cselib.h \
3007 $(PARAMS_H) $(TM_P_H)
3008 sched-rgn.o : sched-rgn.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3009 $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3010 $(FUNCTION_H) $(INSN_ATTR_H) $(TOPLEV_H) $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \
3011 $(TM_P_H) $(TARGET_H) $(CFGLAYOUT_H) $(TIMEVAR_H) $(TREE_PASS_H) \
3012 $(DBGCNT_H)
3013 sched-ebb.o : sched-ebb.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3014 $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3015 $(FUNCTION_H) $(INSN_ATTR_H) $(TOPLEV_H) $(RECOG_H) $(EXCEPT_H) $(TM_P_H) \
3016 $(PARAMS_H) $(CFGLAYOUT_H) $(TARGET_H) output.h
3017 sched-vis.o : sched-vis.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3018 $(RTL_H) $(SCHED_INT_H) hard-reg-set.h $(BASIC_BLOCK_H) $(OBSTACK_H) \
3019 $(REAL_H) $(TREE_PASS_H) $(INSN_ATTR_H)
3020 sel-sched.o : sel-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3021 $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3022 $(FUNCTION_H) $(INSN_ATTR_H) toplev.h $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \
3023 $(TM_P_H) $(TARGET_H) $(CFGLAYOUT_H) $(TIMEVAR_H) $(TREE_PASS_H) \
3024 $(SCHED_INT_H) $(GGC_H) $(TREE_H) $(LANGHOOKS_DEF_H) \
3025 $(SEL_SCHED_IR_H) $(SEL_SCHED_DUMP_H) sel-sched.h
3026 sel-sched-dump.o : sel-sched-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3027 $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3028 $(FUNCTION_H) $(INSN_ATTR_H) toplev.h $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \
3029 $(TM_P_H) $(TARGET_H) $(CFGLAYOUT_H) $(TIMEVAR_H) $(TREE_PASS_H) \
3030 $(SEL_SCHED_DUMP_H) $(GGC_H) $(TREE_H) $(LANGHOOKS_DEF_H) $(SEL_SCHED_IR_H)
3031 sel-sched-ir.o : sel-sched-ir.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3032 $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \
3033 $(FUNCTION_H) $(INSN_ATTR_H) toplev.h $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \
3034 $(TM_P_H) $(TARGET_H) $(CFGLAYOUT_H) $(TIMEVAR_H) $(TREE_PASS_H) \
3035 $(SCHED_INT_H) $(GGC_H) $(TREE_H) $(LANGHOOKS_DEF_H) $(SEL_SCHED_IR_H)
3036 final.o : final.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3037 $(TREE_H) $(FLAGS_H) intl.h $(REGS_H) $(RECOG_H) conditions.h \
3038 insn-config.h $(INSN_ATTR_H) $(FUNCTION_H) output.h hard-reg-set.h \
3039 $(EXCEPT_H) debug.h xcoffout.h $(TOPLEV_H) reload.h dwarf2out.h \
3040 $(TREE_PASS_H) $(BASIC_BLOCK_H) $(TM_P_H) $(TARGET_H) $(EXPR_H) \
3041 $(CFGLAYOUT_H) dbxout.h $(TIMEVAR_H) $(CGRAPH_H) $(COVERAGE_H) $(REAL_H) \
3042 $(DF_H) vecprim.h $(GGC_H) $(CFGLOOP_H) $(PARAMS_H)
3043 recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3044 $(FUNCTION_H) $(BASIC_BLOCK_H) $(REGS_H) $(RECOG_H) $(EXPR_H) \
3045 $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(TOPLEV_H) output.h reload.h \
3046 addresses.h $(TM_P_H) $(TIMEVAR_H) $(TREE_PASS_H) hard-reg-set.h $(REAL_H) \
3047 $(DF_H) $(DBGCNT_H) $(TARGET_H)
3048 reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3049 $(RTL_H) $(TREE_H) $(RECOG_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \
3050 insn-config.h $(TOPLEV_H) reload.h $(FUNCTION_H) $(TM_P_H) $(GGC_H) \
3051 $(BASIC_BLOCK_H) $(CFGLAYOUT_H) output.h $(VARRAY_H) $(TIMEVAR_H) \
3052 $(TREE_PASS_H) $(TARGET_H) vecprim.h $(DF_H)
3053 sreal.o: sreal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) sreal.h
3054 predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3055 $(TREE_H) $(FLAGS_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) \
3056 hard-reg-set.h output.h $(TOPLEV_H) $(RECOG_H) $(FUNCTION_H) $(EXCEPT_H) \
3057 $(TM_P_H) $(PREDICT_H) sreal.h $(PARAMS_H) $(TARGET_H) $(CFGLOOP_H) \
3058 $(COVERAGE_H) $(SCEV_H) $(GGC_H) predict.def $(TIMEVAR_H) $(TREE_DUMP_H) \
3059 $(TREE_FLOW_H) $(TREE_PASS_H) $(EXPR_H) pointer-set.h
3060 lists.o: lists.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TOPLEV_H) \
3061 $(RTL_H) $(GGC_H) gt-lists.h
3062 bb-reorder.o : bb-reorder.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3063 $(RTL_H) $(FLAGS_H) $(TIMEVAR_H) output.h $(CFGLAYOUT_H) $(FIBHEAP_H) \
3064 $(TARGET_H) $(FUNCTION_H) $(TM_P_H) $(OBSTACK_H) $(EXPR_H) $(REGS_H) \
3065 $(PARAMS_H) $(TOPLEV_H) $(TREE_PASS_H) $(DF_H)
3066 tracer.o : tracer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3067 $(TREE_H) $(BASIC_BLOCK_H) hard-reg-set.h output.h $(CFGLAYOUT_H) \
3068 $(FLAGS_H) $(TIMEVAR_H) $(PARAMS_H) $(COVERAGE_H) $(FIBHEAP_H) \
3069 $(TREE_PASS_H) $(TREE_FLOW_H) $(TREE_INLINE_H)
3070 cfglayout.o : cfglayout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3071 $(RTL_H) $(TREE_H) insn-config.h $(BASIC_BLOCK_H) hard-reg-set.h output.h \
3072 $(FUNCTION_H) $(CFGLAYOUT_H) $(CFGLOOP_H) $(TARGET_H) gt-cfglayout.h \
3073 $(GGC_H) alloc-pool.h $(FLAGS_H) $(OBSTACK_H) $(TREE_PASS_H) vecprim.h \
3074 $(DF_H)
3075 timevar.o : timevar.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3076 $(TIMEVAR_H) $(FLAGS_H) intl.h $(TOPLEV_H) $(RTL_H) timevar.def
3077 regcprop.o : regcprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3078 $(RTL_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \
3079 output.h $(RECOG_H) $(FUNCTION_H) $(OBSTACK_H) $(FLAGS_H) $(TM_P_H) \
3080 addresses.h reload.h $(TOPLEV_H) $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H)
3081 regrename.o : regrename.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3082 $(RTL_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \
3083 output.h $(RECOG_H) $(FUNCTION_H) $(OBSTACK_H) $(FLAGS_H) $(TM_P_H) \
3084 addresses.h reload.h $(TOPLEV_H) $(TIMEVAR_H) $(TREE_PASS_H) $(DF_H)
3085 ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \
3086 $(REGS_H) $(TOPLEV_H) $(FLAGS_H) insn-config.h $(FUNCTION_H) $(RECOG_H) \
3087 $(TARGET_H) $(BASIC_BLOCK_H) $(EXPR_H) output.h $(EXCEPT_H) $(TM_P_H) \
3088 $(REAL_H) $(OPTABS_H) $(CFGLOOP_H) hard-reg-set.h $(TIMEVAR_H) \
3089 $(TREE_PASS_H) $(DF_H) $(DBGCNT_H)
3090 lambda-mat.o : lambda-mat.c $(LAMBDA_H) $(GGC_H) $(SYSTEM_H) $(CONFIG_H) \
3091 $(TM_H) coretypes.h $(TREE_H) $(TREE_FLOW_H)
3092 lambda-trans.o: lambda-trans.c $(LAMBDA_H) $(GGC_H) $(SYSTEM_H) $(CONFIG_H) \
3093 $(TM_H) coretypes.h $(TARGET_H) $(TREE_H) $(TREE_FLOW_H)
3094 lambda-code.o: lambda-code.c $(LAMBDA_H) $(GGC_H) $(SYSTEM_H) $(CONFIG_H) \
3095 $(TM_H) $(OPTABS_H) $(TREE_H) $(RTL_H) $(BASIC_BLOCK_H) \
3096 $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_DUMP_H) $(TIMEVAR_H) $(CFGLOOP_H) \
3097 $(TREE_DATA_REF_H) $(SCEV_H) $(EXPR_H) coretypes.h $(TARGET_H) \
3098 tree-chrec.h $(TREE_PASS_H) vec.h vecprim.h $(OBSTACK_H) pointer-set.h
3099 params.o : params.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(PARAMS_H) $(TOPLEV_H)
3100 pointer-set.o: pointer-set.c pointer-set.h $(CONFIG_H) $(SYSTEM_H)
3101 hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(HOOKS_H)
3102 pretty-print.o: $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h $(PRETTY_PRINT_H) \
3103 $(TREE_H) $(GGC_H)
3104 errors.o : errors.c $(CONFIG_H) $(SYSTEM_H) errors.h $(BCONFIG_H)
3105 dbgcnt.o: dbgcnt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h errors.h $(DBGCNT_H) \
3106 $(TM_H) $(RTL_H) output.h
3107 lower-subreg.o : lower-subreg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3108 $(MACHMODE_H) $(TM_H) $(RTL_H) $(TM_P_H) $(TIMEVAR_H) $(FLAGS_H) \
3109 insn-config.h $(BASIC_BLOCK_H) $(RECOG_H) $(OBSTACK_H) $(BITMAP_H) \
3110 $(EXPR_H) $(EXCEPT_H) $(REGS_H) $(TREE_PASS_H) $(DF_H)
3111
3112 $(out_object_file): $(out_file) $(CONFIG_H) coretypes.h $(TM_H) $(TREE_H) \
3113 $(RTL_H) $(REGS_H) hard-reg-set.h insn-config.h conditions.h \
3114 output.h $(INSN_ATTR_H) $(SYSTEM_H) $(TOPLEV_H) $(TARGET_H) libfuncs.h \
3115 $(TARGET_DEF_H) $(FUNCTION_H) $(SCHED_INT_H) $(TM_P_H) $(EXPR_H) \
3116 langhooks.h $(GGC_H) $(OPTABS_H) $(REAL_H) tm-constrs.h $(GIMPLE_H)
3117 $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
3118 $(out_file) $(OUTPUT_OPTION)
3119
3120 # Build auxiliary files that support ecoff format.
3121 mips-tfile: mips-tfile.o version.o $(LIBDEPS)
3122 $(COMPILER) $(COMPILERFLAGS) $(LDFLAGS) -o $@ \
3123 mips-tfile.o version.o $(LIBS)
3124
3125 mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h \
3126 $(TM_H) version.h $(srcdir)/../include/getopt.h $(GSTAB_H) intl.h
3127
3128 mips-tdump: mips-tdump.o version.o $(LIBDEPS)
3129 $(COMPILER) $(COMPILERFLAGS) $(LDFLAGS) -o $@ \
3130 mips-tdump.o version.o $(LIBS)
3131
3132 mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) coretypes.h \
3133 $(TM_H) version.h $(srcdir)/../include/getopt.h stab.def
3134
3135 # FIXME: writing proper dependencies for this is a *LOT* of work.
3136 libbackend.o : $(OBJS-common:.o=.c) $(out_file) \
3137 insn-config.h insn-flags.h insn-codes.h insn-constants.h \
3138 insn-attr.h $(DATESTAMP) $(BASEVER) $(DEVPHASE) gcov-iov.h
3139 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
3140 -DTARGET_NAME=\"$(target_noncanonical)\" \
3141 -DLOCALEDIR=\"$(localedir)\" \
3142 -c $(filter %.c,$^) -o $@ \
3143 -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
3144 -DREVISION=$(REVISION_s) \
3145 -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \
3146 -DBUGURL=$(BUGURL_s) -combine
3147
3148 #\f
3149 # Generate header and source files from the machine description,
3150 # and compile them.
3151
3152 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
3153 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
3154 insn-attr.h insn-attrtab.c insn-preds.c
3155
3156 # Dependencies for the md file. The first time through, we just assume
3157 # the md file itself and the generated dependency file (in order to get
3158 # it built). The second time through we have the dependency file.
3159 -include mddeps.mk
3160 MD_DEPS = s-mddeps $(md_file) $(MD_INCLUDES)
3161
3162 s-mddeps: $(md_file) $(MD_INCLUDES) build/genmddeps$(build_exeext)
3163 $(RUN_GEN) build/genmddeps$(build_exeext) $(md_file) > tmp-mddeps
3164 $(SHELL) $(srcdir)/../move-if-change tmp-mddeps mddeps.mk
3165 $(STAMP) s-mddeps
3166
3167 # Header dependencies for generated source files.
3168 genrtl.o : genrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H)\
3169 $(GGC_H) $(OBSTACK_H)
3170 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3171 $(TM_H) $(RTL_H) $(REGS_H) $(REAL_H) output.h $(INSN_ATTR_H) \
3172 insn-config.h $(TOPLEV_H) $(RECOG_H) $(TM_P_H) $(FLAGS_H)
3173 insn-automata.o : insn-automata.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3174 $(TM_H) $(RTL_H) $(REGS_H) $(REAL_H) output.h $(INSN_ATTR_H) \
3175 insn-config.h $(TOPLEV_H) $(RECOG_H) $(TM_P_H) $(FLAGS_H)
3176 insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3177 $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(EXPR_H) $(OPTABS_H) $(REAL_H) \
3178 dfp.h $(FLAGS_H) output.h insn-config.h hard-reg-set.h $(RECOG_H) \
3179 $(RESOURCE_H) reload.h $(TOPLEV_H) $(REGS_H) tm-constrs.h $(GGC_H) \
3180 $(BASIC_BLOCK_H) $(INTEGRATE_H)
3181 insn-extract.o : insn-extract.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3182 $(TM_H) $(RTL_H) $(TOPLEV_H) insn-config.h $(RECOG_H)
3183 insn-modes.o : insn-modes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3184 $(MACHMODE_H) $(REAL_H)
3185 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3186 $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h $(FLAGS_H) $(RECOG_H) \
3187 $(EXPR_H) $(OPTABS_H) reload.h
3188 insn-output.o : insn-output.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3189 $(TM_H) $(RTL_H) $(GGC_H) $(REGS_H) $(REAL_H) conditions.h \
3190 hard-reg-set.h insn-config.h $(INSN_ATTR_H) $(EXPR_H) output.h \
3191 $(RECOG_H) $(FUNCTION_H) $(TOPLEV_H) $(FLAGS_H) insn-codes.h $(TM_P_H) \
3192 $(TARGET_H) tm-constrs.h
3193 insn-peep.o : insn-peep.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3194 insn-config.h $(RTL_H) $(TM_P_H) $(REGS_H) output.h $(REAL_H) \
3195 $(RECOG_H) $(EXCEPT_H) $(FUNCTION_H) $(TOPLEV_H) $(FLAGS_H) tm-constrs.h
3196 insn-preds.o : insn-preds.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3197 $(TM_H) $(RTL_H) $(TREE_H) insn-config.h $(RECOG_H) output.h \
3198 $(FLAGS_H) $(FUNCTION_H) hard-reg-set.h $(RESOURCE_H) $(TM_P_H) \
3199 $(TOPLEV_H) reload.h $(REGS_H) $(REAL_H) tm-constrs.h
3200 insn-recog.o : insn-recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \
3201 $(TM_H) $(RTL_H) insn-config.h $(RECOG_H) output.h $(FLAGS_H) \
3202 $(FUNCTION_H) hard-reg-set.h $(RESOURCE_H) $(TM_P_H) $(TOPLEV_H) \
3203 reload.h $(REAL_H) $(REGS_H) tm-constrs.h
3204
3205 # For each of the files generated by running a generator program over
3206 # the machine description, the following pair of static pattern rules
3207 # runs the generator program only if the machine description has changed,
3208 # but touches the target file only when its contents actually change.
3209 # The "; @true" construct forces Make to recheck the timestamp on the
3210 # target file.
3211
3212 simple_generated_h = insn-attr.h insn-codes.h insn-config.h insn-flags.h
3213
3214 simple_generated_c = insn-attrtab.c insn-automata.c insn-emit.c \
3215 insn-extract.c insn-opinit.c insn-output.c \
3216 insn-peep.c insn-recog.c
3217
3218 $(simple_generated_h): insn-%.h: s-%; @true
3219
3220 $(simple_generated_h:insn-%.h=s-%): s-%: build/gen%$(build_exeext) \
3221 $(MD_DEPS) insn-conditions.md
3222 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
3223 insn-conditions.md > tmp-$*.h
3224 $(SHELL) $(srcdir)/../move-if-change tmp-$*.h insn-$*.h
3225 $(STAMP) s-$*
3226
3227 $(simple_generated_c): insn-%.c: s-%; @true
3228 $(simple_generated_c:insn-%.c=s-%): s-%: build/gen%$(build_exeext) \
3229 $(MD_DEPS) insn-conditions.md
3230 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
3231 insn-conditions.md > tmp-$*.c
3232 $(SHELL) $(srcdir)/../move-if-change tmp-$*.c insn-$*.c
3233 $(STAMP) s-$*
3234
3235 generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \
3236 $(simple_generated_h) specs.h \
3237 tree-check.h genrtl.h insn-modes.h tm-preds.h tm-constrs.h \
3238 $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h
3239
3240 # In order for parallel make to really start compiling the expensive
3241 # objects from $(OBJS-common) as early as possible, build all their
3242 # prerequisites strictly before all objects.
3243 $(ALL_HOST_OBJS) : | $(generated_files)
3244
3245 # genconstants needs to run before insn-conditions.md is available
3246 # (because the constants may be used in the conditions).
3247 insn-constants.h: s-constants; @true
3248 s-constants: build/genconstants$(build_exeext) $(MD_DEPS)
3249 $(RUN_GEN) build/genconstants$(build_exeext) $(md_file) \
3250 > tmp-constants.h
3251 $(SHELL) $(srcdir)/../move-if-change tmp-constants.h insn-constants.h
3252 $(STAMP) s-constants
3253
3254 # gencheck doesn't read the machine description, and the file produced
3255 # doesn't use the insn-* convention.
3256 tree-check.h: s-check ; @true
3257 s-check : build/gencheck$(build_exeext)
3258 $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
3259 $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
3260 $(STAMP) s-check
3261
3262 # gencondmd doesn't use the standard naming convention.
3263 build/gencondmd.c: s-conditions; @true
3264 s-conditions: $(MD_DEPS) build/genconditions$(build_exeext)
3265 $(RUN_GEN) build/genconditions$(build_exeext) $(md_file) > tmp-condmd.c
3266 $(SHELL) $(srcdir)/../move-if-change tmp-condmd.c build/gencondmd.c
3267 $(STAMP) s-conditions
3268
3269 insn-conditions.md: s-condmd; @true
3270 s-condmd: build/gencondmd$(build_exeext)
3271 $(RUN_GEN) build/gencondmd$(build_exeext) > tmp-cond.md
3272 $(SHELL) $(srcdir)/../move-if-change tmp-cond.md insn-conditions.md
3273 $(STAMP) s-condmd
3274
3275
3276 # These files are generated by running the same generator more than
3277 # once with different options, so they have custom rules. The
3278 # stampfile idiom is the same.
3279 genrtl.c: s-genrtl; @true
3280 genrtl.h: s-genrtl-h; @true
3281
3282 s-genrtl: build/gengenrtl$(build_exeext)
3283 $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.c
3284 $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.c genrtl.c
3285 $(STAMP) s-genrtl
3286
3287 s-genrtl-h: build/gengenrtl$(build_exeext)
3288 $(RUN_GEN) build/gengenrtl$(build_exeext) -h > tmp-genrtl.h
3289 $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h
3290 $(STAMP) s-genrtl-h
3291
3292 insn-modes.c: s-modes; @true
3293 insn-modes.h: s-modes-h; @true
3294 min-insn-modes.c: s-modes-m; @true
3295
3296 s-modes: build/genmodes$(build_exeext)
3297 $(RUN_GEN) build/genmodes$(build_exeext) > tmp-modes.c
3298 $(SHELL) $(srcdir)/../move-if-change tmp-modes.c insn-modes.c
3299 $(STAMP) s-modes
3300
3301 s-modes-h: build/genmodes$(build_exeext)
3302 $(RUN_GEN) build/genmodes$(build_exeext) -h > tmp-modes.h
3303 $(SHELL) $(srcdir)/../move-if-change tmp-modes.h insn-modes.h
3304 $(STAMP) s-modes-h
3305
3306 s-modes-m: build/genmodes$(build_exeext)
3307 $(RUN_GEN) build/genmodes$(build_exeext) -m > tmp-min-modes.c
3308 $(SHELL) $(srcdir)/../move-if-change tmp-min-modes.c min-insn-modes.c
3309 $(STAMP) s-modes-m
3310
3311 insn-preds.c: s-preds; @true
3312 tm-preds.h: s-preds-h; @true
3313 tm-constrs.h: s-constrs-h; @true
3314
3315 s-preds: $(MD_DEPS) build/genpreds$(build_exeext)
3316 $(RUN_GEN) build/genpreds$(build_exeext) $(md_file) > tmp-preds.c
3317 $(SHELL) $(srcdir)/../move-if-change tmp-preds.c insn-preds.c
3318 $(STAMP) s-preds
3319
3320 s-preds-h: $(MD_DEPS) build/genpreds$(build_exeext)
3321 $(RUN_GEN) build/genpreds$(build_exeext) -h $(md_file) > tmp-preds.h
3322 $(SHELL) $(srcdir)/../move-if-change tmp-preds.h tm-preds.h
3323 $(STAMP) s-preds-h
3324
3325 s-constrs-h: $(MD_DEPS) build/genpreds$(build_exeext)
3326 $(RUN_GEN) build/genpreds$(build_exeext) -c $(md_file) > tmp-constrs.h
3327 $(SHELL) $(srcdir)/../move-if-change tmp-constrs.h tm-constrs.h
3328 $(STAMP) s-constrs-h
3329
3330 GTFILES = $(CPP_ID_DATA_H) $(srcdir)/input.h $(srcdir)/coretypes.h \
3331 $(host_xm_file_list) \
3332 $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \
3333 $(srcdir)/alias.h $(srcdir)/coverage.c $(srcdir)/rtl.h \
3334 $(srcdir)/optabs.h $(srcdir)/tree.h $(srcdir)/varray.h $(srcdir)/libfuncs.h $(SYMTAB_H) \
3335 $(srcdir)/real.h $(srcdir)/function.h $(srcdir)/insn-addr.h $(srcdir)/hwint.h \
3336 $(srcdir)/fixed-value.h \
3337 $(srcdir)/ipa-reference.h $(srcdir)/output.h $(srcdir)/cfgloop.h \
3338 $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/cgraph.h \
3339 $(srcdir)/reload.h $(srcdir)/caller-save.c \
3340 $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \
3341 $(srcdir)/ipa-prop.c $(srcdir)/ipa-cp.c $(srcdir)/ipa-inline.c $(srcdir)/matrix-reorg.c \
3342 $(srcdir)/dbxout.c $(srcdir)/ipa-struct-reorg.c $(srcdir)/dwarf2out.c $(srcdir)/dwarf2asm.c \
3343 $(srcdir)/tree-vect-generic.c \
3344 $(srcdir)/dojump.c \
3345 $(srcdir)/emit-rtl.c $(srcdir)/except.h $(srcdir)/explow.c $(srcdir)/expr.c \
3346 $(srcdir)/expr.h \
3347 $(srcdir)/function.c $(srcdir)/except.c \
3348 $(srcdir)/gcse.c $(srcdir)/integrate.c $(srcdir)/lists.c $(srcdir)/optabs.c \
3349 $(srcdir)/profile.c $(srcdir)/reginfo.c $(srcdir)/mcf.c \
3350 $(srcdir)/reg-stack.c $(srcdir)/cfglayout.c $(srcdir)/cfglayout.h \
3351 $(srcdir)/sdbout.c $(srcdir)/stor-layout.c \
3352 $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \
3353 $(srcdir)/gimple.h $(srcdir)/gimple.c \
3354 $(srcdir)/tree-mudflap.c $(srcdir)/tree-flow.h \
3355 $(srcdir)/tree-ssanames.c $(srcdir)/tree-eh.c $(srcdir)/tree-ssa-address.c \
3356 $(srcdir)/tree-cfg.c \
3357 $(srcdir)/tree-dfa.c \
3358 $(srcdir)/tree-iterator.c $(srcdir)/gimplify.c \
3359 $(srcdir)/tree-chrec.h \
3360 $(srcdir)/tree-scalar-evolution.c \
3361 $(srcdir)/tree-ssa-operands.h \
3362 $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \
3363 $(srcdir)/varpool.c \
3364 $(srcdir)/tree-parloops.c \
3365 $(srcdir)/omp-low.c \
3366 $(srcdir)/targhooks.c $(out_file) $(srcdir)/passes.c $(srcdir)/cgraphunit.c \
3367 $(srcdir)/tree-ssa-propagate.c \
3368 $(srcdir)/tree-phinodes.c \
3369 $(srcdir)/ipa-reference.c \
3370 $(srcdir)/tree-ssa-structalias.c \
3371 $(srcdir)/tree-ssa-alias.h \
3372 @all_gtfiles@
3373
3374 # Compute the list of GT header files from the corresponding C sources,
3375 # possibly nested within config or language subdirectories. Match gengtype's
3376 # behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG
3377 # language subdir, gt-file.h otherwise (no subdir indication for config/
3378 # related sources).
3379
3380 GTFILES_H = $(subst /,-, \
3381 $(shell echo $(patsubst $(srcdir)/%,gt-%, \
3382 $(patsubst %.c,%.h, \
3383 $(filter %.c, $(GTFILES)))) \
3384 | sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g"))
3385
3386 GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES)))
3387 ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H))
3388
3389 # $(GTFILES) may be too long to put on a command line, so we have to
3390 # write it out to a file (taking care not to do that in a way that
3391 # overflows a command line!) and then have gengtype read the file in.
3392
3393 $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h : s-gtype ; @true
3394
3395 gtyp-input.list: s-gtyp-input ; @true
3396 s-gtyp-input: Makefile
3397 @: $(call write_entries_to_file,$(GTFILES),tmp-gi.list)
3398 $(SHELL) $(srcdir)/../move-if-change tmp-gi.list gtyp-input.list
3399 $(STAMP) s-gtyp-input
3400
3401 s-gtype: build/gengtype$(build_exeext) $(filter-out [%], $(GTFILES)) \
3402 gtyp-input.list
3403 $(RUN_GEN) build/gengtype$(build_exeext) $(srcdir) gtyp-input.list
3404 $(STAMP) s-gtype
3405
3406 #\f
3407 # How to compile object files to run on the build machine.
3408
3409 build/%.o : # dependencies provided by explicit rule later
3410 $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \
3411 -o $@ $<
3412
3413 # Header dependencies for the programs that generate source code.
3414 # These are library modules...
3415 build/errors.o : errors.c $(BCONFIG_H) $(SYSTEM_H) errors.h
3416 build/gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
3417 $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) errors.h $(HASHTAB_H) \
3418 gensupport.h
3419 build/ggc-none.o : ggc-none.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
3420 $(GGC_H)
3421 build/min-insn-modes.o : min-insn-modes.c $(BCONFIG_H) $(SYSTEM_H) \
3422 $(MACHMODE_H)
3423 build/print-rtl.o: print-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
3424 $(GTM_H) $(RTL_BASE_H)
3425 build/read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
3426 $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) $(HASHTAB_H) gensupport.h
3427 build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \
3428 $(RTL_H) $(REAL_H) $(GGC_H) errors.h
3429 build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h vec.h \
3430 $(GGC_H) $(TOPLEV_H)
3431 build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \
3432 coretypes.h $(GTM_H) insn-constants.h $(RTL_H) $(TM_P_H) \
3433 $(FUNCTION_H) $(REGS_H) $(RECOG_H) $(REAL_H) output.h $(FLAGS_H) \
3434 $(RESOURCE_H) $(TOPLEV_H) reload.h $(EXCEPT_H) tm-constrs.h
3435 # This pulls in tm-pred.h which contains inline functions wrapping up
3436 # predicates from the back-end so those functions must be discarded.
3437 # No big deal since gencondmd.c is a dummy file for non-GCC compilers.
3438 build/gencondmd.o : \
3439 BUILD_CFLAGS := $(filter-out -fkeep-inline-functions, $(BUILD_CFLAGS))
3440
3441 # ...these are the programs themselves.
3442 build/genattr.o : genattr.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3443 coretypes.h $(GTM_H) errors.h gensupport.h
3444 build/genattrtab.o : genattrtab.c $(RTL_BASE_H) $(OBSTACK_H) \
3445 $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) \
3446 gensupport.h
3447 build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \
3448 $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h vec.h \
3449 $(HASHTAB_H) gensupport.h
3450 build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \
3451 $(SYSTEM_H) coretypes.h $(lang_tree_files) gimple.def
3452 build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H)
3453 build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3454 coretypes.h $(GTM_H) errors.h gensupport.h
3455 build/genconditions.o : genconditions.c $(RTL_BASE_H) $(BCONFIG_H) \
3456 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h
3457 build/genconfig.o : genconfig.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3458 coretypes.h $(GTM_H) errors.h gensupport.h
3459 build/genconstants.o : genconstants.c $(RTL_BASE_H) $(BCONFIG_H) \
3460 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h
3461 build/genemit.o : genemit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3462 coretypes.h $(GTM_H) errors.h gensupport.h
3463 build/genextract.o : genextract.c $(RTL_BASE_H) $(BCONFIG_H) \
3464 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h vecprim.h
3465 build/genflags.o : genflags.c $(RTL_BASE_H) $(OBSTACK_H) $(BCONFIG_H) \
3466 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h gensupport.h
3467 build/gengenrtl.o : gengenrtl.c $(BCONFIG_H) $(SYSTEM_H) rtl.def
3468 build/gengtype-lex.o : gengtype-lex.c gengtype.h $(BCONFIG_H) $(SYSTEM_H)
3469 build/gengtype-parse.o : gengtype-parse.c gengtype.h $(BCONFIG_H) \
3470 $(SYSTEM_H)
3471 build/gengtype.o : gengtype.c $(BCONFIG_H) $(SYSTEM_H) gengtype.h \
3472 rtl.def insn-notes.def errors.h double-int.h
3473 build/genmddeps.o: genmddeps.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
3474 $(GTM_H) $(RTL_BASE_H) errors.h gensupport.h
3475 build/genmodes.o : genmodes.c $(BCONFIG_H) $(SYSTEM_H) errors.h \
3476 $(HASHTAB_H) machmode.def $(extra_modes_file)
3477 build/genopinit.o : genopinit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3478 coretypes.h $(GTM_H) errors.h gensupport.h
3479 build/genoutput.o : genoutput.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3480 coretypes.h $(GTM_H) errors.h gensupport.h
3481 build/genpeep.o : genpeep.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3482 coretypes.h $(GTM_H) errors.h gensupport.h $(TOPLEV_H)
3483 build/genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3484 coretypes.h $(GTM_H) errors.h gensupport.h $(OBSTACK_H)
3485 build/genrecog.o : genrecog.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
3486 coretypes.h $(GTM_H) errors.h gensupport.h
3487
3488 # Compile the programs that generate insn-* from the machine description.
3489 # They are compiled with $(COMPILER_FOR_BUILD), and associated libraries,
3490 # since they need to run on this machine
3491 # even if GCC is being compiled to run on some other machine.
3492
3493 # As a general rule...
3494 build/gen%$(build_exeext): build/gen%.o $(BUILD_LIBDEPS)
3495 $(COMPILER_FOR_BUILD) $(BUILD_COMPILERFLAGS) $(BUILD_LDFLAGS) -o $@ \
3496 $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS)
3497
3498 # All these programs use the MD reader ($(BUILD_RTL)).
3499 genprogmd = attr attrtab automata codes conditions config constants emit \
3500 extract flags mddeps opinit output peep preds recog
3501 $(genprogmd:%=build/gen%$(build_exeext)): $(BUILD_RTL) $(BUILD_ERRORS)
3502
3503 # These programs need libs over and above what they get from the above list.
3504 build/genautomata$(build_exeext) : BUILD_LIBS += -lm
3505
3506 # These programs are not linked with the MD reader.
3507 build/gengenrtl$(build_exeext) : $(BUILD_ERRORS)
3508 build/genmodes$(build_exeext) : $(BUILD_ERRORS)
3509 build/gengtype$(build_exeext) : build/gengtype-lex.o build/gengtype-parse.o \
3510 $(BUILD_ERRORS)
3511
3512 # Generated source files for gengtype.
3513 gengtype-lex.c : gengtype-lex.l
3514 -$(FLEX) $(FLEXFLAGS) -o$@ $<
3515
3516 #\f
3517 # Remake internationalization support.
3518 intl.o: intl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h Makefile
3519 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
3520 -DLOCALEDIR=\"$(localedir)\" \
3521 -c $(srcdir)/intl.c $(OUTPUT_OPTION)
3522
3523 #\f
3524 # Remake cpp.
3525
3526 PREPROCESSOR_DEFINES = \
3527 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
3528 -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
3529 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
3530 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \
3531 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
3532 -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
3533 -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
3534 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
3535 -DPREFIX=\"$(prefix)/\" \
3536 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
3537 @TARGET_SYSTEM_ROOT_DEFINE@
3538
3539 cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
3540 cppdefault.h Makefile
3541 $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
3542 $(PREPROCESSOR_DEFINES) \
3543 -c $(srcdir)/cppdefault.c $(OUTPUT_OPTION)
3544
3545 # Note for the stamp targets, we run the program `true' instead of
3546 # having an empty command (nothing following the semicolon).
3547
3548 # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
3549 build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \
3550 $(SYSTEM_H) coretypes.h $(TM_H)
3551
3552 build/gcov-iov$(build_exeext): build/gcov-iov.o
3553 $(COMPILER_FOR_BUILD) $(BUILD_COMPILERFLAGS) $(BUILD_LDFLAGS) \
3554 build/gcov-iov.o -o $@
3555
3556 gcov-iov.h: s-iov
3557 s-iov: build/gcov-iov$(build_exeext) $(BASEVER) $(DEVPHASE)
3558 build/gcov-iov$(build_exeext) '$(BASEVER_c)' '$(DEVPHASE_c)' \
3559 > tmp-gcov-iov.h
3560 $(SHELL) $(srcdir)/../move-if-change tmp-gcov-iov.h gcov-iov.h
3561 $(STAMP) s-iov
3562
3563 gcov.o: gcov.c gcov-io.c $(GCOV_IO_H) intl.h $(SYSTEM_H) coretypes.h $(TM_H) \
3564 $(CONFIG_H) version.h
3565 gcov-dump.o: gcov-dump.c gcov-io.c $(GCOV_IO_H) $(SYSTEM_H) coretypes.h \
3566 $(TM_H) $(CONFIG_H) version.h
3567
3568 GCOV_OBJS = gcov.o intl.o version.o errors.o
3569 gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
3570 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
3571 GCOV_DUMP_OBJS = gcov-dump.o version.o errors.o
3572 gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS)
3573 $(COMPILER) $(ALL_COMPILERFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) \
3574 $(LIBS) -o $@
3575 #\f
3576 # Build the include directories. The stamp files are stmp-* rather than
3577 # s-* so that mostlyclean does not force the include directory to
3578 # be rebuilt.
3579
3580 # Build the include directories.
3581 stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) $(UNWIND_H) fixinc_list
3582 # Copy in the headers provided with gcc.
3583 # The sed command gets just the last file name component;
3584 # this is necessary because VPATH could add a dirname.
3585 # Using basename would be simpler, but some systems don't have it.
3586 # The touch command is here to workaround an AIX/Linux NFS bug.
3587 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
3588 -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
3589 for file in .. $(USER_H); do \
3590 if [ X$$file != X.. ]; then \
3591 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3592 $(STAMP) include/$$realfile; \
3593 rm -f include/$$realfile; \
3594 cp $$file include; \
3595 chmod a+r include/$$realfile; \
3596 fi; \
3597 done
3598 rm -f include/unwind.h
3599 cp $(UNWIND_H) include/unwind.h
3600 rm -f include/stdint.h
3601 if [ $(USE_GCC_STDINT) = wrap ]; then \
3602 rm -f include/stdint-gcc.h; \
3603 cp $(srcdir)/ginclude/stdint-gcc.h include/stdint-gcc.h; \
3604 cp $(srcdir)/ginclude/stdint-wrap.h include/stdint.h; \
3605 elif [ $(USE_GCC_STDINT) = provide ]; then \
3606 cp $(srcdir)/ginclude/stdint-gcc.h include/stdint.h; \
3607 fi
3608 set -e; for ml in `cat fixinc_list`; do \
3609 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
3610 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3611 fix_dir=include-fixed$${multi_dir}; \
3612 if $(LIMITS_H_TEST) ; then \
3613 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
3614 else \
3615 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
3616 fi; \
3617 $(mkinstalldirs) $${fix_dir}; \
3618 chmod a+rx $${fix_dir} || true; \
3619 rm -f $${fix_dir}/limits.h; \
3620 mv tmp-xlimits.h $${fix_dir}/limits.h; \
3621 chmod a+r $${fix_dir}/limits.h; \
3622 done
3623 # Install the README
3624 rm -f include-fixed/README
3625 cp $(srcdir)/../fixincludes/README-fixinc include-fixed/README
3626 chmod a+r include-fixed/README
3627 $(STAMP) $@
3628
3629 .PHONY: install-gcc-tooldir
3630 install-gcc-tooldir:
3631 $(mkinstalldirs) $(DESTDIR)$(gcc_tooldir)
3632
3633 macro_list: s-macro_list; @true
3634 s-macro_list : $(GCC_PASSES)
3635 echo | $(GCC_FOR_TARGET) -E -dM - | \
3636 sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
3637 -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
3638 sort -u > tmp-macro_list
3639 $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list
3640 $(STAMP) s-macro_list
3641
3642 fixinc_list: s-fixinc_list; @true
3643 s-fixinc_list : $(GCC_PASSES)
3644 # Build up a list of multilib directories and corresponding sysroot
3645 # suffixes, in form sysroot;multilib.
3646 if $(GCC_FOR_TARGET) -print-sysroot-headers-suffix > /dev/null 2>&1; then \
3647 set -e; for ml in `$(GCC_FOR_TARGET) -print-multi-lib`; do \
3648 multi_dir=`echo $${ml} | sed -e 's/;.*$$//'`; \
3649 flags=`echo $${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
3650 sfx=`$(GCC_FOR_TARGET) $${flags} -print-sysroot-headers-suffix`; \
3651 if [ "$${multi_dir}" = "." ]; \
3652 then multi_dir=""; \
3653 else \
3654 multi_dir=/$${multi_dir}; \
3655 fi; \
3656 echo "$${sfx};$${multi_dir}"; \
3657 done; \
3658 else \
3659 echo ";"; \
3660 fi > tmp-fixinc_list
3661 $(SHELL) $(srcdir)/../move-if-change tmp-fixinc_list fixinc_list
3662 $(STAMP) s-fixinc_list
3663
3664 # The line below is supposed to avoid accidentally matching the
3665 # built-in suffix rule `.o:' to build fixincl out of fixincl.o. You'd
3666 # expect fixincl to be newer than fixincl.o, such that this situation
3667 # would never come up. As it turns out, if you use ccache with
3668 # CCACHE_HARDLINK enabled, the compiler doesn't embed the current
3669 # working directory in object files (-g absent, or -fno-working-dir
3670 # present), and build and host are the same, fixincl for the host will
3671 # build after fixincl for the build machine, getting a cache hit,
3672 # thereby updating the timestamp of fixincl.o in the host tree.
3673 # Because of CCACHE_HARDLINK, this will also update the timestamp in
3674 # the build tree, and so fixincl in the build tree will appear to be
3675 # out of date. Yuck.
3676 ../$(build_subdir)/fixincludes/fixincl: ; @ :
3677
3678 # Build fixed copies of system files.
3679 # Abort if no system headers available, unless building a crosscompiler.
3680 # FIXME: abort unless building --without-headers would be more accurate and less ugly
3681 stmp-fixinc: gsyslimits.h macro_list fixinc_list \
3682 $(build_objdir)/fixincludes/fixincl \
3683 $(build_objdir)/fixincludes/fixinc.sh
3684 rm -rf include-fixed; mkdir include-fixed
3685 -chmod a+rx include-fixed
3686 if [ -d ../prev-gcc ]; then \
3687 cd ../prev-gcc && \
3688 $(MAKE) real-$(INSTALL_HEADERS_DIR) DESTDIR=`pwd`/../gcc/ \
3689 libsubdir=. ; \
3690 else \
3691 set -e; for ml in `cat fixinc_list`; do \
3692 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
3693 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3694 fix_dir=include-fixed$${multi_dir}; \
3695 if ! $(inhibit_libc) && test ! -d ${SYSTEM_HEADER_DIR}; then \
3696 echo The directory that should contain system headers does not exist: >&2 ; \
3697 echo " ${SYSTEM_HEADER_DIR}" >&2 ; \
3698 tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
3699 if test "x${SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \
3700 then sleep 1; else exit 1; fi; \
3701 fi; \
3702 $(mkinstalldirs) $${fix_dir}; \
3703 chmod a+rx $${fix_dir} || true; \
3704 (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \
3705 SHELL='$(SHELL)'; MACRO_LIST=`${PWD_COMMAND}`/macro_list ; \
3706 export TARGET_MACHINE srcdir SHELL MACRO_LIST && \
3707 cd $(build_objdir)/fixincludes && \
3708 $(SHELL) ./fixinc.sh ../../gcc/$${fix_dir} \
3709 $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS) ); \
3710 rm -f $${fix_dir}/syslimits.h; \
3711 if [ -f $${fix_dir}/limits.h ]; then \
3712 mv $${fix_dir}/limits.h $${fix_dir}/syslimits.h; \
3713 else \
3714 cp $(srcdir)/gsyslimits.h $${fix_dir}/syslimits.h; \
3715 fi; \
3716 chmod a+r $${fix_dir}/syslimits.h; \
3717 done; \
3718 fi
3719 $(STAMP) stmp-fixinc
3720 #\f
3721 # Remake the info files.
3722
3723 doc: $(BUILD_INFO) $(GENERATED_MANPAGES) gccbug
3724
3725 INFOFILES = doc/cpp.info doc/gcc.info doc/gccint.info \
3726 doc/gccinstall.info doc/cppinternals.info
3727
3728 info: $(INFOFILES) lang.info @GENINSRC@ srcinfo lang.srcinfo
3729
3730 srcinfo: $(INFOFILES)
3731 -cp -p $^ $(srcdir)/doc
3732
3733 TEXI_CPP_FILES = cpp.texi fdl.texi cppenv.texi cppopts.texi \
3734 gcc-common.texi gcc-vers.texi
3735
3736 TEXI_GCC_FILES = gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \
3737 standards.texi invoke.texi extend.texi md.texi objc.texi \
3738 gcov.texi trouble.texi bugreport.texi service.texi \
3739 contribute.texi compat.texi funding.texi gnu.texi gpl_v3.texi \
3740 fdl.texi contrib.texi cppenv.texi cppopts.texi \
3741 implement-c.texi arm-neon-intrinsics.texi
3742
3743 TEXI_GCCINT_FILES = gccint.texi gcc-common.texi gcc-vers.texi \
3744 contribute.texi makefile.texi configterms.texi options.texi \
3745 portability.texi interface.texi passes.texi c-tree.texi \
3746 rtl.texi md.texi tm.texi hostconfig.texi fragments.texi \
3747 configfiles.texi collect2.texi headerdirs.texi funding.texi \
3748 gnu.texi gpl_v3.texi fdl.texi contrib.texi languages.texi \
3749 sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \
3750 loop.texi generic.texi gimple.texi plugins.texi
3751
3752 TEXI_GCCINSTALL_FILES = install.texi install-old.texi fdl.texi \
3753 gcc-common.texi gcc-vers.texi
3754
3755 TEXI_CPPINT_FILES = cppinternals.texi gcc-common.texi gcc-vers.texi
3756
3757 # gcc-vers.texi is generated from the version files.
3758 gcc-vers.texi: $(BASEVER) $(DEVPHASE)
3759 (echo "@set version-GCC $(BASEVER_c)"; \
3760 if [ "$(DEVPHASE_c)" = "experimental" ]; \
3761 then echo "@set DEVELOPMENT"; \
3762 else echo "@clear DEVELOPMENT"; \
3763 fi) > $@T
3764 $(build_file_translate) echo @set srcdir $(abs_srcdir) >> $@T
3765 if [ -n "$(PKGVERSION)" ]; then \
3766 echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \
3767 fi
3768 echo "@set BUGURL $(BUGURL_TEXI)" >> $@T; \
3769 mv -f $@T $@
3770
3771
3772 # The *.1, *.7, *.info, *.dvi, and *.pdf files are being generated from implicit
3773 # patterns. To use them, put each of the specific targets with its
3774 # specific dependencies but no build commands.
3775
3776 doc/cpp.info: $(TEXI_CPP_FILES)
3777 doc/gcc.info: $(TEXI_GCC_FILES)
3778 doc/gccint.info: $(TEXI_GCCINT_FILES)
3779 doc/cppinternals.info: $(TEXI_CPPINT_FILES)
3780
3781 doc/%.info: %.texi
3782 if [ x$(BUILD_INFO) = xinfo ]; then \
3783 $(MAKEINFO) $(MAKEINFOFLAGS) -I . -I $(gcc_docdir) \
3784 -I $(gcc_docdir)/include -o $@ $<; \
3785 fi
3786
3787 # Duplicate entry to handle renaming of gccinstall.info
3788 doc/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
3789 if [ x$(BUILD_INFO) = xinfo ]; then \
3790 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \
3791 -I $(gcc_docdir)/include -o $@ $<; \
3792 fi
3793
3794 doc/cpp.dvi: $(TEXI_CPP_FILES)
3795 doc/gcc.dvi: $(TEXI_GCC_FILES)
3796 doc/gccint.dvi: $(TEXI_GCCINT_FILES)
3797 doc/cppinternals.dvi: $(TEXI_CPPINT_FILES)
3798
3799 doc/cpp.pdf: $(TEXI_CPP_FILES)
3800 doc/gcc.pdf: $(TEXI_GCC_FILES)
3801 doc/gccint.pdf: $(TEXI_GCCINT_FILES)
3802 doc/cppinternals.pdf: $(TEXI_CPPINT_FILES)
3803
3804 $(build_htmldir)/cpp/index.html: $(TEXI_CPP_FILES)
3805 $(build_htmldir)/gcc/index.html: $(TEXI_GCC_FILES)
3806 $(build_htmldir)/gccint/index.html: $(TEXI_GCCINT_FILES)
3807 $(build_htmldir)/cppinternals/index.html: $(TEXI_CPPINT_FILES)
3808
3809 dvi:: doc/gcc.dvi doc/gccint.dvi doc/gccinstall.dvi doc/cpp.dvi \
3810 doc/cppinternals.dvi lang.dvi
3811
3812 doc/%.dvi: %.texi
3813 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3814
3815 # Duplicate entry to handle renaming of gccinstall.dvi
3816 doc/gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
3817 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3818
3819 PDFFILES = doc/gcc.pdf doc/gccint.pdf doc/gccinstall.pdf doc/cpp.pdf \
3820 doc/cppinternals.pdf
3821
3822 pdf:: $(PDFFILES) lang.pdf
3823
3824 doc/%.pdf: %.texi
3825 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3826
3827 # Duplicate entry to handle renaming of gccinstall.pdf
3828 doc/gccinstall.pdf: $(TEXI_GCCINSTALL_FILES)
3829 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3830
3831 # List the directories or single hmtl files which are installed by
3832 # install-html. The lang.html file triggers language fragments to build
3833 # html documentation. Installing language fragment documentation is not
3834 # yet supported.
3835 HTMLS_INSTALL=$(build_htmldir)/cpp $(build_htmldir)/gcc \
3836 $(build_htmldir)/gccinstall $(build_htmldir)/gccint \
3837 $(build_htmldir)/cppinternals
3838
3839 # List the html file targets.
3840 HTMLS_BUILD=$(build_htmldir)/cpp/index.html $(build_htmldir)/gcc/index.html \
3841 $(build_htmldir)/gccinstall/index.html $(build_htmldir)/gccint/index.html \
3842 $(build_htmldir)/cppinternals/index.html lang.html
3843
3844 html:: $(HTMLS_BUILD)
3845
3846 $(build_htmldir)/%/index.html: %.texi
3847 $(mkinstalldirs) $(@D)
3848 rm -f $(@D)/*
3849 $(TEXI2HTML) -I $(abs_docdir) -I $(abs_docdir)/include -o $(@D) $<
3850
3851 # Duplicate entry to handle renaming of gccinstall
3852 $(build_htmldir)/gccinstall/index.html: $(TEXI_GCCINSTALL_FILES)
3853 $(mkinstalldirs) $(@D)
3854 echo rm -f $(@D)/*
3855 SOURCEDIR=$(abs_docdir) \
3856 DESTDIR=$(@D) \
3857 $(SHELL) $(srcdir)/doc/install.texi2html
3858
3859 MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 doc/gfdl.7 doc/gpl.7 doc/fsf-funding.7
3860
3861 generated-manpages: man
3862
3863 man: $(MANFILES) lang.man @GENINSRC@ srcman lang.srcman
3864
3865 srcman: $(MANFILES)
3866 -cp -p $^ $(srcdir)/doc
3867
3868 doc/%.1: %.pod
3869 $(STAMP) $@
3870 -($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
3871 mv -f $(@).T$$$$ $@) || \
3872 (rm -f $(@).T$$$$ && exit 1)
3873
3874 doc/%.7: %.pod
3875 $(STAMP) $@
3876 -($(POD2MAN) --section=7 $< > $(@).T$$$$ && \
3877 mv -f $(@).T$$$$ $@) || \
3878 (rm -f $(@).T$$$$ && exit 1)
3879
3880 %.pod: %.texi
3881 $(STAMP) $@
3882 -$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" $< > $@
3883
3884 .INTERMEDIATE: cpp.pod gcc.pod gfdl.pod fsf-funding.pod
3885 cpp.pod: cpp.texi cppenv.texi cppopts.texi
3886
3887 # These next rules exist because the output name is not the same as
3888 # the input name, so our implicit %.pod rule will not work.
3889
3890 gcc.pod: invoke.texi cppenv.texi cppopts.texi
3891 $(STAMP) $@
3892 -$(TEXI2POD) $< > $@
3893 gfdl.pod: fdl.texi
3894 $(STAMP) $@
3895 -$(TEXI2POD) $< > $@
3896 fsf-funding.pod: funding.texi
3897 $(STAMP) $@
3898 -$(TEXI2POD) $< > $@
3899 gpl.pod: gpl_v3.texi
3900 $(STAMP) $@
3901 -$(TEXI2POD) $< > $@
3902
3903 #\f
3904 # Deletion of files made during compilation.
3905 # There are four levels of this:
3906 # `mostlyclean', `clean', `distclean' and `maintainer-clean'.
3907 # `mostlyclean' is useful while working on a particular type of machine.
3908 # It deletes most, but not all, of the files made by compilation.
3909 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
3910 # `clean' deletes everything made by running `make all'.
3911 # `distclean' also deletes the files made by config.
3912 # `maintainer-clean' also deletes everything that could be regenerated
3913 # automatically, except for `configure'.
3914 # We remove as much from the language subdirectories as we can
3915 # (less duplicated code).
3916
3917 mostlyclean: lang.mostlyclean
3918 -rm -f $(MOSTLYCLEANFILES)
3919 -rm -f *$(objext)
3920 -rm -f *$(coverageexts)
3921 # Delete build programs
3922 -rm -f build/*
3923 -rm -f mddeps.mk
3924 # Delete other built files.
3925 -rm -f specs.h options.c options.h
3926 # Delete the stamp and temporary files.
3927 -rm -f s-* tmp-* stamp-* stmp-*
3928 -rm -f */stamp-* */tmp-*
3929 # Delete debugging dump files.
3930 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
3931 # Delete some files made during installation.
3932 -rm -f specs $(SPECS)
3933 -rm -f collect collect2 mips-tfile mips-tdump
3934 # Delete unwanted output files from TeX.
3935 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
3936 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
3937 # Delete sorted indices we don't actually use.
3938 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
3939 # Delete core dumps.
3940 -rm -f core */core
3941 # Delete file generated for gengtype
3942 -rm -f gtyp-input.list
3943 # Delete files generated by gengtype.c
3944 -rm -f gtype-*
3945 -rm -f gt-*
3946 # Delete genchecksum outputs
3947 -rm -f *-checksum.c
3948
3949 # Delete all files made by compilation
3950 # that don't exist in the distribution.
3951 clean: mostlyclean lang.clean
3952 -rm -f libgcc.a libgcc_eh.a libgcov.a
3953 -rm -f libgcc_s*
3954 -rm -f libunwind*
3955 -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h
3956 -rm -f options.c options.h optionlist
3957 -rm -f cs-*
3958 -rm -f doc/*.dvi
3959 -rm -f doc/*.pdf
3960 # Delete the include directories.
3961 -rm -rf include include-fixed
3962 # Delete files used by the "multilib" facility (including libgcc subdirs).
3963 -rm -f multilib.h tmpmultilib*
3964 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
3965 rm -rf $(MULTILIB_DIRNAMES); \
3966 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
3967 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
3968 fi ; fi
3969
3970 # Delete all files that users would normally create
3971 # while building and installing GCC.
3972 distclean: clean lang.distclean
3973 -rm -f auto-host.h auto-build.h
3974 -rm -f cstamp-h
3975 -rm -f config.status config.run config.cache config.bak
3976 -rm -f Make-lang Make-hooks Make-host Make-target
3977 -rm -f Makefile *.oaux
3978 -rm -f gthr-default.h
3979 -rm -f TAGS */TAGS
3980 -rm -f *.asm
3981 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
3982 -rm -f testsuite/*.log testsuite/*.sum
3983 -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c
3984 -cd testsuite && rm -f *.out *.gcov *$(coverageexts)
3985 -rm -rf ${QMTEST_DIR} stamp-qmtest
3986 -rm -f cxxmain.c
3987 -rm -f gccbug .gdbinit configargs.h
3988 -rm -f gcov.pod
3989 # Delete po/*.gmo only if we are not building in the source directory.
3990 -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
3991 -rmdir ada cp f java objc intl po testsuite 2>/dev/null
3992
3993 # Get rid of every file that's generated from some other file, except for `configure'.
3994 # Most of these files ARE PRESENT in the GCC distribution.
3995 maintainer-clean:
3996 @echo 'This command is intended for maintainers to use; it'
3997 @echo 'deletes files that may need special tools to rebuild.'
3998 $(MAKE) lang.maintainer-clean distclean
3999 -rm -f cpp.??s cpp.*aux
4000 -rm -f gcc.??s gcc.*aux
4001 -rm -f $(gcc_docdir)/*.info $(gcc_docdir)/*.1 $(gcc_docdir)/*.7 $(gcc_docdir)/*.dvi $(gcc_docdir)/*.pdf
4002 #\f
4003 # Entry points `install' and `uninstall'.
4004 # Also use `install-collect2' to install collect2 when the config files don't.
4005
4006 # Copy the compiler files into directories where they will be run.
4007 # Install the driver last so that the window when things are
4008 # broken is small.
4009 install: install-common $(INSTALL_HEADERS) \
4010 install-cpp install-man install-info install-@POSUB@ \
4011 install-driver
4012
4013 ifeq ($(enable_plugin),yes)
4014 install: install-plugin
4015 endif
4016
4017 # Handle cpp installation.
4018 install-cpp: installdirs cpp$(exeext)
4019 -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
4020 -$(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
4021 -if [ x$(cpp_install_dir) != x ]; then \
4022 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
4023 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
4024 else true; fi
4025
4026 # Create the installation directories.
4027 # $(libdir)/gcc/include isn't currently searched by cpp.
4028 installdirs:
4029 $(mkinstalldirs) $(DESTDIR)$(libsubdir)
4030 $(mkinstalldirs) $(DESTDIR)$(libexecsubdir)
4031 $(mkinstalldirs) $(DESTDIR)$(bindir)
4032 $(mkinstalldirs) $(DESTDIR)$(includedir)
4033 $(mkinstalldirs) $(DESTDIR)$(infodir)
4034 $(mkinstalldirs) $(DESTDIR)$(slibdir)
4035 $(mkinstalldirs) $(DESTDIR)$(man1dir)
4036 $(mkinstalldirs) $(DESTDIR)$(man7dir)
4037
4038 PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
4039 $(TOPLEV_H) $(BASIC_BLOCK_H) $(GIMPLE_H) $(TREE_PASS_H) $(GCC_PLUGIN_H) \
4040 intl.h $(PLUGIN_VERSION_H)
4041
4042 # Install the headers needed to build a plugin.
4043 install-plugin: installdirs
4044 # We keep the directory structure for files in config and .def files. All
4045 # other files are flattened to a single directory.
4046 $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
4047 headers=`echo $(PLUGIN_HEADERS) | tr ' ' '\n' | sort -u`; \
4048 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
4049 for file in $$headers; do \
4050 if [ -f $$file ] ; then \
4051 path=$$file; \
4052 elif [ -f $(srcdir)/$$file ]; then \
4053 path=$(srcdir)/$$file; \
4054 else continue; \
4055 fi; \
4056 case $$path in \
4057 "$(srcdir)"/config/* | "$(srcdir)"/*.def ) \
4058 base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
4059 *) base=`basename $$path` ;; \
4060 esac; \
4061 dest=$(plugin_includedir)/$$base; \
4062 echo $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \
4063 dir=`dirname $$dest`; \
4064 $(mkinstalldirs) $$dir; \
4065 $(INSTALL_DATA) $$path $(DESTDIR)/$$dest; \
4066 done
4067
4068 # Install the compiler executables built during cross compilation.
4069 install-common: native lang.install-common installdirs
4070 for file in $(COMPILERS); do \
4071 if [ -f $$file ] ; then \
4072 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
4073 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
4074 else true; \
4075 fi; \
4076 done
4077 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(COLLECT2) ..; do \
4078 if [ x"$$file" != x.. ]; then \
4079 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
4080 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
4081 else true; fi; \
4082 done
4083 # We no longer install the specs file because its presence makes the
4084 # driver slower, and because people who need it can recreate it by
4085 # using -dumpspecs. We remove any old version because it would
4086 # otherwise override the specs built into the driver.
4087 rm -f $(DESTDIR)$(libsubdir)/specs
4088 # Install gcov if it was compiled.
4089 -if [ -f gcov$(exeext) ]; \
4090 then \
4091 rm -f $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
4092 $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
4093 fi
4094 $(INSTALL_SCRIPT) gccbug $(DESTDIR)$(bindir)/$(GCCBUG_INSTALL_NAME)
4095
4096 # Install the driver program as $(target_noncanonical)-gcc,
4097 # $(target_noncanonical)-gcc-$(version)
4098 # and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
4099 install-driver: installdirs xgcc$(exeext)
4100 -rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
4101 -$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
4102 -rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-$(version)$(exeext)
4103 -( cd $(DESTDIR)$(bindir) && \
4104 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-$(version)$(exeext) )
4105 -if [ -f gcc-cross$(exeext) ] ; then \
4106 if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
4107 rm -f $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
4108 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gcc$(exeext); \
4109 else true; fi; \
4110 else \
4111 rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-tmp$(exeext); \
4112 ( cd $(DESTDIR)$(bindir) && \
4113 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-tmp$(exeext) && \
4114 mv -f $(target_noncanonical)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
4115 fi
4116
4117 # Install the info files.
4118 # $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
4119 # to do the install.
4120 install-info:: doc installdirs \
4121 $(DESTDIR)$(infodir)/cpp.info \
4122 $(DESTDIR)$(infodir)/gcc.info \
4123 $(DESTDIR)$(infodir)/cppinternals.info \
4124 $(DESTDIR)$(infodir)/gccinstall.info \
4125 $(DESTDIR)$(infodir)/gccint.info \
4126 lang.install-info
4127
4128 $(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
4129 rm -f $@
4130 if [ -f $< ]; then \
4131 for f in $(<)*; do \
4132 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
4133 $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
4134 chmod a-x $(DESTDIR)$(infodir)/$$realfile; \
4135 done; \
4136 else true; fi
4137 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
4138 if [ -f $@ ]; then \
4139 install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \
4140 else true; fi; \
4141 else true; fi;
4142
4143 pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
4144
4145 install-pdf: $(PDFFILES) lang.install-pdf
4146 @$(NORMAL_INSTALL)
4147 test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
4148 @list='$(PDFFILES)'; for p in $$list; do \
4149 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
4150 f=$(pdf__strip_dir) \
4151 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
4152 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
4153 done
4154
4155 html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
4156
4157 install-html: $(HTMLS_BUILD)
4158 @$(NORMAL_INSTALL)
4159 test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
4160 @list='$(HTMLS_INSTALL)'; for p in $$list; do \
4161 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
4162 f=$(html__strip_dir) \
4163 if test -d "$$d$$p"; then \
4164 echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
4165 $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
4166 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
4167 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
4168 else \
4169 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
4170 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
4171 fi; \
4172 done
4173
4174 # Install the man pages.
4175 install-man: lang.install-man \
4176 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
4177 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
4178 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
4179 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \
4180 $(DESTDIR)$(man7dir)/gfdl$(man7ext) \
4181 $(DESTDIR)$(man7dir)/gpl$(man7ext)
4182
4183 $(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs
4184 -rm -f $@
4185 -$(INSTALL_DATA) $< $@
4186 -chmod a-x $@
4187
4188 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs
4189 -rm -f $@
4190 -$(INSTALL_DATA) $< $@
4191 -chmod a-x $@
4192
4193 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs
4194 -rm -f $@
4195 -$(INSTALL_DATA) $< $@
4196 -chmod a-x $@
4197
4198 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs
4199 -rm -f $@
4200 -$(INSTALL_DATA) $< $@
4201 -chmod a-x $@
4202
4203 # Install all the header files built in the include subdirectory.
4204 install-headers: $(INSTALL_HEADERS_DIR)
4205 # Fix symlinks to absolute paths in the installed include directory to
4206 # point to the installed directory, not the build directory.
4207 # Don't need to use LN_S here since we really do need ln -s and no substitutes.
4208 -files=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \
4209 if [ $$? -eq 0 ]; then \
4210 dir=`cd include-fixed; ${PWD_COMMAND}`; \
4211 for i in $$files; do \
4212 dest=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \
4213 if expr "$$dest" : "$$dir.*" > /dev/null; then \
4214 rm -f $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
4215 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
4216 fi; \
4217 done; \
4218 fi
4219
4220 # Create or recreate the gcc private include file directory.
4221 install-include-dir: installdirs
4222 $(mkinstalldirs) $(DESTDIR)$(libsubdir)/include
4223 -rm -rf $(DESTDIR)$(libsubdir)/include-fixed
4224 mkdir $(DESTDIR)$(libsubdir)/include-fixed
4225 -chmod a+rx $(DESTDIR)$(libsubdir)/include-fixed
4226
4227 # Create or recreate the install-tools include file directory.
4228 itoolsdir = $(libexecsubdir)/install-tools
4229 itoolsdatadir = $(libsubdir)/install-tools
4230 install-itoolsdirs: installdirs
4231 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include
4232 $(mkinstalldirs) $(DESTDIR)$(itoolsdir)
4233
4234 # Install the include directory using tar.
4235 install-headers-tar: stmp-int-hdrs install-include-dir
4236 # We use `pwd`/include instead of just include to problems with CDPATH
4237 # Unless a full pathname is provided, some shells would print the new CWD,
4238 # found in CDPATH, corrupting the output. We could just redirect the
4239 # output of `cd', but some shells lose on redirection within `()'s
4240 (cd `${PWD_COMMAND}`/include ; \
4241 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
4242 (cd `${PWD_COMMAND}`/include-fixed ; \
4243 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
4244 # /bin/sh on some systems returns the status of the first tar,
4245 # and that can lose with GNU tar which always writes a full block.
4246 # So use `exit 0' to ignore its exit status.
4247
4248 # Install the include directory using cpio.
4249 install-headers-cpio: stmp-int-hdrs install-include-dir
4250 # See discussion about the use of `pwd` above
4251 cd `${PWD_COMMAND}`/include ; \
4252 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
4253 cd `${PWD_COMMAND}`/include-fixed ; \
4254 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
4255
4256 # Install the include directory using cp.
4257 install-headers-cp: stmp-int-hdrs install-include-dir
4258 cp -p -r include $(DESTDIR)$(libsubdir)
4259 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
4260
4261 # Targets without dependencies, for use in prev-gcc during bootstrap.
4262 real-install-headers-tar:
4263 (cd `${PWD_COMMAND}`/include-fixed ; \
4264 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
4265
4266 real-install-headers-cpio:
4267 cd `${PWD_COMMAND}`/include-fixed ; \
4268 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
4269
4270 real-install-headers-cp:
4271 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
4272
4273 # Install supporting files for fixincludes to be run later.
4274 install-mkheaders: stmp-int-hdrs install-itoolsdirs \
4275 macro_list fixinc_list
4276 $(INSTALL_DATA) $(srcdir)/gsyslimits.h \
4277 $(DESTDIR)$(itoolsdatadir)/gsyslimits.h
4278 $(INSTALL_DATA) macro_list $(DESTDIR)$(itoolsdatadir)/macro_list
4279 $(INSTALL_DATA) fixinc_list $(DESTDIR)$(itoolsdatadir)/fixinc_list
4280 set -e; for ml in `cat fixinc_list`; do \
4281 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
4282 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \
4283 $(INSTALL_DATA) include-fixed$${multidir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \
4284 done
4285 $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \
4286 $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \
4287 sysroot_headers_suffix='$${sysroot_headers_suffix}'; \
4288 echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
4289 > $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4290 echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
4291 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4292 echo 'STMP_FIXINC="$(STMP_FIXINC)"' \
4293 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
4294
4295 # Use this target to install the program `collect2' under the name `collect2'.
4296 install-collect2: collect2 installdirs
4297 $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libexecsubdir)/collect2$(exeext)
4298 # Install the driver program as $(libsubdir)/gcc for collect2.
4299 $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libexecsubdir)/gcc$(exeext)
4300
4301 # Cancel installation by deleting the installed files.
4302 uninstall: lang.uninstall
4303 -rm -rf $(DESTDIR)$(libsubdir)
4304 -rm -rf $(DESTDIR)$(libexecsubdir)
4305 -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
4306 -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
4307 -if [ x$(cpp_install_dir) != x ]; then \
4308 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
4309 else true; fi
4310 -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
4311 -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
4312 -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
4313 -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
4314 -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
4315 #\f
4316 # These targets are for the dejagnu testsuites. The file site.exp
4317 # contains global variables that all the testsuites will use.
4318
4319 target_subdir = @target_subdir@
4320
4321 site.exp: ./config.status Makefile
4322 @echo "Making a new config file..."
4323 -@rm -f ./tmp?
4324 @$(STAMP) site.exp
4325 -@mv site.exp site.bak
4326 @echo "## these variables are automatically generated by make ##" > ./tmp0
4327 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
4328 @echo "# add them to the last section" >> ./tmp0
4329 @echo "set rootme \"`${PWD_COMMAND}`\"" >> ./tmp0
4330 @echo "set srcdir \"`cd ${srcdir}; ${PWD_COMMAND}`\"" >> ./tmp0
4331 @echo "set host_triplet $(host)" >> ./tmp0
4332 @echo "set build_triplet $(build)" >> ./tmp0
4333 @echo "set target_triplet $(target)" >> ./tmp0
4334 @echo "set target_alias $(target_noncanonical)" >> ./tmp0
4335 @echo "set libiconv \"$(LIBICONV)\"" >> ./tmp0
4336 # CFLAGS is set even though it's empty to show we reserve the right to set it.
4337 @echo "set CFLAGS \"\"" >> ./tmp0
4338 @echo "set CXXFLAGS \"\"" >> ./tmp0
4339 @echo "set HOSTCC \"$(CC)\"" >> ./tmp0
4340 @echo "set HOSTCFLAGS \"$(CFLAGS)\"" >> ./tmp0
4341 # When running the tests we set GCC_EXEC_PREFIX to the install tree so that
4342 # files that have already been installed there will be found. The -B option
4343 # overrides it, so use of GCC_EXEC_PREFIX will not result in using GCC files
4344 # from the install tree.
4345 @echo "set TEST_GCC_EXEC_PREFIX \"$(libdir)/gcc/\"" >> ./tmp0
4346 @echo "set TESTING_IN_BUILD_TREE 1" >> ./tmp0
4347 @echo "set HAVE_LIBSTDCXX_V3 1" >> ./tmp0
4348 @if test "@enable_plugin@" = "yes" ; then \
4349 echo "set ENABLE_PLUGIN 1" >> ./tmp0; \
4350 echo "set GMPINC \"$(GMPINC)\"" >> ./tmp0; \
4351 fi
4352 # If newlib has been configured, we need to pass -B to gcc so it can find
4353 # newlib's crt0.o if it exists. This will cause a "path prefix not used"
4354 # message if it doesn't, but the testsuite is supposed to ignore the message -
4355 # it's too difficult to tell when to and when not to pass -B (not all targets
4356 # have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
4357 # seems like too selective a test.
4358 # ??? Another way to solve this might be to rely on linker scripts. Then
4359 # theoretically the -B won't be needed.
4360 # We also need to pass -L ../ld so that the linker can find ldscripts.
4361 @if [ -d $(objdir)/../$(target_subdir)/newlib ] \
4362 && [ "${host}" != "${target}" ]; then \
4363 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)/newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
4364 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)/newlib/\"" >> ./tmp0; \
4365 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
4366 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
4367 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
4368 else true; \
4369 fi
4370 @if [ -d $(objdir)/../ld ] ; then \
4371 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
4372 else true; \
4373 fi
4374 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
4375 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
4376 @if [ "X$(ALT_CC_UNDER_TEST)" != "X" ] ; then \
4377 echo "set ALT_CC_UNDER_TEST \"$(ALT_CC_UNDER_TEST)\"" >> ./tmp0; \
4378 else true; \
4379 fi
4380 @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
4381 echo "set ALT_CXX_UNDER_TEST \"$(ALT_CXX_UNDER_TEST)\"" >> ./tmp0; \
4382 else true; \
4383 fi
4384 @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
4385 echo "set COMPAT_OPTIONS \"$(COMPAT_OPTIONS)\"" >> ./tmp0; \
4386 else true; \
4387 fi
4388 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
4389 @cat ./tmp0 > site.exp
4390 @cat site.bak | sed \
4391 -e '1,/^## All variables above are.*##/ d' >> site.exp
4392 -@rm -f ./tmp?
4393
4394 CHECK_TARGETS = check-gcc @check_languages@
4395
4396 check: $(CHECK_TARGETS)
4397
4398 check-subtargets: $(patsubst %,%-subtargets,$(CHECK_TARGETS))
4399
4400 # The idea is to parallelize testing of multilibs, for example:
4401 # make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
4402 # will run 3 concurrent sessions of check-gcc, eventually testing
4403 # all 10 combinations. GNU make is required, as is a shell that expands
4404 # alternations within braces.
4405 lang_checks_parallel = $(lang_checks:=//%)
4406 $(lang_checks_parallel): site.exp
4407 target=`echo "$@" | sed 's,//.*,,'`; \
4408 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
4409 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
4410 $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
4411 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
4412 "$$target"
4413
4414 TESTSUITEDIR = testsuite
4415
4416 $(TESTSUITEDIR)/site.exp: site.exp
4417 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4418 -rm -f $@
4419 sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
4420
4421 # This is only used for check-% targets that aren't parallelized.
4422 $(filter-out $(lang_checks_parallelized),$(lang_checks)): check-% : site.exp
4423 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4424 test -d $(TESTSUITEDIR)/$* || mkdir $(TESTSUITEDIR)/$*
4425 -(rootme=`${PWD_COMMAND}`; export rootme; \
4426 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
4427 cd $(TESTSUITEDIR)/$*; \
4428 rm -f tmp-site.exp; \
4429 sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)/$*|' \
4430 < ../../site.exp > tmp-site.exp; \
4431 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
4432 EXPECT=${EXPECT} ; export EXPECT ; \
4433 if [ -f $${rootme}/../expect/expect ] ; then \
4434 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
4435 export TCL_LIBRARY ; fi ; \
4436 $(RUNTEST) --tool $* $(RUNTESTFLAGS))
4437
4438 $(patsubst %,%-subtargets,$(filter-out $(lang_checks_parallelized),$(lang_checks))): check-%-subtargets:
4439 @echo check-$*
4440
4441 check_p_tool=$(firstword $(subst _, ,$*))
4442 check_p_vars=$(check_$(check_p_tool)_parallelize)
4443 check_p_subno=$(word 2,$(subst _, ,$*))
4444 check_p_comma=,
4445 check_p_subwork=$(subst $(check_p_comma), ,$(if $(check_p_subno),$(word $(check_p_subno),$(check_p_vars))))
4446 check_p_numbers=1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
4447 check_p_subdir=$(subst _,,$*)
4448 check_p_subdirs=$(wordlist 1,$(words $(check_$*_parallelize)),$(check_p_numbers))
4449
4450 # For parallelized check-% targets, this decides whether parallelization
4451 # is desirable (if -jN is used and RUNTESTFLAGS doesn't contain anything
4452 # but optionally --target_board argument). If it is desirable,
4453 # recursive make is run with check-parallel-$lang{,1,2,3,4,5} etc. goals,
4454 # which can be executed in parallel, as they are run in separate directories.
4455 # check-parallel-$lang{1,2,3,4,5} etc. goals invoke runtest with the longest
4456 # running *.exp files from the testsuite, as determined by check_$lang_parallelize
4457 # variable. The check-parallel-$lang goal in that case invokes runtest with
4458 # all the remaining *.exp files not handled by the separate goals.
4459 # Afterwards contrib/dg-extract-results.sh is used to merge the sum and log
4460 # files. If parallelization isn't desirable, only one recursive make
4461 # is run with check-parallel-$lang goal and check_$lang_parallelize variable
4462 # cleared to say that no additional arguments beyond $(RUNTESTFLAGS)
4463 # should be passed to runtest.
4464 #
4465 # To parallelize some language check, add the corresponding check-$lang
4466 # to lang_checks_parallelized variable and define check_$lang_parallelize
4467 # variable (see above check_gcc_parallelize description).
4468 $(lang_checks_parallelized): check-% : site.exp
4469 @if [ -z "$(filter-out --target_board=%, $(RUNTESTFLAGS))" ] \
4470 && [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
4471 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
4472 check-parallel-$* \
4473 $(patsubst %,check-parallel-$*_%, $(check_p_subdirs)); \
4474 for file in $(TESTSUITEDIR)/$*/$* \
4475 $(patsubst %,$(TESTSUITEDIR)/$*%/$*,$(check_p_subdirs));\
4476 do \
4477 mv -f $$file.sum $$file.sum.sep; mv -f $$file.log $$file.log.sep; \
4478 done; \
4479 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh \
4480 $(TESTSUITEDIR)/$*/$*.sum.sep \
4481 $(patsubst %,$(TESTSUITEDIR)/$*%/$*.sum.sep,$(check_p_subdirs)) \
4482 > $(TESTSUITEDIR)/$*/$*.sum; \
4483 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh -L \
4484 $(TESTSUITEDIR)/$*/$*.log.sep \
4485 $(patsubst %,$(TESTSUITEDIR)/$*%/$*.log.sep,$(check_p_subdirs)) \
4486 > $(TESTSUITEDIR)/$*/$*.log; \
4487 else \
4488 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
4489 check_$*_parallelize= check-parallel-$*; \
4490 fi
4491
4492 # Just print the parallelized subtargets for those that want to split
4493 # the testing across machines.
4494 $(patsubst %,%-subtargets,$(lang_checks_parallelized)): check-%-subtargets:
4495 @echo check-parallel-$* \
4496 $(patsubst %,check-parallel-$*_%, $(check_p_subdirs))
4497
4498 # In the if [ -n "$(check_p_subno)" ] case runtest should be given the name of
4499 # the given *.exp file(s). See comment above check_gcc_parallelize variable
4500 # for details on the content of these variables.
4501 #
4502 # In the elif [ -n "$(check_p_vars)" ] case runtest should be given
4503 # names of all the *.exp files for this tool that aren't already handled by
4504 # other goals. First it finds all the *.exp files for this tool, then
4505 # prunes those already specified in check_$lang_parallelize or duplicates.
4506 #
4507 # Otherwise check-$lang isn't parallelized and runtest is invoked just with
4508 # the $(RUNTESTFLAGS) arguments.
4509 check-parallel-% : site.exp
4510 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
4511 test -d $(TESTSUITEDIR)/$(check_p_subdir) || mkdir $(TESTSUITEDIR)/$(check_p_subdir)
4512 -(rootme=`${PWD_COMMAND}`; export rootme; \
4513 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
4514 cd $(TESTSUITEDIR)/$(check_p_subdir); \
4515 rm -f tmp-site.exp; \
4516 sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)/$(check_p_subdir)|' \
4517 < ../../site.exp > tmp-site.exp; \
4518 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
4519 EXPECT=${EXPECT} ; export EXPECT ; \
4520 if [ -f $${rootme}/../expect/expect ] ; then \
4521 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
4522 export TCL_LIBRARY ; fi ; \
4523 runtestflags= ; \
4524 if [ -n "$(check_p_subno)" ] ; then \
4525 runtestflags="$(check_p_subwork)"; \
4526 elif [ -n "$(check_p_vars)" ] ; then \
4527 parts="`echo ' $(strip $(subst $(check_p_comma), ,$(check_p_vars))) ' \
4528 | sed 's/=[^ ]* / /g'`"; \
4529 for part in `find $$srcdir/testsuite/$(check_p_tool)* -name \*.exp` ; do \
4530 part=`basename $$part` ; \
4531 case " $$parts $$runtestflags " in \
4532 *" $$part "*) ;; \
4533 *) runtestflags="$$runtestflags $$part" ;; \
4534 esac ; \
4535 done ; \
4536 fi ; \
4537 $(RUNTEST) --tool $(check_p_tool) $(RUNTESTFLAGS) $$runtestflags)
4538
4539 check-consistency: testsuite/site.exp
4540 -rootme=`${PWD_COMMAND}`; export rootme; \
4541 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
4542 cd testsuite; \
4543 EXPECT=${EXPECT} ; export EXPECT ; \
4544 if [ -f $${rootme}/../expect/expect ] ; then \
4545 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
4546 export TCL_LIBRARY ; fi ; \
4547 $(RUNTEST) --tool consistency $(RUNTESTFLAGS)
4548
4549 # QMTest targets
4550
4551 # The path to qmtest.
4552 QMTEST_PATH=qmtest
4553
4554 # The flags to pass to qmtest.
4555 QMTESTFLAGS=
4556
4557 # The flags to pass to "qmtest run".
4558 QMTESTRUNFLAGS=-f none --result-stream dejagnu_stream.DejaGNUStream
4559
4560 # The command to use to invoke qmtest.
4561 QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
4562
4563 # The tests (or suites) to run.
4564 QMTEST_GPP_TESTS=g++
4565
4566 # The subdirectory of the OBJDIR that will be used to store the QMTest
4567 # test database configuration and that will be used for temporary
4568 # scratch space during QMTest's execution.
4569 QMTEST_DIR=qmtestsuite
4570
4571 # Create the QMTest database configuration.
4572 ${QMTEST_DIR} stamp-qmtest:
4573 ${QMTEST} -D ${QMTEST_DIR} create-tdb \
4574 -c gcc_database.GCCDatabase \
4575 -a srcdir=`cd ${srcdir}/testsuite && ${PWD_COMMAND}` && \
4576 $(STAMP) stamp-qmtest
4577
4578 # Create the QMTest context file.
4579 ${QMTEST_DIR}/context: stamp-qmtest
4580 rm -f $@
4581 echo "CompilerTable.languages=c cplusplus" >> $@
4582 echo "CompilerTable.c_kind=GCC" >> $@
4583 echo "CompilerTable.c_path=${objdir}/xgcc" >> $@
4584 echo "CompilerTable.c_options=-B${objdir}/" >> $@
4585 echo "CompilerTable.cplusplus_kind=GCC" >> $@
4586 echo "CompilerTable.cplusplus_path=${objdir}/g++" >> $@
4587 echo "CompilerTable.cplusplus_options=-B${objdir}/" >> $@
4588 echo "DejaGNUTest.target=${target_noncanonical}" >> $@
4589
4590 # Run the G++ testsuite using QMTest.
4591 qmtest-g++: ${QMTEST_DIR}/context
4592 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
4593 -o g++.qmr ${QMTEST_GPP_TESTS}
4594
4595 # Use the QMTest GUI.
4596 qmtest-gui: ${QMTEST_DIR}/context
4597 cd ${QMTEST_DIR} && ${QMTEST} gui -C context
4598
4599 .PHONY: qmtest-g++
4600
4601 # Run Paranoia on real.c.
4602
4603 paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) \
4604 $(REAL_H) $(TREE_H)
4605 g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION)
4606
4607 paranoia: paranoia.o real.o $(LIBIBERTY)
4608 g++ -o $@ paranoia.o real.o $(LIBIBERTY)
4609
4610 # These exist for maintenance purposes.
4611
4612 # Update the tags table.
4613 TAGS: lang.tags
4614 (cd $(srcdir); \
4615 incs= ; \
4616 list='$(SUBDIRS)'; for dir in $$list; do \
4617 if test -f $$dir/TAGS; then \
4618 incs="$$incs --include $$dir/TAGS.sub"; \
4619 fi; \
4620 done; \
4621 etags -o TAGS.sub *.y *.h *.c; \
4622 etags --include TAGS.sub $$incs)
4623
4624 # -----------------------------------------------------
4625 # Rules for generating translated message descriptions.
4626 # Disabled by autoconf if the tools are not available.
4627 # -----------------------------------------------------
4628
4629 XGETTEXT = @XGETTEXT@
4630 GMSGFMT = @GMSGFMT@
4631 MSGMERGE = msgmerge
4632 CATALOGS = $(patsubst %,po/%,@CATALOGS@)
4633
4634 .PHONY: build- install- build-po install-po update-po
4635
4636 # Dummy rules to deal with dependencies produced by use of
4637 # "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
4638 build-: ; @true
4639 install-: ; @true
4640
4641 build-po: $(CATALOGS)
4642
4643 # This notation should be acceptable to all Make implementations used
4644 # by people who are interested in updating .po files.
4645 update-po: $(CATALOGS:.gmo=.pox)
4646
4647 # N.B. We do not attempt to copy these into $(srcdir). The snapshot
4648 # script does that.
4649 .po.gmo:
4650 $(mkinstalldirs) po
4651 $(GMSGFMT) --statistics -o $@ $<
4652
4653 # The new .po has to be gone over by hand, so we deposit it into
4654 # build/po with a different extension.
4655 # If build/po/gcc.pot exists, use it (it was just created),
4656 # else use the one in srcdir.
4657 .po.pox:
4658 $(mkinstalldirs) po
4659 $(MSGMERGE) $< `if test -f po/gcc.pot; \
4660 then echo po/gcc.pot; \
4661 else echo $(srcdir)/po/gcc.pot; fi` -o $@
4662
4663 # This rule has to look for .gmo modules in both srcdir and
4664 # the cwd, and has to check that we actually have a catalog
4665 # for each language, in case they weren't built or included
4666 # with the distribution.
4667 install-po:
4668 $(mkinstalldirs) $(DESTDIR)$(datadir)
4669 cats="$(CATALOGS)"; for cat in $$cats; do \
4670 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
4671 if [ -f $$cat ]; then :; \
4672 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
4673 else continue; \
4674 fi; \
4675 dir=$(localedir)/$$lang/LC_MESSAGES; \
4676 echo $(mkinstalldirs) $(DESTDIR)$$dir; \
4677 $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
4678 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
4679 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
4680 done
4681
4682 # Rule for regenerating the message template (gcc.pot).
4683 # Instead of forcing everyone to edit POTFILES.in, which proved impractical,
4684 # this rule has no dependencies and always regenerates gcc.pot. This is
4685 # relatively harmless since the .po files do not directly depend on it.
4686 # Note that exgettext has an awk script embedded in it which requires a
4687 # fairly modern (POSIX-compliant) awk.
4688 # The .pot file is left in the build directory.
4689 gcc.pot: po/gcc.pot
4690 po/gcc.pot: force
4691 $(mkinstalldirs) po
4692 $(MAKE) srcextra
4693 AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
4694 $(XGETTEXT) gcc $(srcdir)