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