| # Makefile for GNU Compiler Collection |
| # Run 'configure' to generate Makefile from Makefile.in |
| |
| # Copyright (C) 1987-2013 Free Software Foundation, Inc. |
| |
| #This file is part of GCC. |
| |
| #GCC is free software; you can redistribute it and/or modify |
| #it under the terms of the GNU General Public License as published by |
| #the Free Software Foundation; either version 3, or (at your option) |
| #any later version. |
| |
| #GCC is distributed in the hope that it will be useful, |
| #but WITHOUT ANY WARRANTY; without even the implied warranty of |
| #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| #GNU General Public License for more details. |
| |
| #You should have received a copy of the GNU General Public License |
| #along with GCC; see the file COPYING3. If not see |
| #<http://www.gnu.org/licenses/>. |
| |
| # The targets for external use include: |
| # all, doc, install, install-cross, install-cross-rest, install-strip, |
| # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean. |
| |
| # This is the default target. |
| # Set by autoconf to "all.internal" for a native build, or |
| # "all.cross" to build a cross compiler. |
| all: @ALL@ |
| |
| # Depend on this to specify a phony target portably. |
| force: |
| |
| # This tells GNU make version 3 not to export the variables |
| # defined in this file into the environment (and thus recursive makes). |
| .NOEXPORT: |
| # And this tells it not to automatically pass command-line variables |
| # to recursive makes. |
| MAKEOVERRIDES = |
| |
| # Suppress smart makes who think they know how to automake yacc and flex file |
| .y.c: |
| .l.c: |
| |
| # The only suffixes we want for implicit rules are .c and .o, so clear |
| # the list and add them. This speeds up GNU Make, and allows -r to work. |
| # For i18n support, we also need .gmo, .po, .pox. |
| # This must come before the language makefile fragments to allow them to |
| # add suffixes and rules of their own. |
| .SUFFIXES: |
| .SUFFIXES: .c .o .po .pox .gmo |
| |
| # ------------------------------- |
| # Standard autoconf-set variables |
| # ------------------------------- |
| |
| build=@build@ |
| host=@host@ |
| target=@target@ |
| target_noncanonical:=@target_noncanonical@ |
| |
| # Sed command to transform gcc to installed name. |
| program_transform_name := @program_transform_name@ |
| |
| # ----------------------------- |
| # Directories used during build |
| # ----------------------------- |
| |
| # Directory where sources are, from where we are. |
| srcdir = @srcdir@ |
| gcc_docdir = @srcdir@/doc |
| |
| # Directory where sources are, absolute. |
| abs_srcdir = @abs_srcdir@ |
| abs_docdir = @abs_srcdir@/doc |
| |
| # Top build directory for this package, relative to here. |
| top_builddir = . |
| |
| # The absolute path to the current directory. |
| objdir := $(shell pwd) |
| |
| host_subdir=@host_subdir@ |
| build_subdir=@build_subdir@ |
| target_subdir=@target_subdir@ |
| build_libsubdir=@build_libsubdir@ |
| |
| # Top build directory for the "Cygnus tree", relative to $(top_builddir). |
| ifeq ($(host_subdir),.) |
| toplevel_builddir := .. |
| else |
| toplevel_builddir := ../.. |
| endif |
| |
| build_objdir := $(toplevel_builddir)/$(build_subdir) |
| build_libobjdir := $(toplevel_builddir)/$(build_libsubdir) |
| target_objdir := $(toplevel_builddir)/$(target_subdir) |
| |
| # -------- |
| # Defined vpaths |
| # -------- |
| |
| # Directory where sources are, from where we are. |
| VPATH = @srcdir@ |
| |
| # We define a vpath for the sources of the .texi files here because they |
| # are split between multiple directories and we would rather use one implicit |
| # pattern rule for everything. |
| # This vpath could be extended within the Make-lang fragments. |
| |
| vpath %.texi $(gcc_docdir) |
| vpath %.texi $(gcc_docdir)/include |
| |
| # -------- |
| # UNSORTED |
| # -------- |
| |
| # Variables that exist for you to override. |
| # See below for how to change them for certain systems. |
| |
| # List of language subdirectories. |
| SUBDIRS =@subdirs@ build |
| |
| # Selection of languages to be made. |
| CONFIG_LANGUAGES = @all_selected_languages@ |
| LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) $(CONFIG_LANGUAGES) |
| |
| # Default values for variables overridden in Makefile fragments. |
| # CFLAGS is for the user to override to, e.g., do a cross build with -O2. |
| # TCFLAGS is used for compilations with the GCC just built. |
| # T_CFLAGS is used for all compilations and is overridden by t-* files. |
| T_CFLAGS = |
| TCFLAGS = |
| CFLAGS = @CFLAGS@ |
| CXXFLAGS = @CXXFLAGS@ |
| LDFLAGS = @LDFLAGS@ |
| |
| # Flags to determine code coverage. When coverage is disabled, this will |
| # contain the optimization flags, as you normally want code coverage |
| # without optimization. |
| COVERAGE_FLAGS = @coverage_flags@ |
| coverageexts = .{gcda,gcno} |
| |
| # The warning flags are separate from CFLAGS because people tend to |
| # override optimization flags and we'd like them to still have warnings |
| # turned on. These flags are also used to pass other stage dependent |
| # flags from configure. The user is free to explicitly turn these flags |
| # off if they wish. |
| # LOOSE_WARN are the warning flags to use when compiling something |
| # which is only compiled with gcc, such as libgcc. |
| # C_LOOSE_WARN is similar, but with C-only warnings. |
| # STRICT_WARN are the additional warning flags to |
| # apply to the back end and some front ends, which may be compiled |
| # with other compilers. |
| # C_STRICT_WARN is similar, with C-only warnings. |
| LOOSE_WARN = @loose_warn@ |
| C_LOOSE_WARN = @c_loose_warn@ |
| STRICT_WARN = @strict_warn@ |
| C_STRICT_WARN = @c_strict_warn@ |
| |
| # This is set by --enable-checking. The idea is to catch forgotten |
| # "extern" tags in header files. |
| NOCOMMON_FLAG = @nocommon_flag@ |
| |
| NOEXCEPTION_FLAGS = @noexception_flags@ |
| |
| # This is set by --disable-maintainer-mode (default) to "#" |
| # FIXME: 'MAINT' will always be set to an empty string, no matter if |
| # --disable-maintainer-mode is used or not. This is because the |
| # following will expand to "MAINT := " in maintainer mode, and to |
| # "MAINT := #" in non-maintainer mode, but because '#' starts a comment, |
| # they mean exactly the same thing for make. |
| MAINT := @MAINT@ |
| |
| # The following provides the variable ENABLE_MAINTAINER_RULES that can |
| # be used in language Make-lang.in makefile fragments to enable |
| # maintainer rules. So, ENABLE_MAINTAINER_RULES is 'true' in |
| # maintainer mode, and '' otherwise. |
| @MAINT@ ENABLE_MAINTAINER_RULES = true |
| |
| # These are set by --enable-checking=valgrind. |
| RUN_GEN = @valgrind_command@ |
| VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@ |
| |
| # This is how we control whether or not the additional warnings are applied. |
| .-warn = $(STRICT_WARN) |
| build-warn = $(STRICT_WARN) |
| GCC_WARN_CFLAGS = $(LOOSE_WARN) $(C_LOOSE_WARN) $($(@D)-warn) $(if $(filter-out $(STRICT_WARN),$($(@D)-warn)),,$(C_STRICT_WARN)) $(NOCOMMON_FLAG) $($@-warn) |
| GCC_WARN_CXXFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn) |
| |
| # These files are to have specific diagnostics suppressed, or are not to |
| # be subject to -Werror: |
| # flex output may yield harmless "no previous prototype" warnings |
| build/gengtype-lex.o-warn = -Wno-error |
| gengtype-lex.o-warn = -Wno-error |
| expmed.o-warn = -Wno-error |
| |
| # All warnings have to be shut off in stage1 if the compiler used then |
| # isn't gcc; configure determines that. WARN_CFLAGS will be either |
| # $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be |
| # either $(GCC_WARN_CXXFLAGS), or nothing. |
| WARN_CFLAGS = @warn_cflags@ |
| WARN_CXXFLAGS = @warn_cxxflags@ |
| |
| CPPFLAGS = @CPPFLAGS@ |
| |
| AWK = @AWK@ |
| CC = @CC@ |
| CXX = @CXX@ |
| BISON = @BISON@ |
| BISONFLAGS = |
| FLEX = @FLEX@ |
| FLEXFLAGS = |
| AR = @AR@ |
| AR_FLAGS = rc |
| NM = @NM@ |
| RANLIB = @RANLIB@ |
| RANLIB_FLAGS = @ranlib_flags@ |
| |
| # Libraries to use on the host. |
| HOST_LIBS = @HOST_LIBS@ |
| |
| # The name of the compiler to use. |
| COMPILER = $(CXX) |
| COMPILER_FLAGS = $(CXXFLAGS) |
| # If HOST_LIBS is set, then the user is controlling the libraries to |
| # link against. In that case, link with $(CC) so that the -lstdc++ |
| # library is not introduced. If HOST_LIBS is not set, link with |
| # $(CXX) to pick up -lstdc++. |
| ifeq ($(HOST_LIBS),) |
| LINKER = $(CXX) |
| LINKER_FLAGS = $(CXXFLAGS) |
| else |
| LINKER = $(CC) |
| LINKER_FLAGS = $(CFLAGS) |
| endif |
| |
| # ------------------------------------------- |
| # Programs which operate on the build machine |
| # ------------------------------------------- |
| |
| SHELL = @SHELL@ |
| # pwd command to use. Allow user to override default by setting PWDCMD in |
| # the environment to account for automounters. The make variable must not |
| # be called PWDCMD, otherwise the value set here is passed to make |
| # subprocesses and overrides the setting from the user's environment. |
| # Don't use PWD since it is a common shell environment variable and we |
| # don't want to corrupt it. |
| PWD_COMMAND = $${PWDCMD-pwd} |
| # on sysV, define this as cp. |
| INSTALL = @INSTALL@ |
| # Some systems may be missing symbolic links, regular links, or both. |
| # Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate. |
| LN=@LN@ |
| LN_S=@LN_S@ |
| # These permit overriding just for certain files. |
| INSTALL_PROGRAM = @INSTALL_PROGRAM@ |
| INSTALL_DATA = @INSTALL_DATA@ |
| INSTALL_SCRIPT = @INSTALL@ |
| install_sh = $(SHELL) $(srcdir)/../install-sh |
| INSTALL_STRIP_PROGRAM = $(install_sh) -c -s |
| MAKEINFO = @MAKEINFO@ |
| MAKEINFOFLAGS = --no-split |
| TEXI2DVI = texi2dvi |
| TEXI2PDF = texi2pdf |
| TEXI2HTML = $(MAKEINFO) --html |
| TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl |
| POD2MAN = pod2man --center="GNU" --release="gcc-$(version)" --date=$(shell sed 's/\(....\)\(..\)\(..\)/\1-\2-\3/' <$(DATESTAMP)) |
| # Some versions of `touch' (such as the version on Solaris 2.8) |
| # do not correctly set the timestamp due to buggy versions of `utime' |
| # in the kernel. So, we use `echo' instead. |
| STAMP = echo timestamp > |
| # If necessary (e.g., when using the MSYS shell on Microsoft Windows) |
| # translate the shell's notion of absolute pathnames to the native |
| # spelling. |
| build_file_translate = @build_file_translate@ |
| |
| # Make sure the $(MAKE) variable is defined. |
| @SET_MAKE@ |
| |
| # Locate mkinstalldirs. |
| mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs |
| |
| # write_entries_to_file - writes each entry in a list |
| # to the specified file. Entries are written in chunks of |
| # $(write_entries_to_file_split) to accommodate systems with |
| # severe command-line-length limitations. |
| # Parameters: |
| # $(1): variable containing entries to iterate over |
| # $(2): output file |
| write_entries_to_file_split = 50 |
| write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \ |
| $(foreach range, \ |
| $(shell i=1; while test $$i -le $(words $(1)); do \ |
| echo $$i; i=`expr $$i + $(write_entries_to_file_split)`; done), \ |
| $(shell echo "$(wordlist $(range), \ |
| $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \ |
| | tr ' ' '\012' >> $(2))) |
| |
| # -------- |
| # UNSORTED |
| # -------- |
| |
| # Some compilers can't handle cc -c blah.c -o foo/blah.o. |
| # In stage2 and beyond, we force this to "-o $@" since we know we're using gcc. |
| OUTPUT_OPTION = @OUTPUT_OPTION@ |
| |
| # This is where we get zlib from. zlibdir is -L../zlib and zlibinc is |
| # -I../zlib, unless we were configured with --with-system-zlib, in which |
| # case both are empty. |
| ZLIB = @zlibdir@ -lz |
| ZLIBINC = @zlibinc@ |
| |
| # How to find GMP |
| GMPLIBS = @GMPLIBS@ |
| GMPINC = @GMPINC@ |
| |
| # How to find ISL |
| ISLINC = @ISLINC@ |
| |
| # How to find CLOOG |
| CLOOGLIBS = @CLOOGLIBS@ |
| CLOOGINC = @CLOOGINC@ |
| |
| # Set to 'yes' if the LTO front end is enabled. |
| enable_lto = @enable_lto@ |
| |
| # Compiler and flags needed for plugin support |
| PLUGINCC = @CXX@ |
| PLUGINCFLAGS = @CXXFLAGS@ |
| |
| # Libs and linker options needed for plugin support |
| PLUGINLIBS = @pluginlibs@ |
| |
| enable_plugin = @enable_plugin@ |
| |
| CPPLIB = ../libcpp/libcpp.a |
| CPPINC = -I$(srcdir)/../libcpp/include |
| |
| # Where to find decNumber |
| enable_decimal_float = @enable_decimal_float@ |
| DECNUM = $(srcdir)/../libdecnumber |
| DECNUMFMT = $(srcdir)/../libdecnumber/$(enable_decimal_float) |
| DECNUMINC = -I$(DECNUM) -I$(DECNUMFMT) -I../libdecnumber |
| LIBDECNUMBER = ../libdecnumber/libdecnumber.a |
| |
| # The backtrace library. |
| BACKTRACE = $(srcdir)/../libbacktrace |
| BACKTRACEINC = -I$(BACKTRACE) |
| LIBBACKTRACE = ../libbacktrace/.libs/libbacktrace.a |
| |
| # Target to use when installing include directory. Either |
| # install-headers-tar, install-headers-cpio or install-headers-cp. |
| INSTALL_HEADERS_DIR = @build_install_headers_dir@ |
| |
| # Header files that are made available under the same name |
| # to programs compiled with GCC. |
| USER_H = $(srcdir)/ginclude/float.h \ |
| $(srcdir)/ginclude/iso646.h \ |
| $(srcdir)/ginclude/stdarg.h \ |
| $(srcdir)/ginclude/stdbool.h \ |
| $(srcdir)/ginclude/stddef.h \ |
| $(srcdir)/ginclude/varargs.h \ |
| $(srcdir)/ginclude/stdfix.h \ |
| $(srcdir)/ginclude/stdnoreturn.h \ |
| $(srcdir)/ginclude/stdalign.h \ |
| $(EXTRA_HEADERS) |
| |
| USER_H_INC_NEXT_PRE = @user_headers_inc_next_pre@ |
| USER_H_INC_NEXT_POST = @user_headers_inc_next_post@ |
| |
| # The GCC to use for compiling crt*.o. |
| # Usually the one we just built. |
| # Don't use this as a dependency--use $(GCC_PASSES). |
| GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld |
| |
| # Set if the compiler was configured with --with-build-sysroot. |
| SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@ |
| |
| # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET. |
| # It specifies -B./. |
| # It also specifies -isystem ./include to find, e.g., stddef.h. |
| GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $(C_LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS) |
| |
| # --------------------------------------------------- |
| # Programs which produce files for the target machine |
| # --------------------------------------------------- |
| |
| AR_FOR_TARGET := $(shell \ |
| if [ -f $(objdir)/../binutils/ar ] ; then \ |
| echo $(objdir)/../binutils/ar ; \ |
| else \ |
| if [ "$(host)" = "$(target)" ] ; then \ |
| echo $(AR); \ |
| else \ |
| t='$(program_transform_name)'; echo ar | sed -e "$$t" ; \ |
| fi; \ |
| fi) |
| AR_FLAGS_FOR_TARGET = |
| AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc |
| AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x |
| LIPO_FOR_TARGET = lipo |
| ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@ |
| RANLIB_FOR_TARGET := $(shell \ |
| if [ -f $(objdir)/../binutils/ranlib ] ; then \ |
| echo $(objdir)/../binutils/ranlib ; \ |
| else \ |
| if [ "$(host)" = "$(target)" ] ; then \ |
| echo $(RANLIB); \ |
| else \ |
| t='$(program_transform_name)'; echo ranlib | sed -e "$$t" ; \ |
| fi; \ |
| fi) |
| ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@ |
| ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@ |
| NM_FOR_TARGET = ./nm |
| STRIP_FOR_TARGET := $(shell \ |
| if [ -f $(objdir)/../binutils/strip-new ] ; then \ |
| echo $(objdir)/../binutils/strip-new ; \ |
| else \ |
| if [ "$(host)" = "$(target)" ] ; then \ |
| echo strip; \ |
| else \ |
| t='$(program_transform_name)'; echo strip | sed -e "$$t" ; \ |
| fi; \ |
| fi) |
| |
| # -------- |
| # UNSORTED |
| # -------- |
| |
| # Where to find some libiberty headers. |
| HASHTAB_H = $(srcdir)/../include/hashtab.h |
| OBSTACK_H = $(srcdir)/../include/obstack.h |
| SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h |
| FIBHEAP_H = $(srcdir)/../include/fibheap.h |
| PARTITION_H = $(srcdir)/../include/partition.h |
| MD5_H = $(srcdir)/../include/md5.h |
| DWARF2_H = $(srcdir)/../include/dwarf2.h $(srcdir)/../include/dwarf2.def |
| XREGEX_H = $(srcdir)/../include/xregex.h |
| FNMATCH_H = $(srcdir)/../include/fnmatch.h |
| |
| # Linker plugin API headers |
| LINKER_PLUGIN_API_H = $(srcdir)/../include/plugin-api.h |
| LTO_SYMTAB_H = $(srcdir)/../include/lto-symtab.h |
| |
| # Default native SYSTEM_HEADER_DIR, to be overridden by targets. |
| NATIVE_SYSTEM_HEADER_DIR = @NATIVE_SYSTEM_HEADER_DIR@ |
| # Default cross SYSTEM_HEADER_DIR, to be overridden by targets. |
| CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@ |
| |
| # autoconf sets SYSTEM_HEADER_DIR to one of the above. |
| # Purge it of unnecessary internal relative paths |
| # to directories that might not exist yet. |
| # The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta. |
| # Use single quotes here to avoid nested double- and backquotes, this |
| # macro is also used in a double-quoted context. |
| SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta` |
| |
| # Control whether to run fixincludes. |
| STMP_FIXINC = @STMP_FIXINC@ |
| |
| # Test to see whether <limits.h> exists in the system header files. |
| LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ] |
| |
| # Directory for prefix to system directories, for |
| # each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc. |
| TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@ |
| TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@ |
| |
| xmake_file=@xmake_file@ |
| tmake_file=@tmake_file@ |
| TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@ |
| TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@ |
| TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@ |
| out_file=$(srcdir)/config/@out_file@ |
| out_object_file=@out_object_file@ |
| common_out_file=$(srcdir)/common/config/@common_out_file@ |
| common_out_object_file=@common_out_object_file@ |
| md_file=$(srcdir)/config/@md_file@ |
| tm_file_list=@tm_file_list@ |
| tm_include_list=@tm_include_list@ |
| tm_defines=@tm_defines@ |
| tm_p_file_list=@tm_p_file_list@ |
| tm_p_include_list=@tm_p_include_list@ |
| build_xm_file_list=@build_xm_file_list@ |
| build_xm_include_list=@build_xm_include_list@ |
| build_xm_defines=@build_xm_defines@ |
| host_xm_file_list=@host_xm_file_list@ |
| host_xm_include_list=@host_xm_include_list@ |
| host_xm_defines=@host_xm_defines@ |
| xm_file_list=@xm_file_list@ |
| xm_include_list=@xm_include_list@ |
| xm_defines=@xm_defines@ |
| lang_checks= |
| lang_checks_parallelized= |
| dg_target_exps:=aarch64.exp,alpha.exp,arm.exp,avr.exp,bfin.exp,cris.exp |
| dg_target_exps:=$(dg_target_exps),epiphany.exp,frv.exp,i386.exp,ia64.exp |
| dg_target_exps:=$(dg_target_exps),m68k.exp,microblaze.exp,mips.exp,powerpc.exp |
| dg_target_exps:=$(dg_target_exps),rx.exp,s390.exp,sh.exp,sparc.exp,spu.exp |
| dg_target_exps:=$(dg_target_exps),tic6x.exp,xstormy16.exp |
| # This lists a couple of test files that take most time during check-gcc. |
| # When doing parallelized check-gcc, these can run in parallel with the |
| # remaining tests. Each word in this variable stands for work for one |
| # make goal and one extra make goal is added to handle all the *.exp |
| # files not handled explicitly already. If multiple *.exp files |
| # should be run in the same runtest invocation (usually if they aren't |
| # very long running, but still should be split of from the check-parallel-$lang |
| # remaining tests runtest invocation), they should be concatenated with commas. |
| # Note that [a-zA-Z] wildcards need to have []s prefixed with \ (needed |
| # by tcl) and as the *.exp arguments are mached both as is and with |
| # */ prefixed to it in runtest_file_p, it is usually desirable to include |
| # a subdirectory name. |
| check_gcc_parallelize=execute.exp=execute/2* \ |
| execute.exp=execute/\[013-9a-fA-F\]* \ |
| execute.exp=execute/\[pP\]*,dg.exp \ |
| execute.exp=execute/\[g-oq-zG-OQ-Z\]*,compile.exp=compile/2* \ |
| compile.exp=compile/\[9pP\]*,builtins.exp \ |
| compile.exp=compile/\[013-8a-oq-zA-OQ-Z\]* \ |
| dg-torture.exp,ieee.exp \ |
| vect.exp,unsorted.exp \ |
| guality.exp \ |
| struct-layout-1.exp,stackalign.exp \ |
| $(dg_target_exps) |
| lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt |
| lang_specs_files=@lang_specs_files@ |
| lang_tree_files=@lang_tree_files@ |
| target_cpu_default=@target_cpu_default@ |
| OBJC_BOEHM_GC=@objc_boehm_gc@ |
| extra_modes_file=@extra_modes_file@ |
| extra_opt_files=@extra_opt_files@ |
| host_hook_obj=@out_host_hook_obj@ |
| |
| # Multiarch support |
| enable_multiarch = @enable_multiarch@ |
| with_cpu = @with_cpu@ |
| with_float = @with_float@ |
| ifeq ($(enable_multiarch),yes) |
| if_multiarch = $(1) |
| else |
| ifeq ($(enable_multiarch),auto) |
| # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac |
| if_multiarch = $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1)) |
| else |
| if_multiarch = |
| endif |
| endif |
| |
| # ------------------------ |
| # Installation directories |
| # ------------------------ |
| |
| # Common prefix for installation directories. |
| # NOTE: This directory must exist when you start installation. |
| prefix = @prefix@ |
| # Directory in which to put localized header files. On the systems with |
| # gcc as the native cc, `local_prefix' may not be `prefix' which is |
| # `/usr'. |
| # NOTE: local_prefix *should not* default from prefix. |
| local_prefix = @local_prefix@ |
| # Directory in which to put host dependent programs and libraries |
| exec_prefix = @exec_prefix@ |
| # Directory in which to put the executable for the command `gcc' |
| bindir = @bindir@ |
| # Directory in which to put the directories used by the compiler. |
| libdir = @libdir@ |
| # Directory in which GCC puts its executables. |
| libexecdir = @libexecdir@ |
| |
| # -------- |
| # UNSORTED |
| # -------- |
| |
| # Directory in which the compiler finds libraries etc. |
| libsubdir = $(libdir)/gcc/$(target_noncanonical)/$(version) |
| # Directory in which the compiler finds executables |
| libexecsubdir = $(libexecdir)/gcc/$(target_noncanonical)/$(version) |
| # Directory in which all plugin resources are installed |
| plugin_resourcesdir = $(libsubdir)/plugin |
| # Directory in which plugin headers are installed |
| plugin_includedir = $(plugin_resourcesdir)/include |
| # Directory in which plugin specific executables are installed |
| plugin_bindir = $(libexecsubdir)/plugin |
| # Used to produce a relative $(gcc_tooldir) in gcc.o |
| unlibsubdir = ../../.. |
| # $(prefix), expressed as a path relative to $(libsubdir). |
| # |
| # An explanation of the sed strings: |
| # -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix' |
| # -e 's|/$$||' match a trailing forward slash and eliminates it |
| # -e 's|^[^/]|/|' forces the string to start with a forward slash (*) |
| # -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../ |
| # |
| # (*) Note this pattern overwrites the first character of the string |
| # with a forward slash if one is not already present. This is not a |
| # problem because the exact names of the sub-directories concerned is |
| # unimportant, just the number of them matters. |
| # |
| # The practical upshot of these patterns is like this: |
| # |
| # prefix exec_prefix result |
| # ------ ----------- ------ |
| # /foo /foo/bar ../ |
| # /foo/ /foo/bar ../ |
| # /foo /foo/bar/ ../ |
| # /foo/ /foo/bar/ ../ |
| # /foo /foo/bar/ugg ../../ |
| libsubdir_to_prefix := \ |
| $(unlibsubdir)/$(shell echo "$(libdir)" | \ |
| sed -e 's|^$(prefix)||' -e 's|/$$||' -e 's|^[^/]|/|' \ |
| -e 's|/[^/]*|../|g') |
| # $(exec_prefix), expressed as a path relative to $(prefix). |
| prefix_to_exec_prefix := \ |
| $(shell echo "$(exec_prefix)" | \ |
| sed -e 's|^$(prefix)||' -e 's|^/||' -e '/./s|$$|/|') |
| # Directory in which to find other cross-compilation tools and headers. |
| dollar = @dollar@ |
| # Used in install-cross. |
| gcc_tooldir = @gcc_tooldir@ |
| # Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/ |
| build_tooldir = $(exec_prefix)/$(target_noncanonical) |
| # Directory in which the compiler finds target-independent g++ includes. |
| gcc_gxx_include_dir = @gcc_gxx_include_dir@ |
| gcc_gxx_include_dir_add_sysroot = @gcc_gxx_include_dir_add_sysroot@ |
| # Directory to search for site-specific includes. |
| local_includedir = $(local_prefix)/include |
| includedir = $(prefix)/include |
| # where the info files go |
| infodir = @infodir@ |
| # Where cpp should go besides $prefix/bin if necessary |
| cpp_install_dir = @cpp_install_dir@ |
| # where the locale files go |
| datadir = @datadir@ |
| localedir = $(datadir)/locale |
| # Extension (if any) to put in installed man-page filename. |
| man1ext = .1 |
| man7ext = .7 |
| objext = .o |
| exeext = @host_exeext@ |
| build_exeext = @build_exeext@ |
| |
| # Directory in which to put man pages. |
| mandir = @mandir@ |
| man1dir = $(mandir)/man1 |
| man7dir = $(mandir)/man7 |
| # Dir for temp files. |
| tmpdir = /tmp |
| |
| datarootdir = @datarootdir@ |
| docdir = @docdir@ |
| # Directory in which to build HTML |
| build_htmldir = $(objdir)/HTML/gcc-$(version) |
| # Directory in which to put HTML |
| htmldir = @htmldir@ |
| |
| # Whether we were configured with NLS. |
| USE_NLS = @USE_NLS@ |
| |
| # Internationalization library. |
| LIBINTL = @LIBINTL@ |
| LIBINTL_DEP = @LIBINTL_DEP@ |
| |
| # Character encoding conversion library. |
| LIBICONV = @LIBICONV@ |
| LIBICONV_DEP = @LIBICONV_DEP@ |
| |
| # If a supplementary library is being used for the GC. |
| GGC_LIB= |
| |
| # "true" if the target C library headers are unavailable; "false" |
| # otherwise. |
| inhibit_libc = @inhibit_libc@ |
| ifeq ($(inhibit_libc),true) |
| INHIBIT_LIBC_CFLAGS = -Dinhibit_libc |
| endif |
| |
| # List of extra executables that should be compiled for this target machine |
| # that are used when linking. |
| # The rules for compiling them should be in the t-* file for the machine. |
| EXTRA_PROGRAMS = @extra_programs@ |
| |
| # List of extra object files that should be compiled and linked with |
| # compiler proper (cc1, cc1obj, cc1plus). |
| EXTRA_OBJS = @extra_objs@ |
| |
| # List of extra object files that should be compiled and linked with |
| # the gcc driver. |
| EXTRA_GCC_OBJS =@extra_gcc_objs@ |
| |
| # List of extra libraries that should be linked with the gcc driver. |
| EXTRA_GCC_LIBS = @EXTRA_GCC_LIBS@ |
| |
| # List of additional header files to install. |
| EXTRA_HEADERS =@extra_headers_list@ |
| |
| # How to handle <stdint.h>. |
| USE_GCC_STDINT = @use_gcc_stdint@ |
| |
| # The configure script will set this to collect2$(exeext), except on a |
| # (non-Unix) host which can not build collect2, for which it will be |
| # set to empty. |
| COLLECT2 = @collect2@ |
| |
| # Program to convert libraries. |
| LIBCONVERT = |
| |
| # Control whether header files are installed. |
| INSTALL_HEADERS=install-headers install-mkheaders |
| |
| # Control whether Info documentation is built and installed. |
| BUILD_INFO = @BUILD_INFO@ |
| |
| # Control whether manpages generated by texi2pod.pl can be rebuilt. |
| GENERATED_MANPAGES = @GENERATED_MANPAGES@ |
| |
| # Additional directories of header files to run fixincludes on. |
| # These should be directories searched automatically by default |
| # just as /usr/include is. |
| # *Do not* use this for directories that happen to contain |
| # header files, but are not searched automatically by default. |
| # On most systems, this is empty. |
| OTHER_FIXINCLUDES_DIRS= |
| |
| # A list of all the language-specific executables. |
| COMPILERS = @all_compilers@ |
| |
| # List of things which should already be built whenever we try to use xgcc |
| # to compile anything (without linking). |
| GCC_PASSES=xgcc$(exeext) specs |
| |
| # Directory to link to, when using the target `maketest'. |
| DIR = ../gcc |
| |
| # Native compiler for the build machine and its switches. |
| CC_FOR_BUILD = @CC_FOR_BUILD@ |
| CXX_FOR_BUILD = @CXX_FOR_BUILD@ |
| BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE |
| BUILD_CXXFLAGS = @BUILD_CXXFLAGS@ -DGENERATOR_FILE |
| |
| # Native compiler that we use. This may be C++ some day. |
| COMPILER_FOR_BUILD = $(CXX_FOR_BUILD) |
| BUILD_COMPILERFLAGS = $(BUILD_CXXFLAGS) |
| |
| # Native linker that we use. |
| LINKER_FOR_BUILD = $(CXX_FOR_BUILD) |
| BUILD_LINKERFLAGS = $(BUILD_CXXFLAGS) |
| |
| # Native linker and preprocessor flags. For x-fragment overrides. |
| BUILD_LDFLAGS=@BUILD_LDFLAGS@ |
| BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ |
| -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS) |
| |
| # Actual name to use when installing a native compiler. |
| GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)') |
| GCC_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gcc|sed '$(program_transform_name)') |
| CPP_INSTALL_NAME := $(shell echo cpp|sed '$(program_transform_name)') |
| GCOV_INSTALL_NAME := $(shell echo gcov|sed '$(program_transform_name)') |
| |
| # Setup the testing framework, if you have one |
| EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \ |
| echo $${rootme}/../expect/expect ; \ |
| else echo expect ; fi` |
| |
| RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \ |
| echo $${srcdir}/../dejagnu/runtest ; \ |
| else echo runtest; fi` |
| RUNTESTFLAGS = |
| |
| # This should name the specs file that we're going to install. Target |
| # Makefiles may override it and name another file to be generated from |
| # the built-in specs and installed as the default spec, as long as |
| # they also introduce a rule to generate a file name specs, to be used |
| # at build time. |
| SPECS = specs |
| |
| # Extra include files that are defined by HeaderInclude directives in |
| # the .opt files |
| OPTIONS_H_EXTRA = |
| |
| # Extra include files that are defined by SourceInclude directives in |
| # the .opt files |
| OPTIONS_C_EXTRA = $(PRETTY_PRINT_H) |
| |
| @option_includes@ |
| |
| # End of variables for you to override. |
| |
| # GTM_H lists the config files that the generator files depend on, |
| # while TM_H lists the ones ordinary gcc files depend on, which |
| # includes several files generated by those generators. |
| BCONFIG_H = bconfig.h $(build_xm_file_list) |
| CONFIG_H = config.h $(host_xm_file_list) |
| TCONFIG_H = tconfig.h $(xm_file_list) |
| TM_P_H = tm_p.h $(tm_p_file_list) |
| GTM_H = tm.h $(tm_file_list) insn-constants.h |
| TM_H = $(GTM_H) insn-flags.h $(OPTIONS_H) |
| |
| # Variables for version information. |
| BASEVER := $(srcdir)/BASE-VER # 4.x.y |
| DEVPHASE := $(srcdir)/DEV-PHASE # experimental, prerelease, "" |
| DATESTAMP := $(srcdir)/DATESTAMP # YYYYMMDD or empty |
| REVISION := $(srcdir)/REVISION # [BRANCH revision XXXXXX] |
| |
| BASEVER_c := $(shell cat $(BASEVER)) |
| DEVPHASE_c := $(shell cat $(DEVPHASE)) |
| DATESTAMP_c := $(shell cat $(DATESTAMP)) |
| |
| ifeq (,$(wildcard $(REVISION))) |
| REVISION_c := |
| REVISION := |
| else |
| REVISION_c := $(shell cat $(REVISION)) |
| endif |
| |
| version := $(BASEVER_c) |
| |
| # For use in version.c - double quoted strings, with appropriate |
| # surrounding punctuation and spaces, and with the datestamp and |
| # development phase collapsed to the empty string in release mode |
| # (i.e. if DEVPHASE_c is empty). The space immediately after the |
| # comma in the $(if ...) constructs is significant - do not remove it. |
| BASEVER_s := "\"$(BASEVER_c)\"" |
| DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\"" |
| DATESTAMP_s := "\"$(if $(DEVPHASE_c), $(DATESTAMP_c))\"" |
| PKGVERSION_s:= "\"@PKGVERSION@\"" |
| BUGURL_s := "\"@REPORT_BUGS_TO@\"" |
| |
| PKGVERSION := @PKGVERSION@ |
| BUGURL_TEXI := @REPORT_BUGS_TEXI@ |
| |
| ifdef REVISION_c |
| REVISION_s := "\"$(if $(DEVPHASE_c), $(REVISION_c))\"" |
| else |
| REVISION_s := "\"\"" |
| endif |
| |
| # Shorthand variables for dependency lists. |
| VEC_H = vec.h statistics.h $(GGC_H) |
| HASH_TABLE_H = $(HASHTAB_H) hash-table.h |
| EXCEPT_H = except.h $(HASHTAB_H) |
| TARGET_DEF = target.def target-hooks-macros.h |
| C_TARGET_DEF = c-family/c-target.def target-hooks-macros.h |
| COMMON_TARGET_DEF = common/common-target.def target-hooks-macros.h |
| TARGET_H = $(TM_H) target.h $(TARGET_DEF) insn-modes.h |
| C_TARGET_H = c-family/c-target.h $(C_TARGET_DEF) |
| COMMON_TARGET_H = common/common-target.h $(INPUT_H) $(COMMON_TARGET_DEF) |
| MACHMODE_H = machmode.h mode-classes.def insn-modes.h |
| HOOKS_H = hooks.h $(MACHMODE_H) |
| HOSTHOOKS_DEF_H = hosthooks-def.h $(HOOKS_H) |
| LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H) |
| TARGET_DEF_H = target-def.h target-hooks-def.h $(HOOKS_H) targhooks.h |
| C_TARGET_DEF_H = c-family/c-target-def.h c-family/c-target-hooks-def.h \ |
| $(TREE_H) $(C_COMMON_H) $(HOOKS_H) common/common-targhooks.h |
| COMMON_TARGET_DEF_H = common/common-target-def.h \ |
| common/common-target-hooks-def.h $(HOOKS_H) |
| RTL_BASE_H = coretypes.h rtl.h rtl.def $(MACHMODE_H) reg-notes.def \ |
| insn-notes.def $(INPUT_H) $(REAL_H) statistics.h $(VEC_H) \ |
| $(FIXED_VALUE_H) alias.h $(HASHTAB_H) |
| FIXED_VALUE_H = fixed-value.h $(MACHMODE_H) double-int.h |
| RTL_H = $(RTL_BASE_H) $(FLAGS_H) genrtl.h |
| RTL_ERROR_H = rtl-error.h $(RTL_H) $(DIAGNOSTIC_CORE_H) |
| READ_MD_H = $(OBSTACK_H) $(HASHTAB_H) read-md.h |
| PARAMS_H = params.h params.def |
| BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def \ |
| gtm-builtins.def sanitizer.def |
| INTERNAL_FN_DEF = internal-fn.def |
| INTERNAL_FN_H = internal-fn.h $(INTERNAL_FN_DEF) |
| TREE_H = coretypes.h tree.h all-tree.def tree.def c-family/c-common.def \ |
| $(lang_tree_files) $(MACHMODE_H) tree-check.h $(BUILTINS_DEF) \ |
| $(INPUT_H) statistics.h $(VEC_H) treestruct.def $(HASHTAB_H) \ |
| double-int.h alias.h $(SYMTAB_H) $(FLAGS_H) \ |
| $(REAL_H) $(FIXED_VALUE_H) |
| REGSET_H = regset.h $(BITMAP_H) hard-reg-set.h |
| BASIC_BLOCK_H = basic-block.h $(PREDICT_H) $(VEC_H) $(FUNCTION_H) \ |
| cfg-flags.def cfghooks.h |
| GIMPLE_H = gimple.h gimple.def gsstruct.def pointer-set.h $(VEC_H) \ |
| $(GGC_H) $(BASIC_BLOCK_H) $(TREE_H) tree-ssa-operands.h \ |
| tree-ssa-alias.h $(INTERNAL_FN_H) |
| TRANS_MEM_H = trans-mem.h |
| GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h |
| COVERAGE_H = coverage.h $(GCOV_IO_H) |
| DEMANGLE_H = $(srcdir)/../include/demangle.h |
| RECOG_H = recog.h |
| ALIAS_H = alias.h |
| EMIT_RTL_H = emit-rtl.h |
| FLAGS_H = flags.h flag-types.h $(OPTIONS_H) |
| OPTIONS_H = options.h flag-types.h $(OPTIONS_H_EXTRA) |
| FUNCTION_H = function.h $(HASHTAB_H) $(TM_H) hard-reg-set.h \ |
| $(VEC_H) $(INPUT_H) $(MACHMODE_H) |
| EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) $(MACHMODE_H) $(EMIT_RTL_H) |
| OPTABS_H = optabs.h insn-codes.h insn-opinit.h |
| REGS_H = regs.h $(MACHMODE_H) hard-reg-set.h |
| SCHED_INT_H = sched-int.h $(INSN_ATTR_H) $(BASIC_BLOCK_H) $(RTL_H) $(DF_H) \ |
| $(REGSET_H) |
| SEL_SCHED_IR_H = sel-sched-ir.h $(INSN_ATTR_H) $(BASIC_BLOCK_H) $(RTL_H) \ |
| $(GGC_H) $(BITMAP_H) $(SCHED_INT_H) $(CFGLOOP_H) $(REGSET_H) |
| SEL_SCHED_DUMP_H = sel-sched-dump.h $(SEL_SCHED_IR_H) |
| CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) double-int.h \ |
| $(BITMAP_H) sbitmap.h |
| IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H) |
| IPA_REFERENCE_H = ipa-reference.h $(BITMAP_H) $(TREE_H) |
| CGRAPH_H = cgraph.h $(VEC_H) $(TREE_H) $(BASIC_BLOCK_H) $(FUNCTION_H) \ |
| cif-code.def ipa-ref.h ipa-ref-inline.h $(LINKER_PLUGIN_API_H) is-a.h |
| DF_H = df.h $(BITMAP_H) $(REGSET_H) sbitmap.h $(BASIC_BLOCK_H) \ |
| alloc-pool.h $(TIMEVAR_H) |
| VALTRACK_H = valtrack.h $(BITMAP_H) $(DF_H) $(RTL_H) $(BASIC_BLOCK_H) \ |
| $(HASH_TABLE_H) |
| RESOURCE_H = resource.h hard-reg-set.h $(DF_H) |
| DDG_H = ddg.h sbitmap.h $(DF_H) |
| GCC_H = gcc.h version.h $(DIAGNOSTIC_CORE_H) |
| GGC_H = ggc.h gtype-desc.h statistics.h |
| GGC_INTERNAL_H = ggc-internal.h $(GGC_H) |
| TIMEVAR_H = timevar.h timevar.def |
| INSN_ATTR_H = insn-attr.h insn-attr-common.h $(INSN_ADDR_H) |
| INSN_ADDR_H = $(srcdir)/insn-addr.h |
| C_COMMON_H = c-family/c-common.h c-family/c-common.def $(TREE_H) \ |
| $(SPLAY_TREE_H) $(CPPLIB_H) $(GGC_H) $(DIAGNOSTIC_CORE_H) |
| C_PRAGMA_H = c-family/c-pragma.h $(CPPLIB_H) |
| C_TREE_H = c-tree.h $(C_COMMON_H) $(DIAGNOSTIC_H) |
| SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \ |
| $(srcdir)/../include/safe-ctype.h $(srcdir)/../include/filenames.h |
| PREDICT_H = predict.h predict.def |
| CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \ |
| $(srcdir)/../libcpp/include/cpplib.h |
| INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h |
| OPTS_H = $(INPUT_H) $(VEC_H) opts.h $(OBSTACK_H) |
| DECNUM_H = $(DECNUM)/decContext.h $(DECNUM)/decDPD.h $(DECNUM)/decNumber.h \ |
| $(DECNUMFMT)/decimal32.h $(DECNUMFMT)/decimal64.h \ |
| $(DECNUMFMT)/decimal128.h $(DECNUMFMT)/decimal128Local.h |
| BACKTRACE_H = $(BACKTRACE)/backtrace.h |
| MKDEPS_H = $(srcdir)/../libcpp/include/mkdeps.h |
| SYMTAB_H = $(srcdir)/../libcpp/include/symtab.h $(OBSTACK_H) |
| CPP_ID_DATA_H = $(CPPLIB_H) $(srcdir)/../libcpp/include/cpp-id-data.h |
| CPP_INTERNAL_H = $(srcdir)/../libcpp/internal.h $(CPP_ID_DATA_H) |
| TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H) dumpfile.h |
| TREE_PASS_H = tree-pass.h $(TIMEVAR_H) dumpfile.h |
| TREE_FLOW_H = tree-flow.h tree-flow-inline.h tree-ssa-operands.h \ |
| $(BITMAP_H) sbitmap.h $(BASIC_BLOCK_H) $(GIMPLE_H) \ |
| $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \ |
| tree-ssa-alias.h |
| TREE_SSA_LIVE_H = tree-ssa-live.h $(PARTITION_H) |
| SSAEXPAND_H = ssaexpand.h $(TREE_SSA_LIVE_H) |
| PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) |
| TREE_PRETTY_PRINT_H = tree-pretty-print.h $(PRETTY_PRINT_H) |
| GIMPLE_PRETTY_PRINT_H = gimple-pretty-print.h $(TREE_PRETTY_PRINT_H) |
| DIAGNOSTIC_CORE_H = diagnostic-core.h $(INPUT_H) bversion.h diagnostic.def |
| DIAGNOSTIC_H = diagnostic.h $(DIAGNOSTIC_CORE_H) $(PRETTY_PRINT_H) |
| DWARF2OUT_H = dwarf2out.h $(DWARF2_H) |
| C_PRETTY_PRINT_H = c-family/c-pretty-print.h $(PRETTY_PRINT_H) \ |
| $(C_COMMON_H) $(TREE_H) |
| SCEV_H = tree-scalar-evolution.h $(GGC_H) tree-chrec.h $(PARAMS_H) |
| OMEGA_H = omega.h $(PARAMS_H) |
| TREE_DATA_REF_H = tree-data-ref.h $(OMEGA_H) graphds.h $(SCEV_H) |
| TREE_INLINE_H = tree-inline.h |
| REAL_H = real.h $(MACHMODE_H) |
| IRA_INT_H = ira.h ira-int.h $(CFGLOOP_H) alloc-pool.h |
| LRA_INT_H = lra.h $(BITMAP_H) $(RECOG_H) $(INSN_ATTR_H) insn-codes.h lra-int.h |
| DBGCNT_H = dbgcnt.h dbgcnt.def |
| LTO_STREAMER_H = lto-streamer.h $(LINKER_PLUGIN_API_H) $(TARGET_H) \ |
| $(CGRAPH_H) $(VEC_H) $(TREE_H) $(GIMPLE_H) \ |
| $(GCOV_IO_H) $(DIAGNOSTIC_H) alloc-pool.h |
| DATA_STREAMER_H = data-streamer.h $(VEC_H) $(LTO_STREAMER_H) |
| GIMPLE_STREAMER_H = gimple-streamer.h $(LTO_STREAMER_H) $(BASIC_BLOCK_H) \ |
| $(FUNCTION_H) |
| TREE_STREAMER_H = tree-streamer.h $(TREE_H) $(LTO_STREAMER_H) \ |
| $(STREAMER_HOOKS_H) |
| STREAMER_HOOKS_H = streamer-hooks.h $(TREE_H) |
| TREE_VECTORIZER_H = tree-vectorizer.h $(TREE_DATA_REF_H) $(TARGET_H) |
| IPA_PROP_H = ipa-prop.h $(TREE_H) $(VEC_H) $(CGRAPH_H) $(GIMPLE_H) alloc-pool.h |
| IPA_INLINE_H = ipa-inline.h $(IPA_PROP_H) |
| GSTAB_H = gstab.h stab.def |
| BITMAP_H = bitmap.h $(HASHTAB_H) statistics.h |
| GCC_PLUGIN_H = gcc-plugin.h highlev-plugin-common.h plugin.def \ |
| $(CONFIG_H) $(SYSTEM_H) $(HASHTAB_H) |
| PLUGIN_H = plugin.h $(GCC_PLUGIN_H) |
| PLUGIN_VERSION_H = plugin-version.h configargs.h |
| LIBFUNCS_H = libfuncs.h $(HASHTAB_H) |
| |
| # |
| # Now figure out from those variables how to compile and link. |
| |
| # IN_GCC distinguishes between code compiled into GCC itself and other |
| # programs built during a bootstrap. |
| # autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a |
| # cross compiler which does not use the native headers and libraries. |
| INTERNAL_CFLAGS = -DIN_GCC @CROSS@ |
| |
| # This is the variable actually used when we compile. If you change this, |
| # you probably want to update BUILD_CFLAGS in configure.ac |
| ALL_CFLAGS = $(T_CFLAGS) $(CFLAGS-$@) \ |
| $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@ |
| |
| # The C++ version. |
| ALL_CXXFLAGS = $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS) $(INTERNAL_CFLAGS) \ |
| $(COVERAGE_FLAGS) $(NOEXCEPTION_FLAGS) $(WARN_CXXFLAGS) @DEFS@ |
| |
| # Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro |
| # puts -I options in CPPFLAGS, our include files in the srcdir will always |
| # win against random include files in /usr/include. |
| ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS) |
| |
| # This is the variable to use when using $(COMPILER). |
| ALL_COMPILERFLAGS = $(ALL_CXXFLAGS) |
| |
| # This is the variable to use when using $(LINKER). |
| ALL_LINKERFLAGS = $(ALL_CXXFLAGS) |
| |
| # Build and host support libraries. |
| LIBIBERTY = ../libiberty/libiberty.a |
| BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a |
| |
| # Dependencies on the intl and portability libraries. |
| LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \ |
| $(LIBDECNUMBER) $(LIBBACKTRACE) |
| |
| # Likewise, for use in the tools that must run on this machine |
| # even if we are cross-building GCC. |
| BUILD_LIBDEPS= $(BUILD_LIBIBERTY) |
| |
| # How to link with both our special library facilities |
| # and the system's installed libraries. |
| LIBS = @LIBS@ libcommon.a $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBBACKTRACE) \ |
| $(LIBIBERTY) $(LIBDECNUMBER) $(HOST_LIBS) |
| BACKENDLIBS = $(CLOOGLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \ |
| $(ZLIB) |
| # Any system libraries needed just for GNAT. |
| SYSLIBS = @GNAT_LIBEXC@ |
| |
| # Used from ada/gcc-interface/Make-lang.in |
| GNATBIND = @GNATBIND@ |
| GNATMAKE = @GNATMAKE@ |
| |
| # Libs needed (at present) just for jcf-dump. |
| LDEXP_LIB = @LDEXP_LIB@ |
| |
| # Likewise, for use in the tools that must run on this machine |
| # even if we are cross-building GCC. |
| BUILD_LIBS = $(BUILD_LIBIBERTY) |
| |
| BUILD_RTL = build/rtl.o build/read-rtl.o build/ggc-none.o \ |
| build/vec.o build/min-insn-modes.o build/gensupport.o \ |
| build/print-rtl.o |
| BUILD_MD = build/read-md.o |
| BUILD_ERRORS = build/errors.o |
| |
| # Specify the directories to be searched for header files. |
| # Both . and srcdir are used, in that order, |
| # so that *config.h will be found in the compilation |
| # subdirectory rather than in the source directory. |
| # -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file |
| # currently being compiled, in both source trees, to be examined as well. |
| # libintl.h will be found in ../intl if we are using the included libintl. |
| INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \ |
| -I$(srcdir)/../include @INCINTL@ \ |
| $(CPPINC) $(GMPINC) $(DECNUMINC) $(BACKTRACEINC) \ |
| $(CLOOGINC) $(ISLINC) |
| |
| .c.o: |
| $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION) |
| |
| # |
| # Support for additional languages (other than C). |
| # C can be supported this way too (leave for later). |
| |
| LANG_MAKEFRAGS = @all_lang_makefrags@ |
| |
| # Flags to pass to recursive makes. |
| # CC is set by configure. |
| # ??? The choices here will need some experimenting with. |
| |
| export AR_FOR_TARGET |
| export AR_CREATE_FOR_TARGET |
| export AR_FLAGS_FOR_TARGET |
| export AR_EXTRACT_FOR_TARGET |
| export AWK |
| export DESTDIR |
| export GCC_FOR_TARGET |
| export INCLUDES |
| export INSTALL_DATA |
| export LIPO_FOR_TARGET |
| export MACHMODE_H |
| export NM_FOR_TARGET |
| export STRIP_FOR_TARGET |
| export RANLIB_FOR_TARGET |
| export libsubdir |
| |
| FLAGS_TO_PASS = \ |
| "ADA_CFLAGS=$(ADA_CFLAGS)" \ |
| "BISON=$(BISON)" \ |
| "BISONFLAGS=$(BISONFLAGS)" \ |
| "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \ |
| "LDFLAGS=$(LDFLAGS)" \ |
| "FLEX=$(FLEX)" \ |
| "FLEXFLAGS=$(FLEXFLAGS)" \ |
| "LN=$(LN)" \ |
| "LN_S=$(LN_S)" \ |
| "MAKEINFO=$(MAKEINFO)" \ |
| "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \ |
| "MAKEOVERRIDES=" \ |
| "SHELL=$(SHELL)" \ |
| "exeext=$(exeext)" \ |
| "build_exeext=$(build_exeext)" \ |
| "objext=$(objext)" \ |
| "exec_prefix=$(exec_prefix)" \ |
| "prefix=$(prefix)" \ |
| "local_prefix=$(local_prefix)" \ |
| "gxx_include_dir=$(gcc_gxx_include_dir)" \ |
| "build_tooldir=$(build_tooldir)" \ |
| "gcc_tooldir=$(gcc_tooldir)" \ |
| "bindir=$(bindir)" \ |
| "libexecsubdir=$(libexecsubdir)" \ |
| "datarootdir=$(datarootdir)" \ |
| "datadir=$(datadir)" \ |
| "localedir=$(localedir)" |
| # |
| # Lists of files for various purposes. |
| |
| # All option source files |
| ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files) |
| |
| # Target specific, C specific object file |
| C_TARGET_OBJS=@c_target_objs@ |
| |
| # Target specific, C++ specific object file |
| CXX_TARGET_OBJS=@cxx_target_objs@ |
| |
| # Target specific, Fortran specific object file |
| FORTRAN_TARGET_OBJS=@fortran_target_objs@ |
| |
| # Object files for gcc many-languages driver. |
| GCC_OBJS = gcc.o ggc-none.o |
| |
| # Language-specific object files shared by all C-family front ends. |
| # FIXME: tree-mudflap is C-family only, but it is also part of the middle-end. |
| # The mudflap machinery should be properly separated from the front ends, and |
| # perhaps turned into a plugin. |
| C_COMMON_OBJS = c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o \ |
| c-family/c-format.o c-family/c-gimplify.o c-family/c-lex.o \ |
| c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o \ |
| c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o \ |
| c-family/c-semantics.o c-family/c-ada-spec.o tree-mudflap.o |
| |
| # Language-independent object files. |
| # We put the insn-*.o files first so that a parallel make will build |
| # them sooner, because they are large and otherwise tend to be the |
| # last objects to finish building. |
| OBJS = \ |
| insn-attrtab.o \ |
| insn-automata.o \ |
| insn-dfatab.o \ |
| insn-emit.o \ |
| insn-extract.o \ |
| insn-latencytab.o \ |
| insn-modes.o \ |
| insn-opinit.o \ |
| insn-output.o \ |
| insn-peep.o \ |
| insn-preds.o \ |
| insn-recog.o \ |
| insn-enums.o \ |
| ggc-page.o \ |
| alias.o \ |
| alloc-pool.o \ |
| auto-inc-dec.o \ |
| bb-reorder.o \ |
| bitmap.o \ |
| bt-load.o \ |
| builtins.o \ |
| caller-save.o \ |
| calls.o \ |
| cfg.o \ |
| cfganal.o \ |
| cfgbuild.o \ |
| cfgcleanup.o \ |
| cfgexpand.o \ |
| cfghooks.o \ |
| cfgloop.o \ |
| cfgloopanal.o \ |
| cfgloopmanip.o \ |
| cfgrtl.o \ |
| symtab.o \ |
| cgraph.o \ |
| cgraphbuild.o \ |
| cgraphunit.o \ |
| cgraphclones.o \ |
| combine.o \ |
| combine-stack-adj.o \ |
| compare-elim.o \ |
| convert.o \ |
| coverage.o \ |
| cppbuiltin.o \ |
| cppdefault.o \ |
| cprop.o \ |
| cse.o \ |
| cselib.o \ |
| data-streamer.o \ |
| data-streamer-in.o \ |
| data-streamer-out.o \ |
| dbxout.o \ |
| dbgcnt.o \ |
| dce.o \ |
| ddg.o \ |
| debug.o \ |
| df-core.o \ |
| df-problems.o \ |
| df-scan.o \ |
| dfp.o \ |
| dojump.o \ |
| dominance.o \ |
| domwalk.o \ |
| double-int.o \ |
| dse.o \ |
| dumpfile.o \ |
| dwarf2asm.o \ |
| dwarf2cfi.o \ |
| dwarf2out.o \ |
| emit-rtl.o \ |
| et-forest.o \ |
| except.o \ |
| explow.o \ |
| expmed.o \ |
| expr.o \ |
| final.o \ |
| fixed-value.o \ |
| fold-const.o \ |
| function.o \ |
| fwprop.o \ |
| gcse.o \ |
| ggc-common.o \ |
| gimple.o \ |
| gimple-iterator.o \ |
| gimple-fold.o \ |
| gimple-low.o \ |
| gimple-pretty-print.o \ |
| gimple-ssa-strength-reduction.o \ |
| gimple-streamer-in.o \ |
| gimple-streamer-out.o \ |
| gimplify.o \ |
| godump.o \ |
| graph.o \ |
| graphds.o \ |
| graphite.o \ |
| graphite-blocking.o \ |
| graphite-clast-to-gimple.o \ |
| graphite-dependences.o \ |
| graphite-interchange.o \ |
| graphite-optimize-isl.o \ |
| graphite-poly.o \ |
| graphite-scop-detection.o \ |
| graphite-sese-to-poly.o \ |
| gtype-desc.o \ |
| haifa-sched.o \ |
| hw-doloop.o \ |
| hwint.o \ |
| ifcvt.o \ |
| ree.o \ |
| incpath.o \ |
| init-regs.o \ |
| internal-fn.o \ |
| ipa-cp.o \ |
| ipa-split.o \ |
| ipa-inline.o \ |
| ipa-inline-analysis.o \ |
| ipa-inline-transform.o \ |
| ipa-prop.o \ |
| ipa-pure-const.o \ |
| ipa-reference.o \ |
| ipa-ref.o \ |
| ipa-utils.o \ |
| ipa.o \ |
| ira.o \ |
| ira-build.o \ |
| ira-costs.o \ |
| ira-conflicts.o \ |
| ira-color.o \ |
| ira-emit.o \ |
| ira-lives.o \ |
| jump.o \ |
| langhooks.o \ |
| lcm.o \ |
| lists.o \ |
| loop-doloop.o \ |
| loop-init.o \ |
| loop-invariant.o \ |
| loop-iv.o \ |
| loop-unroll.o \ |
| loop-unswitch.o \ |
| lower-subreg.o \ |
| lra.o \ |
| lra-assigns.o \ |
| lra-coalesce.o \ |
| lra-constraints.o \ |
| lra-eliminations.o \ |
| lra-lives.o \ |
| lra-spills.o \ |
| lto-cgraph.o \ |
| lto-streamer.o \ |
| lto-streamer-in.o \ |
| lto-streamer-out.o \ |
| lto-section-in.o \ |
| lto-section-out.o \ |
| lto-symtab.o \ |
| lto-opts.o \ |
| lto-compress.o \ |
| mcf.o \ |
| mode-switching.o \ |
| modulo-sched.o \ |
| omega.o \ |
| omp-low.o \ |
| optabs.o \ |
| options-save.o \ |
| opts-global.o \ |
| passes.o \ |
| plugin.o \ |
| pointer-set.o \ |
| postreload-gcse.o \ |
| postreload.o \ |
| predict.o \ |
| print-rtl.o \ |
| print-tree.o \ |
| profile.o \ |
| real.o \ |
| realmpfr.o \ |
| recog.o \ |
| reg-stack.o \ |
| regcprop.o \ |
| reginfo.o \ |
| regmove.o \ |
| regrename.o \ |
| regstat.o \ |
| reload.o \ |
| reload1.o \ |
| reorg.o \ |
| resource.o \ |
| rtl-error.o \ |
| rtl.o \ |
| rtlanal.o \ |
| rtlhooks.o \ |
| sbitmap.o \ |
| sched-deps.o \ |
| sched-ebb.o \ |
| sched-rgn.o \ |
| sched-vis.o \ |
| sdbout.o \ |
| sel-sched-ir.o \ |
| sel-sched-dump.o \ |
| sel-sched.o \ |
| sese.o \ |
| simplify-rtx.o \ |
| sparseset.o \ |
| sreal.o \ |
| stack-ptr-mod.o \ |
| statistics.o \ |
| stmt.o \ |
| stor-layout.o \ |
| store-motion.o \ |
| streamer-hooks.o \ |
| stringpool.o \ |
| target-globals.o \ |
| targhooks.o \ |
| timevar.o \ |
| toplev.o \ |
| tracer.o \ |
| trans-mem.o \ |
| tree-affine.o \ |
| asan.o \ |
| tsan.o \ |
| tree-call-cdce.o \ |
| tree-cfg.o \ |
| tree-cfgcleanup.o \ |
| tree-chrec.o \ |
| tree-complex.o \ |
| tree-data-ref.o \ |
| tree-dfa.o \ |
| tree-diagnostic.o \ |
| tree-dump.o \ |
| tree-eh.o \ |
| tree-emutls.o \ |
| tree-if-conv.o \ |
| tree-inline.o \ |
| tree-into-ssa.o \ |
| tree-iterator.o \ |
| tree-loop-distribution.o \ |
| tree-nested.o \ |
| tree-nomudflap.o \ |
| tree-nrv.o \ |
| tree-object-size.o \ |
| tree-optimize.o \ |
| tree-outof-ssa.o \ |
| tree-parloops.o \ |
| tree-phinodes.o \ |
| tree-predcom.o \ |
| tree-pretty-print.o \ |
| tree-profile.o \ |
| tree-scalar-evolution.o \ |
| tree-sra.o \ |
| tree-switch-conversion.o \ |
| tree-ssa-address.o \ |
| tree-ssa-alias.o \ |
| tree-ssa-ccp.o \ |
| tree-ssa-coalesce.o \ |
| tree-ssa-copy.o \ |
| tree-ssa-copyrename.o \ |
| tree-ssa-dce.o \ |
| tree-ssa-dom.o \ |
| tree-ssa-dse.o \ |
| tree-ssa-forwprop.o \ |
| tree-ssa-ifcombine.o \ |
| tree-ssa-live.o \ |
| tree-ssa-loop-ch.o \ |
| tree-ssa-loop-im.o \ |
| tree-ssa-loop-ivcanon.o \ |
| tree-ssa-loop-ivopts.o \ |
| tree-ssa-loop-manip.o \ |
| tree-ssa-loop-niter.o \ |
| tree-ssa-loop-prefetch.o \ |
| tree-ssa-loop-unswitch.o \ |
| tree-ssa-loop.o \ |
| tree-ssa-math-opts.o \ |
| tree-ssa-operands.o \ |
| tree-ssa-phiopt.o \ |
| tree-ssa-phiprop.o \ |
| tree-ssa-pre.o \ |
| tree-ssa-propagate.o \ |
| tree-ssa-reassoc.o \ |
| tree-ssa-sccvn.o \ |
| tree-ssa-sink.o \ |
| tree-ssa-strlen.o \ |
| tree-ssa-structalias.o \ |
| tree-ssa-tail-merge.o \ |
| tree-ssa-ter.o \ |
| tree-ssa-threadedge.o \ |
| tree-ssa-threadupdate.o \ |
| tree-ssa-uncprop.o \ |
| tree-ssa-uninit.o \ |
| tree-ssa.o \ |
| tree-ssanames.o \ |
| tree-stdarg.o \ |
| tree-streamer.o \ |
| tree-streamer-in.o \ |
| tree-streamer-out.o \ |
| tree-tailcall.o \ |
| tree-vect-generic.o \ |
| tree-vect-patterns.o \ |
| tree-vect-data-refs.o \ |
| tree-vect-stmts.o \ |
| tree-vect-loop.o \ |
| tree-vect-loop-manip.o \ |
| tree-vect-slp.o \ |
| tree-vectorizer.o \ |
| tree-vrp.o \ |
| tree.o \ |
| valtrack.o \ |
| value-prof.o \ |
| var-tracking.o \ |
| varasm.o \ |
| varpool.o \ |
| vmsdbgout.o \ |
| web.o \ |
| xcoffout.o \ |
| $(out_object_file) \ |
| $(EXTRA_OBJS) \ |
| $(host_hook_obj) |
| |
| # Objects in libcommon.a, potentially used by all host binaries and with |
| # no target dependencies. |
| OBJS-libcommon = diagnostic.o pretty-print.o intl.o input.o version.o |
| |
| # Objects in libcommon-target.a, used by drivers and by the core |
| # compiler and containing target-dependent code. |
| OBJS-libcommon-target = $(common_out_object_file) prefix.o params.o \ |
| opts.o opts-common.o options.o vec.o hooks.o common/common-targhooks.o \ |
| hash-table.o file-find.o |
| |
| # This lists all host objects for the front ends. |
| ALL_HOST_FRONTEND_OBJS = $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS)) |
| |
| ALL_HOST_BACKEND_OBJS = $(GCC_OBJS) $(OBJS) $(OBJS-libcommon) \ |
| $(OBJS-libcommon-target) @TREEBROWSER@ main.o c-family/cppspec.o \ |
| $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS) |
| |
| # This lists all host object files, whether they are included in this |
| # compilation or not. |
| ALL_HOST_OBJS = $(ALL_HOST_FRONTEND_OBJS) $(ALL_HOST_BACKEND_OBJS) |
| |
| BACKEND = libbackend.a main.o @TREEBROWSER@ libcommon-target.a libcommon.a \ |
| $(CPPLIB) $(LIBDECNUMBER) |
| |
| # This is defined to "yes" if Tree checking is enabled, which roughly means |
| # front-end checking. |
| TREECHECKING = @TREECHECKING@ |
| |
| MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \ |
| insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \ |
| insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \ |
| insn-latencytab.c insn-opinit.c insn-opinit.h insn-preds.c insn-constants.h \ |
| tm-preds.h tm-constrs.h checksum-options \ |
| tree-check.h min-insn-modes.c insn-modes.c insn-modes.h \ |
| genrtl.h gt-*.h gtype-*.h gtype-desc.c gtyp-input.list \ |
| xgcc$(exeext) cpp$(exeext) \ |
| $(EXTRA_PROGRAMS) gcc-cross$(exeext) \ |
| $(SPECS) collect2$(exeext) gcc-ar$(exeext) gcc-nm$(exeext) \ |
| gcc-ranlib$(exeext) \ |
| gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \ |
| gengtype$(exeext) *.[0-9][0-9].* *.[si] *-checksum.c libbackend.a \ |
| libcommon-target.a libcommon.a libgcc.mk |
| |
| # |
| # Language makefile fragments. |
| |
| # The following targets define the interface between us and the languages. |
| # |
| # all.cross, start.encap, rest.encap, |
| # install-common, install-info, install-man, |
| # uninstall, |
| # mostlyclean, clean, distclean, maintainer-clean, |
| # |
| # Each language is linked in with a series of hooks. The name of each |
| # hooked is "lang.${target_name}" (eg: lang.info). Configure computes |
| # and adds these here. We use double-colon rules for some of the hooks; |
| # double-colon rules should be preferred for any new hooks. |
| |
| # language hooks, generated by configure |
| @language_hooks@ |
| |
| # per-language makefile fragments |
| ifneq ($(LANG_MAKEFRAGS),) |
| include $(LANG_MAKEFRAGS) |
| endif |
| |
| # target and host overrides must follow the per-language makefile fragments |
| # so they can override or augment language-specific variables |
| |
| # target overrides |
| ifneq ($(tmake_file),) |
| include $(tmake_file) |
| endif |
| |
| # host overrides |
| ifneq ($(xmake_file),) |
| include $(xmake_file) |
| endif |
| |
| # all-tree.def includes all the tree.def files. |
| all-tree.def: s-alltree; @true |
| s-alltree: Makefile |
| rm -f tmp-all-tree.def |
| echo '#include "tree.def"' > tmp-all-tree.def |
| echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def |
| echo '#include "c-family/c-common.def"' >> tmp-all-tree.def |
| ltf="$(lang_tree_files)"; for f in $$ltf; do \ |
| echo "#include \"$$f\""; \ |
| done | sed 's|$(srcdir)/||' >> tmp-all-tree.def |
| $(SHELL) $(srcdir)/../move-if-change tmp-all-tree.def all-tree.def |
| $(STAMP) s-alltree |
| |
| # Now that LANG_MAKEFRAGS are included, we can add special flags to the |
| # objects that belong to the front ends. We add an extra define that |
| # causes back-end specific include files to be poisoned, in the hope that |
| # we can avoid introducing dependencies of the front ends on things that |
| # no front end should ever look at (e.g. everything RTL related). |
| $(foreach file,$(ALL_HOST_FRONTEND_OBJS),$(eval CFLAGS-$(file) += -DIN_GCC_FRONTEND)) |
| |
| # |
| |
| # ----------------------------- |
| # Rebuilding this configuration |
| # ----------------------------- |
| |
| # On the use of stamps: |
| # Consider the example of tree-check.h. It is constructed with build/gencheck. |
| # A simple rule to build tree-check.h would be |
| # tree-check.h: build/gencheck$(build_exeext) |
| # $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h |
| # |
| # but tree-check.h doesn't change every time gencheck changes. It would the |
| # nice if targets that depend on tree-check.h wouldn't be rebuild |
| # unnecessarily when tree-check.h is unchanged. To make this, tree-check.h |
| # must not be overwritten with a identical copy. One solution is to use a |
| # temporary file |
| # tree-check.h: build/gencheck$(build_exeext) |
| # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
| # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
| # |
| # This solution has a different problem. Since the time stamp of tree-check.h |
| # is unchanged, make will try to update tree-check.h every time it runs. |
| # To prevent this, one can add a stamp |
| # tree-check.h: s-check |
| # s-check : build/gencheck$(build_exeext) |
| # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
| # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
| # $(STAMP) s-check |
| # |
| # The problem with this solution is that make thinks that tree-check.h is |
| # always unchanged. Make must be deceived into thinking that tree-check.h is |
| # rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command: |
| # tree-check.h: s-check; @true |
| # s-check : build/gencheck$(build_exeext) |
| # $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
| # $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
| # $(STAMP) s-check |
| # |
| # This is what is done in this makefile. Note that mkconfig.sh has a |
| # move-if-change built-in |
| |
| Makefile: config.status $(srcdir)/Makefile.in $(LANG_MAKEFRAGS) |
| LANGUAGES="$(CONFIG_LANGUAGES)" \ |
| CONFIG_HEADERS= \ |
| CONFIG_SHELL="$(SHELL)" \ |
| CONFIG_FILES=$@ $(SHELL) config.status |
| |
| config.h: cs-config.h ; @true |
| bconfig.h: cs-bconfig.h ; @true |
| tconfig.h: cs-tconfig.h ; @true |
| tm.h: cs-tm.h ; @true |
| tm_p.h: cs-tm_p.h ; @true |
| |
| cs-config.h: Makefile |
| TARGET_CPU_DEFAULT="" \ |
| HEADERS="$(host_xm_include_list)" DEFINES="$(host_xm_defines)" \ |
| $(SHELL) $(srcdir)/mkconfig.sh config.h |
| |
| cs-bconfig.h: Makefile |
| TARGET_CPU_DEFAULT="" \ |
| HEADERS="$(build_xm_include_list)" DEFINES="$(build_xm_defines)" \ |
| $(SHELL) $(srcdir)/mkconfig.sh bconfig.h |
| |
| cs-tconfig.h: Makefile |
| TARGET_CPU_DEFAULT="" \ |
| HEADERS="$(xm_include_list)" DEFINES="USED_FOR_TARGET $(xm_defines)" \ |
| $(SHELL) $(srcdir)/mkconfig.sh tconfig.h |
| |
| cs-tm.h: Makefile |
| TARGET_CPU_DEFAULT="$(target_cpu_default)" \ |
| HEADERS="$(tm_include_list)" DEFINES="$(tm_defines)" \ |
| $(SHELL) $(srcdir)/mkconfig.sh tm.h |
| |
| cs-tm_p.h: Makefile |
| TARGET_CPU_DEFAULT="" \ |
| HEADERS="$(tm_p_include_list)" DEFINES="" \ |
| $(SHELL) $(srcdir)/mkconfig.sh tm_p.h |
| |
| # Don't automatically run autoconf, since configure.ac might be accidentally |
| # newer than configure. Also, this writes into the source directory which |
| # might be on a read-only file system. If configured for maintainer mode |
| # then do allow autoconf to be run. |
| |
| AUTOCONF = autoconf |
| ACLOCAL = aclocal |
| ACLOCAL_AMFLAGS = -I ../config -I .. |
| aclocal_deps = \ |
| $(srcdir)/../libtool.m4 \ |
| $(srcdir)/../ltoptions.m4 \ |
| $(srcdir)/../ltsugar.m4 \ |
| $(srcdir)/../ltversion.m4 \ |
| $(srcdir)/../lt~obsolete.m4 \ |
| $(srcdir)/../config/acx.m4 \ |
| $(srcdir)/../config/codeset.m4 \ |
| $(srcdir)/../config/extensions.m4 \ |
| $(srcdir)/../config/gettext-sister.m4 \ |
| $(srcdir)/../config/iconv.m4 \ |
| $(srcdir)/../config/lcmessage.m4 \ |
| $(srcdir)/../config/lib-ld.m4 \ |
| $(srcdir)/../config/lib-link.m4 \ |
| $(srcdir)/../config/lib-prefix.m4 \ |
| $(srcdir)/../config/override.m4 \ |
| $(srcdir)/../config/progtest.m4 \ |
| $(srcdir)/../config/stdint.m4 \ |
| $(srcdir)/../config/unwind_ipinfo.m4 \ |
| $(srcdir)/../config/warnings.m4 \ |
| $(srcdir)/../config/dfp.m4 \ |
| $(srcdir)/../config/mmap.m4 \ |
| $(srcdir)/acinclude.m4 |
| |
| $(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/aclocal.m4 |
| (cd $(srcdir) && $(AUTOCONF)) |
| |
| $(srcdir)/aclocal.m4 : @MAINT@ $(aclocal_deps) |
| (cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)) |
| |
| # cstamp-h.in controls rebuilding of config.in. |
| # It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't |
| # delete it. A stamp file is needed as autoheader won't update the file if |
| # nothing has changed. |
| # It remains in the source directory and is part of the distribution. |
| # This follows what is done in shellutils, fileutils, etc. |
| # "echo timestamp" is used instead of touch to be consistent with other |
| # packages that use autoconf (??? perhaps also to avoid problems with patch?). |
| # ??? Newer versions have a maintainer mode that may be useful here. |
| |
| # Don't run autoheader automatically either. |
| # Only run it if maintainer mode is enabled. |
| @MAINT@ AUTOHEADER = autoheader |
| @MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in |
| @MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.ac |
| @MAINT@ (cd $(srcdir) && $(AUTOHEADER)) |
| @MAINT@ @rm -f $(srcdir)/cstamp-h.in |
| @MAINT@ echo timestamp > $(srcdir)/cstamp-h.in |
| auto-host.h: cstamp-h ; @true |
| cstamp-h: config.in config.status |
| CONFIG_HEADERS=auto-host.h:config.in \ |
| CONFIG_FILES= \ |
| LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status |
| |
| # Really, really stupid make features, such as SUN's KEEP_STATE, may force |
| # a target to build even if it is up-to-date. So we must verify that |
| # config.status does not exist before failing. |
| config.status: $(srcdir)/configure $(srcdir)/config.gcc |
| @if [ ! -f config.status ] ; then \ |
| echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \ |
| false; \ |
| else \ |
| LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \ |
| fi |
| |
| # -------- |
| # UNSORTED |
| # -------- |
| |
| # Provide quickstrap as a target that people can type into the gcc directory, |
| # and that fails if you're not into it. |
| quickstrap: all |
| cd $(toplevel_builddir) && $(MAKE) all-target-libgcc |
| |
| all.internal: start.encap rest.encap doc |
| # This is what to compile if making a cross-compiler. |
| all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \ |
| libgcc-support lang.all.cross doc @GENINSRC@ srcextra |
| # This is what must be made before installing GCC and converting libraries. |
| start.encap: native xgcc$(exeext) cpp$(exeext) specs \ |
| libgcc-support lang.start.encap @GENINSRC@ srcextra |
| # These can't be made until after GCC can run. |
| rest.encap: lang.rest.encap |
| # This is what is made with the host's compiler |
| # whether making a cross compiler or not. |
| native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \ |
| $(EXTRA_PROGRAMS) $(COLLECT2) lto-wrapper$(exeext) \ |
| gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext) |
| |
| ifeq ($(enable_plugin),yes) |
| native: gengtype$(exeext) |
| endif |
| |
| # On the target machine, finish building a cross compiler. |
| # This does the things that can't be done on the host machine. |
| rest.cross: specs |
| |
| # Recompile all the language-independent object files. |
| # This is used only if the user explicitly asks for it. |
| compilations: $(BACKEND) |
| |
| # This archive is strictly for the host. |
| libbackend.a: $(OBJS) |
| -rm -rf libbackend.a |
| $(AR) $(AR_FLAGS) libbackend.a $(OBJS) |
| -$(RANLIB) $(RANLIB_FLAGS) libbackend.a |
| |
| libcommon-target.a: $(OBJS-libcommon-target) |
| -rm -rf libcommon-target.a |
| $(AR) $(AR_FLAGS) libcommon-target.a $(OBJS-libcommon-target) |
| -$(RANLIB) $(RANLIB_FLAGS) libcommon-target.a |
| |
| libcommon.a: $(OBJS-libcommon) |
| -rm -rf libcommon.a |
| $(AR) $(AR_FLAGS) libcommon.a $(OBJS-libcommon) |
| -$(RANLIB) $(RANLIB_FLAGS) libcommon.a |
| |
| # We call this executable `xgcc' rather than `gcc' |
| # to avoid confusion if the current directory is in the path |
| # and CC is `gcc'. It is renamed to `gcc' when it is installed. |
| xgcc$(exeext): $(GCC_OBJS) c/gccspec.o libcommon-target.a $(LIBDEPS) \ |
| $(EXTRA_GCC_OBJS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \ |
| c/gccspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \ |
| $(EXTRA_GCC_LIBS) $(LIBS) |
| |
| # cpp is to cpp0 as e.g. g++ is to cc1plus: Just another driver. |
| # It is part of c-family because the handled extensions are hard-coded |
| # and only contain c-family extensions (see known_suffixes). |
| cpp$(exeext): $(GCC_OBJS) c-family/cppspec.o libcommon-target.a $(LIBDEPS) \ |
| $(EXTRA_GCC_OBJS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \ |
| c-family/cppspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \ |
| $(EXTRA_GCC_LIBS) $(LIBS) |
| |
| # Dump a specs file to make -B./ read these specs over installed ones. |
| $(SPECS): xgcc$(exeext) |
| $(GCC_FOR_TARGET) -dumpspecs > tmp-specs |
| mv tmp-specs $(SPECS) |
| |
| # We do want to create an executable named `xgcc', so we can use it to |
| # compile libgcc2.a. |
| # Also create gcc-cross, so that install-common will install properly. |
| gcc-cross$(exeext): xgcc$(exeext) |
| cp xgcc$(exeext) gcc-cross$(exeext) |
| |
| checksum-options: |
| echo "$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS)" > checksum-options.tmp \ |
| && $(srcdir)/../move-if-change checksum-options.tmp checksum-options |
| |
| # |
| # Build libgcc.a. |
| |
| libgcc-support: libgcc.mvars stmp-int-hdrs $(TCONFIG_H) \ |
| $(MACHMODE_H) gcov-iov.h |
| |
| libgcc.mvars: config.status Makefile specs xgcc$(exeext) |
| : > tmp-libgcc.mvars |
| echo GCC_CFLAGS = '$(GCC_CFLAGS)' >> tmp-libgcc.mvars |
| echo INHIBIT_LIBC_CFLAGS = '$(INHIBIT_LIBC_CFLAGS)' >> tmp-libgcc.mvars |
| echo TARGET_SYSTEM_ROOT = '$(TARGET_SYSTEM_ROOT)' >> tmp-libgcc.mvars |
| |
| mv tmp-libgcc.mvars libgcc.mvars |
| |
| # Use the genmultilib shell script to generate the information the gcc |
| # driver program needs to select the library directory based on the |
| # switches. |
| multilib.h: s-mlib; @true |
| s-mlib: $(srcdir)/genmultilib Makefile |
| if test @enable_multilib@ = yes \ |
| || test -n "$(MULTILIB_OSDIRNAMES)"; then \ |
| $(SHELL) $(srcdir)/genmultilib \ |
| "$(MULTILIB_OPTIONS)" \ |
| "$(MULTILIB_DIRNAMES)" \ |
| "$(MULTILIB_MATCHES)" \ |
| "$(MULTILIB_EXCEPTIONS)" \ |
| "$(MULTILIB_EXTRA_OPTS)" \ |
| "$(MULTILIB_EXCLUSIONS)" \ |
| "$(MULTILIB_OSDIRNAMES)" \ |
| "$(MULTILIB_REQUIRED)" \ |
| "$(if $(MULTILIB_OSDIRNAMES),,$(MULTIARCH_DIRNAME))" \ |
| "$(MULTILIB_REUSE)" \ |
| "@enable_multilib@" \ |
| > tmp-mlib.h; \ |
| else \ |
| $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' '' \ |
| "$(MULTIARCH_DIRNAME)" '' no \ |
| > tmp-mlib.h; \ |
| fi |
| $(SHELL) $(srcdir)/../move-if-change tmp-mlib.h multilib.h |
| $(STAMP) s-mlib |
| # |
| # Compiling object files from source files. |
| |
| # Note that dependencies on obstack.h are not written |
| # because that file is not part of GCC. |
| |
| srcextra: gcc.srcextra lang.srcextra |
| |
| gcc.srcextra: gengtype-lex.c |
| -cp -p $^ $(srcdir) |
| |
| graph.o: graph.c graph.h $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DIAGNOSTIC_CORE_H) sbitmap.h $(BASIC_BLOCK_H) $(CFGLOOP_H) \ |
| $(PRETTY_PRINT_H) dumpfile.h |
| |
| sbitmap.o: sbitmap.c sbitmap.h $(CONFIG_H) $(SYSTEM_H) coretypes.h |
| sparseset.o: sparseset.c $(SYSTEM_H) sparseset.h $(CONFIG_H) |
| |
| AR_OBJS = file-find.o |
| AR_LIBS = @COLLECT2_LIBS@ |
| |
| gcc-ar$(exeext): gcc-ar.o $(AR_OBJS) $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ar.o -o $@ \ |
| $(AR_OBJS) $(LIBS) $(AR_LIBS) |
| |
| gcc-nm$(exeext): gcc-nm.o $(AR_OBJS) $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-nm.o -o $@ \ |
| $(AR_OBJS) $(LIBS) $(AR_LIBS) |
| |
| gcc-ranlib$(exeext): gcc-ranlib.o $(AR_OBJS) $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ranlib.o -o $@ \ |
| $(AR_OBJS) $(LIBS) $(AR_LIBS) |
| |
| CFLAGS-gcc-ar.o += $(DRIVER_DEFINES) \ |
| -DTARGET_MACHINE=\"$(target_noncanonical)\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ar\" |
| |
| gcc-ar.o: gcc-ar.c $(CONFIG_H) $(SYSTEM_H) $(LIBIBERTY_H) |
| |
| CFLAGS-gcc-ranlib.o += $(DRIVER_DEFINES) \ |
| -DTARGET_MACHINE=\"$(target_noncanonical)\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ranlib\" |
| |
| gcc-ranlib.o: gcc-ranlib.c $(CONFIG_H) $(SYSTEM_H) $(LIBIBERTY_H) |
| |
| CFLAGS-gcc-nm.o += $(DRIVER_DEFINES) \ |
| -DTARGET_MACHINE=\"$(target_noncanonical)\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"nm\" |
| |
| gcc-nm.o: gcc-nm.c $(CONFIG_H) $(SYSTEM_H) $(LIBIBERTY_H) |
| |
| # ??? the implicit rules dont trigger if the source file has a different name |
| # so copy instead |
| gcc-ranlib.c: gcc-ar.c |
| cp $^ $@ |
| |
| gcc-nm.c: gcc-ar.c |
| cp $^ $@ |
| |
| COLLECT2_OBJS = collect2.o collect2-aix.o tlink.o vec.o ggc-none.o file-find.o |
| COLLECT2_LIBS = @COLLECT2_LIBS@ |
| collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS) |
| # Don't try modifying collect2 (aka ld) in place--it might be linking this. |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o T$@ \ |
| $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS) |
| mv -f T$@ $@ |
| |
| CFLAGS-collect2.o += -DTARGET_MACHINE=\"$(target_noncanonical)\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ |
| collect2.o : collect2.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h \ |
| $(OBSTACK_H) $(DEMANGLE_H) collect2.h collect2-aix.h version.h \ |
| $(DIAGNOSTIC_H) file-find.h |
| |
| collect2-aix.o : collect2-aix.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| collect2-aix.h |
| |
| tlink.o: tlink.c $(DEMANGLE_H) $(HASHTAB_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(OBSTACK_H) collect2.h intl.h $(DIAGNOSTIC_CORE_H) $(VEC_H) |
| |
| lto-wrapper$(exeext): lto-wrapper.o ggc-none.o libcommon-target.a $(LIBDEPS) |
| +$(LINKER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o T$@ \ |
| lto-wrapper.o ggc-none.o libcommon-target.a $(LIBS) |
| mv -f T$@ $@ |
| |
| lto-wrapper.o: lto-wrapper.c $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h \ |
| $(OBSTACK_H) $(DIAGNOSTIC_H) $(OPTS_H) $(OPTIONS_H) |
| |
| # Files used by all variants of C or by the stand-alone pre-processor. |
| c-family/cppspec.o: c-family/cppspec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(GCC_H) $(OPTS_H) |
| |
| c-family/c-common.o : c-family/c-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) \ |
| $(OBSTACK_H) $(C_COMMON_H) $(FLAGS_H) toplev.h output.h $(C_PRAGMA_H) \ |
| $(GGC_H) builtin-types.def builtin-attrs.def \ |
| $(DIAGNOSTIC_H) langhooks.h c-family/c-objc.h \ |
| $(TARGET_H) tree-iterator.h langhooks.h tree-mudflap.h \ |
| intl.h $(OPTS_H) $(CPPLIB_H) $(TREE_INLINE_H) $(HASHTAB_H) \ |
| $(BUILTINS_DEF) $(CGRAPH_H) $(TARGET_DEF_H) \ |
| gt-c-family-c-common.h $(COMMON_TARGET_H) |
| |
| c-family/c-cppbuiltin.o : c-family/c-cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(TREE_H) version.h $(C_COMMON_H) $(C_PRAGMA_H) \ |
| $(FLAGS_H) output.h $(TREE_H) $(TARGET_H) $(COMMON_TARGET_H) \ |
| $(TM_P_H) debug.h $(CPP_ID_DATA_H) cppbuiltin.h |
| |
| c-family/c-dump.o : c-family/c-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(TREE_DUMP_H) |
| |
| c-family/c-format.o : c-family/c-format.c c-family/c-format.h \ |
| $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) langhooks.h \ |
| $(C_COMMON_H) $(FLAGS_H) intl.h $(C_TARGET_H) \ |
| $(DIAGNOSTIC_CORE_H) alloc-pool.h c-family/c-objc.h |
| |
| c-family/c-gimplify.o : c-family/c-gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| $(C_COMMON_H) $(DIAGNOSTIC_CORE_H) $(GIMPLE_H) \ |
| $(FLAGS_H) langhooks.h $(LANGHOOKS_DEF_H) \ |
| $(TM_H) coretypes.h $(C_PRETTY_PRINT_H) $(CGRAPH_H) \ |
| dumpfile.h $(TREE_INLINE_H) |
| |
| c-family/c-lex.o : c-family/c-lex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(FIXED_VALUE_H) debug.h $(C_COMMON_H) $(SPLAY_TREE_H) \ |
| $(C_PRAGMA_H) $(INPUT_H) intl.h $(FLAGS_H) \ |
| $(CPPLIB_H) $(TARGET_H) $(TIMEVAR_H) |
| |
| c-family/c-omp.o : c-family/c-omp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(C_COMMON_H) $(GIMPLE_H) langhooks.h |
| |
| CFLAGS-c-family/c-opts.o += @TARGET_SYSTEM_ROOT_DEFINE@ |
| c-family/c-opts.o : c-family/c-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(C_PRAGMA_H) $(FLAGS_H) toplev.h langhooks.h \ |
| $(DIAGNOSTIC_H) intl.h debug.h $(C_COMMON_H) $(C_TARGET_H) \ |
| $(OPTS_H) $(OPTIONS_H) $(MKDEPS_H) incpath.h cppdefault.h |
| |
| CFLAGS-c-family/c-pch.o += -DHOST_MACHINE=\"$(host)\" \ |
| -DTARGET_MACHINE=\"$(target)\" |
| c-family/c-pch.o : c-family/c-pch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(CPPLIB_H) $(TREE_H) $(C_COMMON_H) output.h $(C_PRAGMA_H) \ |
| $(GGC_H) debug.h langhooks.h $(FLAGS_H) hosthooks.h version.h \ |
| $(TARGET_H) $(OPTS_H) $(TIMEVAR_H) |
| |
| c-family/c-ppoutput.o : c-family/c-ppoutput.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(C_COMMON_H) $(TREE_H) $(CPPLIB_H) $(CPP_INTERNAL_H) \ |
| $(C_PRAGMA_H) |
| |
| c-family/c-pragma.o: c-family/c-pragma.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(FUNCTION_H) $(C_PRAGMA_H) output.h \ |
| $(TM_P_H) $(C_COMMON_H) $(TARGET_H) $(CPPLIB_H) $(FLAGS_H) \ |
| $(DIAGNOSTIC_H) $(OPTS_H) $(PLUGINS_H) \ |
| gt-c-family-c-pragma.h |
| |
| c-family/c-pretty-print.o : c-family/c-pretty-print.c $(C_PRETTY_PRINT_H) \ |
| $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(DIAGNOSTIC_H) tree-iterator.h intl.h $(TREE_PRETTY_PRINT_H) |
| |
| c-family/c-semantics.o : c-family/c-semantics.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(TREE_H) $(FLAGS_H) \ |
| $(C_COMMON_H) $(FUNCTION_H) langhooks.h $(SPLAY_TREE_H) $(TIMEVAR_H) \ |
| tree-iterator.h |
| |
| c-family/c-ada-spec.o : c-family/c-ada-spec.c c-family/c-ada-spec.h \ |
| $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(CPP_ID_DATA_H) $(TM_H) \ |
| coretypes.h tree-iterator.h dumpfile.h |
| |
| c-family/stub-objc.o : c-family/stub-objc.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TREE_H) $(C_COMMON_H) c-family/c-objc.h |
| |
| default-c.o: config/default-c.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(C_TARGET_H) $(C_TARGET_DEF_H) |
| $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \ |
| $< $(OUTPUT_OPTION) |
| |
| # Files used by all variants of C and some other languages. |
| |
| attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(FLAGS_H) $(DIAGNOSTIC_CORE_H) $(GGC_H) $(TM_P_H) \ |
| $(TARGET_H) langhooks.h $(CPPLIB_H) $(PLUGIN_H) |
| |
| incpath.o: incpath.c incpath.h $(CONFIG_H) $(SYSTEM_H) $(CPPLIB_H) \ |
| intl.h prefix.h coretypes.h $(TM_H) cppdefault.h $(TARGET_H) \ |
| $(MACHMODE_H) |
| |
| CFLAGS-prefix.o += -DPREFIX=\"$(prefix)\" -DBASEVER=$(BASEVER_s) |
| prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) coretypes.h prefix.h \ |
| $(COMMON_TARGET_H) Makefile $(BASEVER) |
| |
| # Language-independent files. |
| |
| DRIVER_DEFINES = \ |
| -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \ |
| -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \ |
| -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \ |
| -DDEFAULT_TARGET_VERSION=\"$(version)\" \ |
| -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \ |
| -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \ |
| -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ \ |
| $(VALGRIND_DRIVER_DEFINES) \ |
| `test "X$${SHLIB}" = "X" || test "@enable_shared@" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` \ |
| -DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\"" |
| |
| gcc.o: gcc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) intl.h multilib.h \ |
| Makefile $(lang_specs_files) specs.h prefix.h $(GCC_H) $(FLAGS_H) \ |
| configargs.h $(OBSTACK_H) $(OPTS_H) $(DIAGNOSTIC_H) $(VEC_H) $(PARAMS_H) |
| (SHLIB='$(SHLIB)'; \ |
| $(COMPILER) $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \ |
| $(DRIVER_DEFINES) \ |
| -c $(srcdir)/gcc.c $(OUTPUT_OPTION)) |
| |
| specs.h : s-specs ; @true |
| s-specs : Makefile |
| lsf="$(lang_specs_files)"; for f in $$lsf; do \ |
| echo "#include \"$$f\""; \ |
| done | sed 's|$(srcdir)/||' > tmp-specs.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-specs.h specs.h |
| $(STAMP) s-specs |
| |
| optionlist: s-options ; @true |
| s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk |
| $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist |
| $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist |
| $(STAMP) s-options |
| |
| options.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
| $(srcdir)/optc-gen.awk |
| $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ |
| -f $(srcdir)/optc-gen.awk \ |
| -v header_name="config.h system.h coretypes.h options.h tm.h" < $< > $@ |
| |
| options-save.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
| $(srcdir)/optc-save-gen.awk |
| $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ |
| -f $(srcdir)/optc-save-gen.awk \ |
| -v header_name="config.h system.h coretypes.h tm.h" < $< > $@ |
| |
| options.h: s-options-h ; @true |
| s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \ |
| $(srcdir)/opth-gen.awk |
| $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \ |
| -f $(srcdir)/opth-gen.awk \ |
| < $< > tmp-options.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-options.h options.h |
| $(STAMP) $@ |
| |
| options.o: options.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(OPTS_H) intl.h $(OPTIONS_C_EXTRA) insn-attr-common.h |
| |
| options-save.o: options-save.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TARGET_H) $(FLAGS_H) \ |
| $(TM_H) $(OPTS_H) intl.h $(OPTIONS_C_EXTRA) |
| |
| dumpvers: dumpvers.c |
| |
| CFLAGS-version.o += -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \ |
| -DREVISION=$(REVISION_s) \ |
| -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \ |
| -DBUGURL=$(BUGURL_s) |
| version.o: version.c version.h $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE) |
| |
| gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(HASHTAB_H) $(SPLAY_TREE_H) $(OBSTACK_H) $(BITMAP_H) \ |
| $(INPUT_H) $(TREE_H) $(RTL_H) $(FUNCTION_H) insn-config.h $(EXPR_H) \ |
| hard-reg-set.h $(BASIC_BLOCK_H) cselib.h $(INSN_ADDR_H) $(OPTABS_H) \ |
| $(LIBFUNCS_H) debug.h $(GGC_H) $(CGRAPH_H) $(TREE_FLOW_H) reload.h \ |
| $(CPP_ID_DATA_H) tree-chrec.h $(EXCEPT_H) output.h \ |
| $(CFGLOOP_H) $(TARGET_H) $(IPA_PROP_H) $(LTO_STREAMER_H) \ |
| target-globals.h |
| |
| trans-mem.o : trans-mem.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(GIMPLE_H) $(TREE_FLOW_H) $(TREE_PASS_H) $(TREE_INLINE_H) \ |
| $(DIAGNOSTIC_CORE_H) $(DEMANGLE_H) output.h $(TRANS_MEM_H) \ |
| $(PARAMS_H) $(TARGET_H) langhooks.h \ |
| $(GIMPLE_PRETTY_PRINT_H) $(CFGLOOP_H) \ |
| gt-trans-mem.h |
| |
| ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(GGC_H) $(HASHTAB_H) $(DIAGNOSTIC_CORE_H) $(PARAMS_H) hosthooks.h \ |
| $(HOSTHOOKS_DEF_H) $(VEC_H) $(PLUGIN_H) $(GGC_INTERNAL_H) $(TIMEVAR_H) |
| |
| ggc-page.o: ggc-page.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \ |
| $(FLAGS_H) $(DIAGNOSTIC_CORE_H) $(GGC_H) $(TIMEVAR_H) $(TM_P_H) $(PARAMS_H) \ |
| $(TREE_FLOW_H) $(PLUGIN_H) $(GGC_INTERNAL_H) |
| |
| ggc-none.o: ggc-none.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(GGC_H) \ |
| $(BCONFIG_H) |
| |
| stringpool.o: stringpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(GGC_H) $(GGC_INTERNAL_H) gt-stringpool.h $(CPPLIB_H) $(SYMTAB_H) |
| |
| convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(FLAGS_H) convert.h $(DIAGNOSTIC_CORE_H) langhooks.h |
| |
| double-int.o: double-int.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) |
| |
| # lto-compress.o needs $(ZLIBINC) added to the include flags. |
| CFLAGS-lto-compress.o += $(ZLIBINC) |
| lto-compress.o: lto-compress.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) langhooks.h $(LTO_STREAMER_H) $(LTO_SECTION_H) \ |
| lto-compress.h $(DIAGNOSTIC_CORE_H) $(DIAGNOSTIC_CORE_H) |
| data-streamer-in.o: data-streamer-in.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DATA_STREAMER_H) $(DIAGNOSTIC_H) |
| data-streamer-out.o: data-streamer-out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DATA_STREAMER_H) |
| data-streamer.o: data-streamer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DATA_STREAMER_H) |
| gimple-streamer-in.o: gimple-streamer-in.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GIMPLE_STREAMER_H) $(TREE_FLOW_H) $(DATA_STREAMER_H) \ |
| $(TREE_STREAMER_H) $(DIAGNOSTIC_H) |
| gimple-streamer-out.o: gimple-streamer-out.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GIMPLE_STREAMER_H) $(DATA_STREAMER_H) $(TREE_FLOW_H) \ |
| $(LTO_STREAMER_H) $(TREE_STREAMER_H) |
| tree-streamer.o: tree-streamer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_STREAMER_H) $(STREAMER_HOOKS_H) |
| tree-streamer-in.o: tree-streamer-in.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(DIAGNOSTIC_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_STREAMER_H) \ |
| $(DATA_STREAMER_H) $(STREAMER_HOOKS_H) $(LTO_STREAMER_H) |
| tree-streamer-out.o: tree-streamer-out.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(DIAGNOSTIC_H) $(TREE_STREAMER_H) $(DATA_STREAMER_H) \ |
| $(STREAMER_HOOKS_H) |
| streamer-hooks.o: streamer-hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(STREAMER_HOOKS_H) |
| lto-cgraph.o: lto-cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(DIAGNOSTIC_CORE_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) input.h \ |
| $(HASHTAB_H) langhooks.h $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(CGRAPH_H) $(FUNCTION_H) $(GGC_H) $(DIAGNOSTIC_CORE_H) \ |
| $(EXCEPT_H) $(TIMEVAR_H) pointer-set.h $(LTO_STREAMER_H) \ |
| $(GCOV_IO_H) $(DATA_STREAMER_H) $(TREE_STREAMER_H) $(TREE_PASS_H) profile.h |
| lto-streamer-in.o: lto-streamer-in.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) toplev.h $(DIAGNOSTIC_CORE_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) \ |
| input.h $(HASHTAB_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| $(CGRAPH_H) $(FUNCTION_H) $(GGC_H) $(DIAGNOSTIC_H) $(EXCEPT_H) debug.h \ |
| $(IPA_UTILS_H) $(LTO_STREAMER_H) toplev.h \ |
| $(DATA_STREAMER_H) $(GIMPLE_STREAMER_H) $(TREE_STREAMER_H) |
| lto-streamer-out.o : lto-streamer-out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(DIAGNOSTIC_CORE_H) $(TREE_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) input.h \ |
| $(HASHTAB_H) $(BASIC_BLOCK_H) tree-iterator.h \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(CGRAPH_H) $(FUNCTION_H) $(GGC_H) \ |
| $(DIAGNOSTIC_CORE_H) $(EXCEPT_H) $(LTO_STREAMER_H) $(DIAGNOSTIC_CORE_H) \ |
| $(DATA_STREAMER_H) $(STREAMER_HOOKS_H) $(GIMPLE_STREAMER_H) \ |
| $(TREE_STREAMER_H) |
| lto-section-in.o: lto-section-in.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(DIAGNOSTIC_CORE_H) $(EXPR_H) $(FLAGS_H) $(PARAMS_H) input.h \ |
| $(HASHTAB_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(CGRAPH_H) $(FUNCTION_H) \ |
| $(GGC_H) $(DIAGNOSTIC_CORE_H) $(EXCEPT_H) $(TIMEVAR_H) \ |
| $(LTO_STREAMER_H) lto-compress.h |
| lto-section-out.o : lto-section-out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(DIAGNOSTIC_CORE_H) $(TREE_H) $(EXPR_H) $(PARAMS_H) input.h \ |
| $(HASHTAB_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) \ |
| $(CGRAPH_H) $(FUNCTION_H) $(GGC_H) $(EXCEPT_H) pointer-set.h \ |
| $(BITMAP_H) langhooks.h $(LTO_STREAMER_H) lto-compress.h \ |
| $(DATA_STREAMER_H) |
| lto-symtab.o: lto-symtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(GIMPLE_H) $(GGC_H) $(HASHTAB_H) \ |
| $(LTO_STREAMER_H) $(LINKER_PLUGIN_API_H) |
| lto-opts.o: lto-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \ |
| $(HASHTAB_H) $(GGC_H) $(BITMAP_H) $(FLAGS_H) $(OPTS_H) $(OPTIONS_H) \ |
| $(COMMON_TARGET_H) $(DIAGNOSTIC_H) $(LTO_STREAMER_H) |
| lto-streamer.o: lto-streamer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(GIMPLE_H) $(BITMAP_H) $(LTO_STREAMER_H) $(FLAGS_H) \ |
| $(TREE_FLOW_H) $(DIAGNOSTIC_CORE_H) $(LTO_SYMTAB_H) toplev.h \ |
| $(DIAGNOSTIC_CORE_H) $(STREAMER_HOOKS_H) |
| langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TIMEVAR_H) \ |
| $(TREE_H) toplev.h $(DIAGNOSTIC_CORE_H) $(TREE_INLINE_H) $(RTL_H) insn-config.h \ |
| langhooks.h $(TARGET_H) $(LANGHOOKS_DEF_H) $(FLAGS_H) $(GGC_H) $(DIAGNOSTIC_H) \ |
| intl.h $(GIMPLE_H) $(CGRAPH_H) output.h tree-diagnostic.h |
| tree.o: tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| all-tree.def $(FLAGS_H) $(FUNCTION_H) $(PARAMS_H) \ |
| toplev.h $(DIAGNOSTIC_CORE_H) $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) \ |
| langhooks.h gt-tree.h $(TREE_INLINE_H) tree-iterator.h \ |
| $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(OBSTACK_H) pointer-set.h \ |
| $(TREE_PASS_H) $(LANGHOOKS_DEF_H) $(DIAGNOSTIC_H) $(CGRAPH_H) \ |
| $(EXCEPT_H) debug.h intl.h tree-diagnostic.h $(TREE_PRETTY_PRINT_H) \ |
| $(COMMON_TARGET_H) |
| tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TREE_H) \ |
| langhooks.h $(TREE_DUMP_H) tree-iterator.h |
| tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(RTL_H) $(FLAGS_H) $(PARAMS_H) $(INPUT_H) insn-config.h \ |
| $(HASHTAB_H) langhooks.h $(TREE_INLINE_H) $(CGRAPH_H) \ |
| intl.h $(FUNCTION_H) $(GIMPLE_H) \ |
| debug.h $(DIAGNOSTIC_H) $(EXCEPT_H) $(TREE_FLOW_H) tree-iterator.h tree-mudflap.h \ |
| $(IPA_PROP_H) value-prof.h $(TREE_PASS_H) $(TARGET_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(TREE_H) $(GGC_H) langhooks.h tree-iterator.h \ |
| $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(GIMPLE_PRETTY_PRINT_H) |
| stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(PARAMS_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) $(RTL_H) \ |
| $(GGC_H) $(TM_P_H) $(TARGET_H) langhooks.h $(REGS_H) gt-stor-layout.h \ |
| $(DIAGNOSTIC_CORE_H) $(CGRAPH_H) $(TREE_INLINE_H) $(TREE_DUMP_H) $(GIMPLE_H) |
| asan.o : asan.c asan.h $(CONFIG_H) $(SYSTEM_H) $(GIMPLE_H) \ |
| output.h coretypes.h $(GIMPLE_PRETTY_PRINT_H) \ |
| tree-iterator.h $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| $(TARGET_H) $(EXPR_H) $(OPTABS_H) $(TM_P_H) langhooks.h \ |
| $(HASH_TABLE_H) alloc-pool.h |
| tsan.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TREE_INLINE_H) \ |
| $(GIMPLE_H) $(DIAGNOSTIC_H) langhooks.h \ |
| $(TM_H) coretypes.h $(TREE_DUMP_H) $(TREE_PASS_H) $(CGRAPH_H) $(GGC_H) \ |
| $(BASIC_BLOCK_H) $(FLAGS_H) $(FUNCTION_H) \ |
| $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_CORE_H) $(GIMPLE_H) tree-iterator.h \ |
| intl.h cfghooks.h output.h options.h c-family/c-common.h tsan.h asan.h \ |
| tree-ssa-propagate.h |
| tree-ssa-tail-merge.o: tree-ssa-tail-merge.c \ |
| $(SYSTEM_H) $(CONFIG_H) coretypes.h $(TM_H) $(BITMAP_H) \ |
| $(FLAGS_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) $(TREE_DUMP_H) $(HASH_TABLE_H) \ |
| $(GIMPLE_H) $(FUNCTION_H) tree-ssa-sccvn.h \ |
| $(CGRAPH_H) $(GIMPLE_PRETTY_PRINT_H) $(PARAMS_H) |
| tree-ssa-structalias.o: tree-ssa-structalias.c \ |
| $(SYSTEM_H) $(CONFIG_H) coretypes.h $(TM_H) $(GGC_H) $(OBSTACK_H) $(BITMAP_H) \ |
| $(FLAGS_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(DIAGNOSTIC_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) \ |
| $(GIMPLE_H) $(HASHTAB_H) $(FUNCTION_H) $(CGRAPH_H) \ |
| $(TREE_PASS_H) alloc-pool.h $(SPLAY_TREE_H) $(PARAMS_H) \ |
| $(CGRAPH_H) $(ALIAS_H) pointer-set.h |
| tree-ssa-uninit.o : tree-ssa-uninit.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(DIAGNOSTIC_H) \ |
| $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(TREE_PASS_H) $(BASIC_BLOCK_H) $(BITMAP_H) \ |
| $(FLAGS_H) $(HASHTAB_H) pointer-set.h \ |
| $(GIMPLE_H) $(TREE_INLINE_H) $(GIMPLE_PRETTY_PRINT_H) $(PARAMS_H) |
| tree-ssa.o : tree-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(EXPR_H) $(DIAGNOSTIC_H) \ |
| toplev.h $(FUNCTION_H) $(TM_H) coretypes.h \ |
| langhooks.h $(TREE_PASS_H) $(BASIC_BLOCK_H) $(BITMAP_H) \ |
| $(FLAGS_H) $(GGC_H) $(HASHTAB_H) pointer-set.h \ |
| $(GIMPLE_H) $(TREE_INLINE_H) $(TARGET_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(CFGLOOP_H) |
| tree-into-ssa.o : tree-into-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(DIAGNOSTIC_CORE_H) \ |
| $(FUNCTION_H) $(TM_H) coretypes.h \ |
| langhooks.h domwalk.h $(TREE_PASS_H) $(PARAMS_H) $(BASIC_BLOCK_H) \ |
| $(BITMAP_H) $(CFGLOOP_H) $(FLAGS_H) $(HASHTAB_H) \ |
| $(GIMPLE_H) $(TREE_INLINE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-ter.o : tree-ssa-ter.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(TREE_SSA_LIVE_H) $(BITMAP_H) $(FLAGS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-coalesce.o : tree-ssa-coalesce.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(TREE_SSA_LIVE_H) $(BITMAP_H) $(FLAGS_H) $(HASH_TABLE_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-outof-ssa.o : tree-outof-ssa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(TREE_SSA_LIVE_H) $(BASIC_BLOCK_H) $(BITMAP_H) $(GGC_H) \ |
| $(EXPR_H) $(SSAEXPAND_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-dse.o : tree-ssa-dse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(GGC_H) $(TREE_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) domwalk.h $(FLAGS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) langhooks.h |
| tree-ssa-forwprop.o : tree-ssa-forwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(TM_P_H) $(BASIC_BLOCK_H) $(CFGLOOP_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) \ |
| langhooks.h $(FLAGS_H) $(GIMPLE_H) $(GIMPLE_PRETTY_PRINT_H) $(EXPR_H) \ |
| $(OPTABS_H) tree-ssa-propagate.h |
| tree-ssa-phiprop.o : tree-ssa-phiprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) \ |
| langhooks.h $(FLAGS_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-ifcombine.o : tree-ssa-ifcombine.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(TREE_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-ssa-phiopt.o : tree-ssa-phiopt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(GGC_H) $(TREE_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) langhooks.h $(FLAGS_H) \ |
| $(DIAGNOSTIC_H) pointer-set.h domwalk.h $(CFGLOOP_H) \ |
| $(TREE_DATA_REF_H) $(TREE_PRETTY_PRINT_H) $(GIMPLE_PRETTY_PRINT_H) \ |
| insn-config.h $(EXPR_H) $(OPTABS_H) |
| tree-nrv.o : tree-nrv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(FUNCTION_H) $(BASIC_BLOCK_H) $(FLAGS_H) \ |
| $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| langhooks.h $(TREE_PRETTY_PRINT_H) |
| tree-ssa-copy.o : tree-ssa-copy.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) $(DIAGNOSTIC_H) \ |
| $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(BASIC_BLOCK_H) $(TREE_PASS_H) langhooks.h tree-ssa-propagate.h \ |
| $(FLAGS_H) $(CFGLOOP_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-propagate.o : tree-ssa-propagate.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_H) $(FUNCTION_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(BASIC_BLOCK_H) langhooks.h \ |
| tree-ssa-propagate.h $(VEC_H) value-prof.h gt-tree-ssa-propagate.h $(FLAGS_H) \ |
| $(GIMPLE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-dom.o : tree-ssa-dom.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(DIAGNOSTIC_H) \ |
| $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(BASIC_BLOCK_H) domwalk.h $(TREE_PASS_H) $(FLAGS_H) langhooks.h \ |
| tree-ssa-propagate.h $(CFGLOOP_H) $(PARAMS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-uncprop.o : tree-ssa-uncprop.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_H) $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(BASIC_BLOCK_H) domwalk.h $(TREE_PASS_H) $(FLAGS_H) \ |
| tree-ssa-propagate.h |
| tree-ssa-threadedge.o : tree-ssa-threadedge.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(TREE_H) $(FLAGS_H) $(TM_P_H) \ |
| $(BASIC_BLOCK_H) $(CFGLOOP_H) \ |
| $(FUNCTION_H) $(DIAGNOSTIC_H) $(TIMEVAR_H) $(TREE_FLOW_H) \ |
| tree-ssa-propagate.h langhooks.h \ |
| $(PARAMS_H) |
| tree-ssa-threadupdate.o : tree-ssa-threadupdate.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(HASH_TABLE_H) \ |
| $(DIAGNOSTIC_H) $(FUNCTION_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(BASIC_BLOCK_H) $(FLAGS_H) $(CFGLOOP_H) |
| tree-ssanames.o : tree-ssanames.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_PASS_H) |
| tree-phinodes.o : tree-phinodes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(GGC_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) \ |
| gt-tree-phinodes.h $(DIAGNOSTIC_CORE_H) $(GIMPLE_H) |
| domwalk.o : domwalk.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(BASIC_BLOCK_H) domwalk.h sbitmap.h |
| tree-ssa-live.o : tree-ssa-live.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h $(TIMEVAR_H) \ |
| $(TREE_SSA_LIVE_H) $(BITMAP_H) debug.h $(FLAGS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(GIMPLE_H) |
| tree-ssa-copyrename.o : tree-ssa-copyrename.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) $(FUNCTION_H) \ |
| $(TREE_PASS_H) $(TM_H) coretypes.h $(TREE_SSA_LIVE_H) \ |
| $(BASIC_BLOCK_H) $(BITMAP_H) $(FLAGS_H) $(HASHTAB_H) langhooks.h \ |
| $(GIMPLE_H) $(TREE_INLINE_H) $(GIMPLE_H) |
| tree-ssa-pre.o : tree-ssa-pre.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) \ |
| $(TM_H) coretypes.h $(TREE_PASS_H) $(FLAGS_H) langhooks.h \ |
| $(CFGLOOP_H) alloc-pool.h $(BASIC_BLOCK_H) $(BITMAP_H) $(HASH_TABLE_H) \ |
| $(GIMPLE_H) $(TREE_INLINE_H) tree-iterator.h tree-ssa-sccvn.h $(PARAMS_H) \ |
| $(DBGCNT_H) tree-scalar-evolution.h $(GIMPLE_PRETTY_PRINT_H) domwalk.h |
| tree-ssa-sccvn.o : tree-ssa-sccvn.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) \ |
| $(TM_H) coretypes.h dumpfile.h $(FLAGS_H) $(CFGLOOP_H) \ |
| alloc-pool.h $(BASIC_BLOCK_H) $(BITMAP_H) $(HASHTAB_H) $(GIMPLE_H) \ |
| $(TREE_INLINE_H) tree-ssa-propagate.h tree-ssa-sccvn.h \ |
| $(PARAMS_H) $(GIMPLE_PRETTY_PRINT_H) gimple-fold.h |
| gimple-ssa-strength-reduction.o : gimple-ssa-strength-reduction.c $(CONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(TREE_H) $(GIMPLE_H) $(BASIC_BLOCK_H) \ |
| $(TREE_PASS_H) $(CFGLOOP_H) $(TREE_PRETTY_PRINT_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) alloc-pool.h $(TREE_FLOW_H) domwalk.h \ |
| pointer-set.h expmed.h |
| tree-vrp.o : tree-vrp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(DIAGNOSTIC_CORE_H) $(GGC_H) \ |
| $(BASIC_BLOCK_H) tree-ssa-propagate.h $(FLAGS_H) $(TREE_DUMP_H) \ |
| $(CFGLOOP_H) $(SCEV_H) intl.h \ |
| $(GIMPLE_PRETTY_PRINT_H) gimple-fold.h $(OPTABS_H) $(EXPR_H) |
| tree-cfg.o : tree-cfg.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) $(FLAGS_H) $(TARGET_H) \ |
| $(DIAGNOSTIC_CORE_H) $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(TREE_DUMP_H) $(EXCEPT_H) $(CFGLOOP_H) $(TREE_PASS_H) \ |
| $(BASIC_BLOCK_H) \ |
| value-prof.h tree-ssa-propagate.h $(TREE_INLINE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-cfgcleanup.o : tree-cfgcleanup.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) $(FLAGS_H) \ |
| $(DIAGNOSTIC_CORE_H) $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(EXCEPT_H) langhooks.h $(CFGLOOP_H) $(TREE_PASS_H) \ |
| $(BASIC_BLOCK_H) $(HASHTAB_H) \ |
| tree-ssa-propagate.h $(SCEV_H) |
| tree-tailcall.o : tree-tailcall.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(EXCEPT_H) $(TREE_PASS_H) $(FLAGS_H) langhooks.h \ |
| $(BASIC_BLOCK_H) $(DBGCNT_H) $(GIMPLE_PRETTY_PRINT_H) $(TARGET_H) \ |
| $(COMMON_TARGET_H) $(CFGLOOP_H) |
| tree-ssa-sink.o : tree-ssa-sink.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) \ |
| $(TM_H) coretypes.h $(TREE_PASS_H) $(FLAGS_H) alloc-pool.h \ |
| $(BASIC_BLOCK_H) $(BITMAP_H) $(CFGLOOP_H) $(HASHTAB_H) \ |
| $(GIMPLE_H) $(TREE_INLINE_H) tree-iterator.h \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| tree-nested.o: tree-nested.c $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TREE_H) \ |
| $(TM_P_H) $(FUNCTION_H) $(TREE_DUMP_H) $(TREE_INLINE_H) \ |
| tree-iterator.h $(GIMPLE_H) $(CGRAPH_H) $(EXPR_H) langhooks.h \ |
| gt-tree-nested.h coretypes.h $(TREE_FLOW_H) pointer-set.h |
| tree-if-conv.o: tree-if-conv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(FLAGS_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) \ |
| $(CFGLOOP_H) $(TREE_DATA_REF_H) $(TREE_PASS_H) $(DIAGNOSTIC_H) \ |
| $(DBGCNT_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-iterator.o : tree-iterator.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| coretypes.h $(GGC_H) tree-iterator.h $(GIMPLE_H) gt-tree-iterator.h |
| tree-dfa.o : tree-dfa.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) $(DIAGNOSTIC_H) \ |
| $(TREE_INLINE_H) $(HASHTAB_H) pointer-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| convert.h $(TM_H) coretypes.h langhooks.h \ |
| $(TREE_PASS_H) $(PARAMS_H) $(CGRAPH_H) $(BASIC_BLOCK_H) $(GIMPLE_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-ssa-operands.o : tree-ssa-operands.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(GGC_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \ |
| $(FLAGS_H) $(FUNCTION_H) $(TM_H) $(TIMEVAR_H) \ |
| coretypes.h dumpfile.h langhooks.h $(IPA_REFERENCE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-eh.o : tree-eh.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_H) $(FLAGS_H) $(FUNCTION_H) $(EXCEPT_H) langhooks.h \ |
| $(GGC_H) $(TREE_PASS_H) coretypes.h pointer-set.h \ |
| $(TREE_INLINE_H) tree-iterator.h toplev.h \ |
| $(DIAGNOSTIC_CORE_H) $(TARGET_H) $(CFGLOOP_H) |
| tree-ssa-loop.o : tree-ssa-loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(TM_P_H) $(BASIC_BLOCK_H) \ |
| $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| $(CFGLOOP_H) $(FLAGS_H) $(TREE_INLINE_H) $(SCEV_H) $(DIAGNOSTIC_CORE_H) $(TREE_VECTORIZER_H) |
| tree-ssa-loop-unswitch.o : tree-ssa-loop-unswitch.c $(TREE_FLOW_H) \ |
| $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) \ |
| $(PARAMS_H) $(DIAGNOSTIC_H) $(TM_H) \ |
| coretypes.h $(TREE_PASS_H) $(BASIC_BLOCK_H) \ |
| $(TREE_INLINE_H) |
| tree-ssa-address.o : tree-ssa-address.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(FLAGS_H) $(TREE_INLINE_H) $(RECOG_H) insn-config.h \ |
| $(EXPR_H) gt-tree-ssa-address.h $(GGC_H) tree-affine.h $(TARGET_H) \ |
| $(TREE_PRETTY_PRINT_H) expmed.h |
| tree-ssa-loop-niter.o : tree-ssa-loop-niter.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(PARAMS_H) \ |
| $(TREE_INLINE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(TREE_DATA_REF_H) \ |
| $(BASIC_BLOCK_H) $(GGC_H) intl.h $(GIMPLE_PRETTY_PRINT_H) $(TREE_PASS_H) |
| tree-ssa-loop-ivcanon.o : tree-ssa-loop-ivcanon.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(PARAMS_H) \ |
| $(TREE_INLINE_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h \ |
| $(FLAGS_H) $(TREE_PASS_H) $(SCEV_H) $(BASIC_BLOCK_H) $(TARGET_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-loop-ch.o : tree-ssa-loop-ch.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(TREE_INLINE_H) \ |
| $(DIAGNOSTIC_H) $(TM_H) coretypes.h \ |
| $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) |
| tree-ssa-loop-prefetch.o: tree-ssa-loop-prefetch.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(EXPR_H) \ |
| $(DIAGNOSTIC_H) $(TM_H) coretypes.h \ |
| $(TREE_PASS_H) $(RECOG_H) insn-config.h $(HASHTAB_H) \ |
| $(CFGLOOP_H) $(PARAMS_H) langhooks.h $(BASIC_BLOCK_H) \ |
| $(DIAGNOSTIC_CORE_H) langhooks.h $(TREE_INLINE_H) $(TREE_DATA_REF_H) \ |
| $(OPTABS_H) $(TREE_PRETTY_PRINT_H) |
| tree-predcom.o: tree-predcom.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_P_H) \ |
| $(CFGLOOP_H) $(TREE_FLOW_H) $(GGC_H) $(TREE_DATA_REF_H) \ |
| $(PARAMS_H) $(DIAGNOSTIC_H) $(TREE_PASS_H) $(TM_H) coretypes.h \ |
| tree-affine.h $(TREE_INLINE_H) $(TREE_PRETTY_PRINT_H) |
| tree-ssa-loop-ivopts.o : tree-ssa-loop-ivopts.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) $(EXPR_H) \ |
| $(DIAGNOSTIC_H) $(TM_H) coretypes.h \ |
| $(TREE_PASS_H) $(GGC_H) $(RECOG_H) insn-config.h $(HASHTAB_H) $(SCEV_H) \ |
| $(CFGLOOP_H) $(PARAMS_H) langhooks.h $(BASIC_BLOCK_H) \ |
| tree-affine.h pointer-set.h $(TARGET_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) tree-ssa-propagate.h |
| tree-affine.o : tree-affine.c tree-affine.h $(CONFIG_H) pointer-set.h \ |
| $(SYSTEM_H) $(TREE_H) $(GIMPLE_H) \ |
| coretypes.h dumpfile.h $(FLAGS_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-ssa-loop-manip.o : tree-ssa-loop-manip.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(TREE_H) \ |
| $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) \ |
| $(CFGLOOP_H) $(TREE_PASS_H) \ |
| $(SCEV_H) $(PARAMS_H) $(TREE_INLINE_H) langhooks.h |
| tree-ssa-loop-im.o : tree-ssa-loop-im.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) $(CFGLOOP_H) domwalk.h \ |
| $(PARAMS_H) $(DIAGNOSTIC_H) $(TM_H) coretypes.h \ |
| $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) \ |
| pointer-set.h tree-affine.h tree-ssa-propagate.h $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-math-opts.o : tree-ssa-math-opts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(FLAGS_H) $(TREE_H) $(TREE_FLOW_H) \ |
| $(TREE_PASS_H) alloc-pool.h $(BASIC_BLOCK_H) $(TARGET_H) \ |
| $(DIAGNOSTIC_H) $(RTL_H) $(EXPR_H) $(OPTABS_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-alias.o : tree-ssa-alias.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) $(TREE_INLINE_H) $(FLAGS_H) \ |
| $(FUNCTION_H) $(TIMEVAR_H) convert.h $(TM_H) coretypes.h dumpfile.h \ |
| langhooks.h \ |
| $(PARAMS_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_H) \ |
| $(GIMPLE_H) $(VEC_H) $(TARGET_H) \ |
| pointer-set.h alloc-pool.h \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-ssa-reassoc.o : tree-ssa-reassoc.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(DIAGNOSTIC_H) \ |
| $(TM_H) coretypes.h $(TREE_PASS_H) $(FLAGS_H) \ |
| tree-iterator.h $(BASIC_BLOCK_H) $(GIMPLE_H) $(TREE_INLINE_H) \ |
| $(VEC_H) langhooks.h alloc-pool.h pointer-set.h $(CFGLOOP_H) \ |
| $(TARGET_H) $(GIMPLE_PRETTY_PRINT_H) $(DIAGNOSTIC_CORE_H) $(PARAMS_H) |
| tree-optimize.o : tree-optimize.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(GGC_H) \ |
| $(DIAGNOSTIC_H) $(BASIC_BLOCK_H) $(FLAGS_H) $(TM_H) \ |
| coretypes.h toplev.h $(DIAGNOSTIC_CORE_H) $(FUNCTION_H) langhooks.h \ |
| $(FLAGS_H) $(CGRAPH_H) $(PLUGIN_H) \ |
| $(TREE_INLINE_H) $(GGC_H) $(CGRAPH_H) \ |
| $(TREE_PASS_H) $(CFGLOOP_H) $(EXCEPT_H) |
| |
| gimplify.o : gimplify.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(GIMPLE_H) \ |
| $(DIAGNOSTIC_H) $(TREE_INLINE_H) langhooks.h \ |
| $(LANGHOOKS_DEF_H) $(TREE_FLOW_H) $(CGRAPH_H) $(TIMEVAR_H) $(TM_H) \ |
| coretypes.h $(EXCEPT_H) $(FLAGS_H) $(RTL_H) $(FUNCTION_H) $(EXPR_H) \ |
| $(GGC_H) gt-gimplify.h $(HASHTAB_H) $(TARGET_H) $(DIAGNOSTIC_CORE_H) $(OPTABS_H) \ |
| $(SPLAY_TREE_H) $(VEC_H) tree-iterator.h $(TREE_PASS_H) $(TREE_PRETTY_PRINT_H) |
| gimple-iterator.o : gimple-iterator.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(GIMPLE_H) $(TREE_FLOW_H) value-prof.h |
| gimple-fold.o : gimple-fold.c $(TREE_FLOW_H) $(CONFIG_H) coretypes.h dumpfile.h \ |
| $(SYSTEM_H) $(RTL_H) $(TREE_H) $(TM_P_H) $(GGC_H) \ |
| $(FUNCTION_H) $(TM_H) $(BASIC_BLOCK_H) langhooks.h \ |
| tree-ssa-propagate.h $(FLAGS_H) $(TARGET_H) gimple-fold.h |
| gimple-low.o : gimple-low.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| $(DIAGNOSTIC_CORE_H) $(GIMPLE_H) $(TREE_INLINE_H) langhooks.h \ |
| $(LANGHOOKS_DEF_H) $(TREE_FLOW_H) $(TM_H) coretypes.h \ |
| $(EXCEPT_H) $(FLAGS_H) $(RTL_H) $(FUNCTION_H) $(TREE_PASS_H) \ |
| $(HASHTAB_H) $(DIAGNOSTIC_CORE_H) tree-iterator.h langhooks.h |
| omp-low.o : omp-low.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(RTL_H) $(GIMPLE_H) $(TREE_INLINE_H) langhooks.h $(DIAGNOSTIC_CORE_H) \ |
| $(TREE_FLOW_H) $(FLAGS_H) $(EXPR_H) $(DIAGNOSTIC_CORE_H) \ |
| $(TREE_PASS_H) $(GGC_H) $(EXCEPT_H) $(SPLAY_TREE_H) $(OPTABS_H) \ |
| $(CFGLOOP_H) tree-iterator.h gt-omp-low.h |
| tree-browser.o : tree-browser.c tree-browser.def $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TREE_H) $(TREE_PRETTY_PRINT_H) |
| omega.o : omega.c $(OMEGA_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TREE_H) $(DIAGNOSTIC_CORE_H) |
| tree-chrec.o : tree-chrec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TREE_PRETTY_PRINT_H) $(CFGLOOP_H) $(TREE_FLOW_H) $(SCEV_H) \ |
| $(PARAMS_H) |
| tree-scalar-evolution.o : tree-scalar-evolution.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(GIMPLE_PRETTY_PRINT_H) $(TREE_FLOW_H) $(CFGLOOP_H) $(SCEV_H) \ |
| $(PARAMS_H) gt-tree-scalar-evolution.h |
| tree-data-ref.o : tree-data-ref.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(GIMPLE_PRETTY_PRINT_H) $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ |
| langhooks.h tree-affine.h $(PARAMS_H) |
| sese.o : sese.c sese.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_PRETTY_PRINT_H) \ |
| $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(TREE_PASS_H) value-prof.h |
| graphite.o : graphite.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_CORE_H) \ |
| $(TREE_FLOW_H) $(TREE_DUMP_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h \ |
| $(DBGCNT_H) graphite-poly.h graphite-scop-detection.h \ |
| graphite-clast-to-gimple.h graphite-sese-to-poly.h |
| graphite-blocking.o : graphite-blocking.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ |
| sese.h graphite-poly.h |
| graphite-clast-to-gimple.o : graphite-clast-to-gimple.c $(CONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h \ |
| graphite-poly.h graphite-clast-to-gimple.h |
| graphite-dependences.o : graphite-dependences.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TREE_FLOW_H) $(TREE_PASS_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ |
| sese.h graphite-poly.h |
| graphite-interchange.o : graphite-interchange.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) \ |
| sese.h graphite-poly.h |
| graphite-poly.o : graphite-poly.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) $(GIMPLE_PRETTY_PRINT_H) \ |
| $(CFGLOOP_H) $(TREE_DATA_REF_H) sese.h graphite-poly.h |
| graphite-scop-detection.o : graphite-scop-detection.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(TREE_PASS_H) \ |
| sese.h graphite-poly.h graphite-scop-detection.h |
| graphite-sese-to-poly.o : graphite-sese-to-poly.c $(CONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(TREE_FLOW_H) $(TREE_PASS_H) $(CFGLOOP_H) \ |
| $(TREE_DATA_REF_H) domwalk.h sese.h graphite-poly.h \ |
| graphite-sese-to-poly.h |
| graphite-optimize-isl.o : graphite-optimize-isl.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(SCEV_H) \ |
| sese.h graphite-poly.h |
| tree-vect-loop.o: tree-vect-loop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(GGC_H) $(TREE_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) dumpfile.h \ |
| $(CFGLOOP_H) $(EXPR_H) $(RECOG_H) $(OPTABS_H) \ |
| $(DIAGNOSTIC_CORE_H) $(SCEV_H) $(TREE_VECTORIZER_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(TARGET_H) $(TREE_DATA_REF_H) |
| tree-vect-loop-manip.o: tree-vect-loop-manip.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TM_H) $(GGC_H) $(TREE_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(CFGLOOP_H) $(DIAGNOSTIC_CORE_H) \ |
| $(SCEV_H) $(TREE_VECTORIZER_H) langhooks.h $(GIMPLE_PRETTY_PRINT_H) |
| tree-vect-patterns.o: tree-vect-patterns.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h \ |
| $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(CFGLOOP_H) $(EXPR_H) $(OPTABS_H) $(PARAMS_H) \ |
| $(TREE_DATA_REF_H) $(TREE_VECTORIZER_H) $(RECOG_H) $(DIAGNOSTIC_CORE_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| tree-vect-slp.o: tree-vect-slp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| dumpfile.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \ |
| $(DIAGNOSTIC_H) $(TREE_FLOW_H) $(CFGLOOP_H) \ |
| $(EXPR_H) $(RECOG_H) $(OPTABS_H) $(TREE_VECTORIZER_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(TREE_DATA_REF_H) langhooks.h |
| tree-vect-stmts.o: tree-vect-stmts.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) \ |
| $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(CFGLOOP_H) \ |
| $(EXPR_H) $(RECOG_H) $(OPTABS_H) $(TREE_VECTORIZER_H) \ |
| langhooks.h $(GIMPLE_PRETTY_PRINT_H) |
| tree-vect-data-refs.o: tree-vect-data-refs.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TM_H) $(GGC_H) $(TREE_H) $(TARGET_H) $(BASIC_BLOCK_H) \ |
| $(TREE_FLOW_H) $(CFGLOOP_H) \ |
| $(EXPR_H) $(OPTABS_H) $(SCEV_H) $(TREE_VECTORIZER_H) \ |
| $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-vectorizer.o: tree-vectorizer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| dumpfile.h $(TM_H) $(GGC_H) $(TREE_H) $(TREE_FLOW_H) \ |
| $(CFGLOOP_H) $(TREE_PASS_H) $(TREE_VECTORIZER_H) \ |
| $(TREE_PRETTY_PRINT_H) |
| tree-loop-distribution.o: tree-loop-distribution.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(TREE_PASS_H) |
| tree-parloops.o: tree-parloops.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_FLOW_H) $(CFGLOOP_H) $(TREE_DATA_REF_H) $(GIMPLE_PRETTY_PRINT_H) \ |
| $(TREE_PASS_H) langhooks.h gt-tree-parloops.h $(TREE_VECTORIZER_H) |
| tree-stdarg.o: tree-stdarg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(FUNCTION_H) $(TREE_FLOW_H) $(TREE_PASS_H) \ |
| tree-stdarg.h $(TARGET_H) langhooks.h $(GIMPLE_PRETTY_PRINT_H) |
| tree-object-size.o: tree-object-size.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(DIAGNOSTIC_CORE_H) $(DIAGNOSTIC_H) $(TREE_FLOW_H) \ |
| $(TREE_PASS_H) tree-ssa-propagate.h $(GIMPLE_PRETTY_PRINT_H) |
| internal-fn.o : internal-fn.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(INTERNAL_FN_H) $(TREE_H) $(EXPR_H) $(OPTABS_H) $(GIMPLE_H) |
| gimple.o : gimple.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \ |
| $(GGC_H) $(GIMPLE_H) $(DIAGNOSTIC_CORE_H) $(DIAGNOSTIC_H) gt-gimple.h \ |
| $(TREE_FLOW_H) value-prof.h $(FLAGS_H) $(DEMANGLE_H) \ |
| $(TARGET_H) $(ALIAS_H) |
| gimple-pretty-print.o : gimple-pretty-print.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h \ |
| $(TREE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) $(TREE_FLOW_H) \ |
| $(TM_H) $(GIMPLE_H) value-prof.h \ |
| $(TRANS_MEM_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-mudflap.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TREE_INLINE_H) \ |
| $(GIMPLE_H) $(DIAGNOSTIC_H) $(DEMANGLE_H) $(HASHTAB_H) langhooks.h tree-mudflap.h \ |
| $(TM_H) coretypes.h $(TREE_PASS_H) $(CGRAPH_H) $(GGC_H) \ |
| gt-tree-mudflap.h $(BASIC_BLOCK_H) $(FLAGS_H) $(FUNCTION_H) \ |
| $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_CORE_H) $(GIMPLE_H) tree-iterator.h |
| tree-nomudflap.o : $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TREE_INLINE_H) \ |
| $(C_TREE_H) $(C_COMMON_H) $(GIMPLE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) \ |
| output.h langhooks.h tree-mudflap.h $(TM_H) coretypes.h \ |
| $(GGC_H) gt-tree-mudflap.h $(TREE_PASS_H) $(DIAGNOSTIC_CORE_H) |
| tree-pretty-print.o : tree-pretty-print.c $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(DIAGNOSTIC_H) $(HASHTAB_H) $(TREE_FLOW_H) \ |
| $(TM_H) coretypes.h dumpfile.h tree-iterator.h $(SCEV_H) langhooks.h \ |
| value-prof.h output.h $(TREE_PRETTY_PRINT_H) |
| tree-diagnostic.o : tree-diagnostic.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TREE_H) $(DIAGNOSTIC_H) tree-diagnostic.h langhooks.h $(LANGHOOKS_DEF_H) \ |
| $(VEC_H) $(TREE_PRETTY_PRINT_H) |
| fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(FLAGS_H) $(DIAGNOSTIC_CORE_H) $(HASH_TABLE_H) $(EXPR_H) \ |
| $(RTL_H) $(GGC_H) $(TM_P_H) langhooks.h $(MD5_H) intl.h $(TARGET_H) \ |
| $(GIMPLE_H) realmpfr.h $(TREE_FLOW_H) |
| diagnostic.o : diagnostic.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| version.h $(DEMANGLE_H) $(INPUT_H) intl.h $(BACKTRACE_H) $(DIAGNOSTIC_H) \ |
| diagnostic.def |
| opts.o : opts.c $(OPTS_H) $(OPTIONS_H) $(DIAGNOSTIC_CORE_H) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TM_H) \ |
| $(DIAGNOSTIC_H) insn-attr-common.h intl.h $(COMMON_TARGET_H) \ |
| $(FLAGS_H) $(PARAMS_H) opts-diagnostic.h |
| opts-global.o : opts-global.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DIAGNOSTIC_H) $(OPTS_H) $(FLAGS_H) $(GGC_H) $(TREE_H) langhooks.h \ |
| $(TM_H) $(RTL_H) $(DBGCNT_H) debug.h $(LTO_STREAMER_H) output.h \ |
| $(PLUGIN_H) toplev.h $(TREE_PASS_H) |
| opts-common.o : opts-common.c $(OPTS_H) $(FLAGS_H) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h intl.h $(DIAGNOSTIC_H) $(TM_H) |
| targhooks.o : targhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \ |
| $(EXPR_H) $(TM_H) $(RTL_H) $(TM_P_H) $(FUNCTION_H) output.h $(DIAGNOSTIC_CORE_H) \ |
| $(MACHMODE_H) $(TARGET_DEF_H) $(TARGET_H) $(GGC_H) gt-targhooks.h \ |
| $(OPTABS_H) $(RECOG_H) $(REGS_H) reload.h hard-reg-set.h intl.h $(OPTS_H) \ |
| tree-ssa-alias.h $(TREE_FLOW_H) |
| common/common-targhooks.o : common/common-targhooks.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(INPUT_H) $(TM_H) $(COMMON_TARGET_H) common/common-targhooks.h |
| |
| bversion.h: s-bversion; @true |
| s-bversion: BASE-VER |
| echo "#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h |
| echo "#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h |
| echo "#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h |
| echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h |
| $(STAMP) s-bversion |
| |
| input.o : input.c $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h $(INPUT_H) |
| |
| CFLAGS-toplev.o += -DTARGET_NAME=\"$(target_noncanonical)\" |
| toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| version.h $(RTL_H) $(FUNCTION_H) $(FLAGS_H) xcoffout.h $(INPUT_H) \ |
| $(INSN_ATTR_H) output.h $(DIAGNOSTIC_H) debug.h insn-config.h intl.h \ |
| $(RECOG_H) Makefile toplev.h sdbout.h dbxout.h $(EXPR_H) \ |
| hard-reg-set.h $(BASIC_BLOCK_H) $(EXCEPT_H) $(REGS_H) $(TIMEVAR_H) \ |
| value-prof.h $(PARAMS_H) $(TM_P_H) reload.h ira.h dwarf2asm.h $(TARGET_H) \ |
| langhooks.h insn-flags.h $(CFGLOOP_H) hosthooks.h \ |
| $(CGRAPH_H) $(COVERAGE_H) alloc-pool.h $(GGC_H) \ |
| $(OPTS_H) params.def tree-mudflap.h $(TREE_PASS_H) $(GIMPLE_H) \ |
| tree-ssa-alias.h $(PLUGIN_H) realmpfr.h tree-diagnostic.h \ |
| $(TREE_PRETTY_PRINT_H) opts-diagnostic.h $(COMMON_TARGET_H) \ |
| tsan.h |
| |
| hwint.o : hwint.c $(CONFIG_H) $(SYSTEM_H) $(DIAGNOSTIC_CORE_H) |
| |
| passes.o : passes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(RTL_H) $(FUNCTION_H) $(FLAGS_H) $(INPUT_H) $(INSN_ATTR_H) output.h \ |
| $(DIAGNOSTIC_CORE_H) debug.h insn-config.h intl.h $(RECOG_H) toplev.h \ |
| $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \ |
| graph.h $(EXCEPT_H) $(REGS_H) value-prof.h \ |
| $(PARAMS_H) $(TM_P_H) reload.h $(TARGET_H) \ |
| langhooks.h insn-flags.h $(CFGLOOP_H) \ |
| hosthooks.h $(CGRAPH_H) $(COVERAGE_H) $(TREE_PASS_H) $(TREE_DUMP_H) \ |
| $(GGC_H) $(OPTS_H) $(TREE_FLOW_H) $(TREE_INLINE_H) \ |
| gt-passes.h $(DF_H) $(PREDICT_H) $(LTO_STREAMER_H) \ |
| $(PLUGIN_H) $(IPA_UTILS_H) |
| |
| plugin.o : plugin.c $(PLUGIN_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DIAGNOSTIC_CORE_H) $(TREE_H) $(TREE_PASS_H) intl.h $(PLUGIN_VERSION_H) $(GGC_H) |
| |
| main.o : main.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) toplev.h $(DIAGNOSTIC_CORE_H) |
| |
| host-default.o : host-default.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| hosthooks.h $(HOSTHOOKS_DEF_H) |
| |
| rtl-error.o: rtl-error.c $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(INSN_ATTR_H) insn-config.h $(INPUT_H) intl.h $(DIAGNOSTIC_H) \ |
| $(CONFIG_H) |
| |
| rtl.o : rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(GGC_H) $(BCONFIG_H) insn-notes.def reg-notes.def $(DIAGNOSTIC_CORE_H) |
| |
| print-rtl.o : print-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H) $(FLAGS_H) \ |
| $(BCONFIG_H) $(DIAGNOSTIC_H) cselib.h $(TREE_PRETTY_PRINT_H) \ |
| $(DWARF2OUT_H) |
| rtlanal.o : rtlanal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(DIAGNOSTIC_CORE_H) \ |
| $(RTL_H) hard-reg-set.h $(TM_P_H) insn-config.h $(RECOG_H) \ |
| $(FLAGS_H) $(REGS_H) output.h $(TARGET_H) $(FUNCTION_H) $(TREE_H) \ |
| $(DF_H) $(EMIT_RTL_H) addresses.h |
| |
| varasm.o : varasm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(RTL_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) hard-reg-set.h $(REGS_H) \ |
| output.h $(DIAGNOSTIC_CORE_H) xcoffout.h debug.h $(GGC_H) $(TM_P_H) \ |
| $(HASHTAB_H) $(TARGET_H) langhooks.h gt-varasm.h $(BASIC_BLOCK_H) \ |
| $(CGRAPH_H) $(TARGET_DEF_H) tree-mudflap.h \ |
| pointer-set.h $(COMMON_TARGET_H) asan.h |
| function.o : function.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(TREE_H) $(GIMPLE_H) $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) \ |
| $(OPTABS_H) $(LIBFUNCS_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \ |
| output.h $(EXCEPT_H) $(HASHTAB_H) $(GGC_H) $(TM_P_H) langhooks.h \ |
| gt-function.h $(TARGET_H) $(BASIC_BLOCK_H) $(PREDICT_H) \ |
| $(TREE_PASS_H) $(DF_H) $(PARAMS_H) bb-reorder.h \ |
| $(COMMON_TARGET_H) |
| statistics.o : statistics.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_PASS_H) $(TREE_DUMP_H) $(HASHTAB_H) statistics.h $(FUNCTION_H) |
| stmt.o : stmt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(FUNCTION_H) insn-config.h hard-reg-set.h $(EXPR_H) \ |
| $(LIBFUNCS_H) $(EXCEPT_H) $(RECOG_H) $(DIAGNOSTIC_CORE_H) \ |
| output.h $(GGC_H) $(TM_P_H) langhooks.h $(PREDICT_H) $(OPTABS_H) \ |
| $(TARGET_H) $(GIMPLE_H) $(MACHMODE_H) $(REGS_H) alloc-pool.h \ |
| $(PRETTY_PRINT_H) $(BITMAP_H) $(PARAMS_H) |
| except.o : except.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(EXCEPT_H) $(FUNCTION_H) $(EXPR_H) $(LIBFUNCS_H) \ |
| langhooks.h insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \ |
| dwarf2asm.h $(DWARF2OUT_H) toplev.h $(DIAGNOSTIC_CORE_H) $(HASHTAB_H) intl.h $(GGC_H) \ |
| gt-except.h $(CGRAPH_H) $(DIAGNOSTIC_H) $(DWARF2_H) \ |
| $(TARGET_H) $(TM_P_H) $(TREE_PASS_H) $(TREE_FLOW_H) \ |
| $(TREE_PRETTY_PRINT_H) sbitmap.h $(COMMON_TARGET_H) $(CFGLOOP_H) |
| expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(FUNCTION_H) $(REGS_H) $(EXPR_H) $(OPTABS_H) \ |
| $(LIBFUNCS_H) $(INSN_ATTR_H) insn-config.h $(RECOG_H) output.h \ |
| typeclass.h hard-reg-set.h toplev.h $(DIAGNOSTIC_CORE_H) hard-reg-set.h $(EXCEPT_H) \ |
| reload.h langhooks.h intl.h $(TM_P_H) $(TARGET_H) \ |
| tree-iterator.h gt-expr.h $(MACHMODE_H) $(TIMEVAR_H) $(TREE_FLOW_H) \ |
| $(TREE_PASS_H) $(DF_H) $(DIAGNOSTIC_H) $(SSAEXPAND_H) \ |
| $(PARAMS_H) $(COMMON_TARGET_H) target-globals.h |
| dojump.o : dojump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TM_P_H) \ |
| $(RTL_H) $(TREE_H) \ |
| $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) $(OPTABS_H) $(INSN_ATTR_H) insn-config.h \ |
| langhooks.h $(GGC_H) gt-dojump.h $(BASIC_BLOCK_H) |
| builtins.o : builtins.c builtins.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(TREE_H) $(GIMPLE_H) $(FLAGS_H) $(TARGET_H) $(FUNCTION_H) $(REGS_H) \ |
| $(EXPR_H) $(OPTABS_H) insn-config.h $(RECOG_H) output.h typeclass.h \ |
| hard-reg-set.h $(DIAGNOSTIC_CORE_H) hard-reg-set.h $(EXCEPT_H) \ |
| $(TM_P_H) $(PREDICT_H) $(LIBFUNCS_H) langhooks.h $(BASIC_BLOCK_H) \ |
| tree-mudflap.h realmpfr.h $(BUILTINS_DEF) $(MACHMODE_H) \ |
| $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) value-prof.h |
| calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(EXPR_H) $(OPTABS_H) langhooks.h $(TARGET_H) \ |
| $(LIBFUNCS_H) $(REGS_H) $(DIAGNOSTIC_CORE_H) output.h \ |
| $(FUNCTION_H) $(TIMEVAR_H) $(TM_P_H) $(CGRAPH_H) $(EXCEPT_H) sbitmap.h \ |
| $(DBGCNT_H) $(TREE_FLOW_H) |
| expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \ |
| $(FLAGS_H) insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \ |
| $(DIAGNOSTIC_CORE_H) $(TM_P_H) langhooks.h $(DF_H) $(TARGET_H) \ |
| expmed.h |
| explow.o : explow.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(TREE_H) \ |
| $(FLAGS_H) hard-reg-set.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \ |
| $(DIAGNOSTIC_CORE_H) $(EXCEPT_H) $(FUNCTION_H) $(GGC_H) $(TM_P_H) langhooks.h gt-explow.h \ |
| $(TARGET_H) $(COMMON_TARGET_H) output.h $(LIBFUNCS_H) |
| optabs.o : optabs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) insn-config.h $(EXPR_H) $(OPTABS_H) $(LIBFUNCS_H) \ |
| $(RECOG_H) reload.h $(DIAGNOSTIC_CORE_H) $(GGC_H) $(TM_P_H) \ |
| $(EXCEPT_H) gt-optabs.h $(BASIC_BLOCK_H) $(TARGET_H) $(FUNCTION_H) |
| dbxout.o : dbxout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(RTL_H) $(FLAGS_H) $(REGS_H) debug.h $(TM_P_H) $(TARGET_H) $(FUNCTION_H) \ |
| langhooks.h insn-config.h reload.h $(GSTAB_H) xcoffout.h output.h dbxout.h \ |
| toplev.h $(DIAGNOSTIC_CORE_H) $(GGC_H) $(OBSTACK_H) $(EXPR_H) $(CGRAPH_H) \ |
| gt-dbxout.h $(COMMON_TARGET_H) |
| debug.o : debug.c debug.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) |
| sdbout.o : sdbout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) debug.h \ |
| $(TREE_H) $(GGC_H) $(RTL_H) $(REGS_H) $(FLAGS_H) insn-config.h \ |
| output.h $(DIAGNOSTIC_CORE_H) $(TM_P_H) gsyms.h langhooks.h $(TARGET_H) sdbout.h \ |
| gt-sdbout.h reload.h |
| dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(TREE_H) version.h $(RTL_H) $(DWARF2_H) debug.h $(FLAGS_H) \ |
| insn-config.h output.h $(DIAGNOSTIC_H) hard-reg-set.h $(REGS_H) $(EXPR_H) \ |
| toplev.h $(DIAGNOSTIC_CORE_H) $(DWARF2OUT_H) reload.h \ |
| $(GGC_H) $(EXCEPT_H) dwarf2asm.h $(TM_P_H) langhooks.h $(HASHTAB_H) \ |
| gt-dwarf2out.h $(TARGET_H) $(CGRAPH_H) $(MD5_H) $(INPUT_H) $(FUNCTION_H) \ |
| $(GIMPLE_H) ira.h lra.h $(TREE_FLOW_H) \ |
| $(TREE_PRETTY_PRINT_H) $(COMMON_TARGET_H) $(OPTS_H) |
| dwarf2cfi.o : dwarf2cfi.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| version.h $(RTL_H) $(EXPR_H) $(REGS_H) $(FUNCTION_H) output.h \ |
| gt-dwarf2cfi.h debug.h $(DWARF2_H) dwarf2asm.h $(DWARF2OUT_H) $(COMMON_TARGET_H) \ |
| $(GGC_H) $(TM_P_H) $(TARGET_H) $(TREE_PASS_H) $(BASIC_BLOCK_H) $(EXCEPT_H) |
| dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(FLAGS_H) $(RTL_H) $(TREE_H) output.h dwarf2asm.h $(TM_P_H) $(GGC_H) \ |
| gt-dwarf2asm.h $(DWARF2_H) $(SPLAY_TREE_H) $(TARGET_H) |
| vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) version.h \ |
| $(FLAGS_H) $(RTL_H) output.h vmsdbg.h debug.h langhooks.h $(FUNCTION_H) $(TARGET_H) |
| xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(RTL_H) xcoffout.h $(FLAGS_H) $(DIAGNOSTIC_CORE_H) output.h dbxout.h \ |
| $(GGC_H) $(TARGET_H) debug.h $(GSTAB_H) xcoff.h |
| godump.o : godump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(DIAGNOSTIC_CORE_H) \ |
| $(TREE_H) $(GGC_H) pointer-set.h $(OBSTACK_H) debug.h gt-godump.h |
| emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(FUNCTION_H) $(REGS_H) insn-config.h $(RECOG_H) \ |
| $(GGC_H) $(EXPR_H) hard-reg-set.h $(BITMAP_H) $(DIAGNOSTIC_CORE_H) $(BASIC_BLOCK_H) \ |
| $(HASHTAB_H) $(TM_P_H) debug.h langhooks.h $(TREE_PASS_H) gt-emit-rtl.h \ |
| $(DF_H) $(PARAMS_H) $(TARGET_H) |
| real.o : real.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(REAL_H) dfp.h realmpfr.h |
| realmpfr.o : realmpfr.c realmpfr.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(REAL_H) $(TREE_H) |
| dfp.o : dfp.c dfp.h $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(TM_P_H) $(REAL_H) $(DECNUM_H) |
| fixed-value.o: fixed-value.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(REAL_H) $(DIAGNOSTIC_CORE_H) |
| jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(FLAGS_H) hard-reg-set.h $(REGS_H) insn-config.h $(RECOG_H) $(EXPR_H) \ |
| $(EXCEPT_H) $(FUNCTION_H) $(BASIC_BLOCK_H) $(TREE_PASS_H) \ |
| $(DIAGNOSTIC_CORE_H) $(DIAGNOSTIC_CORE_H) $(INSN_ATTR_H) $(TM_P_H) reload.h \ |
| $(PREDICT_H) $(TARGET_H) |
| simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(RECOG_H) $(EXPR_H) $(DIAGNOSTIC_CORE_H) $(FUNCTION_H) $(GGC_H) $(TM_P_H) \ |
| $(TREE_H) $(TARGET_H) |
| symtab.o : symtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(TREE_H) \ |
| langhooks.h $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(GGC_H) $(TARGET_H) $(CGRAPH_H) \ |
| $(TIMEVAR_H) $(HASHTAB_H) gt-symtab.h |
| cgraph.o : cgraph.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(TREE_H) $(TIMEVAR_H) \ |
| langhooks.h toplev.h $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(GGC_H) $(TARGET_H) $(CGRAPH_H) \ |
| gt-cgraph.h intl.h $(BASIC_BLOCK_H) debug.h $(HASHTAB_H) \ |
| $(TREE_INLINE_H) $(TREE_FLOW_H) cif-code.def \ |
| value-prof.h $(EXCEPT_H) $(IPA_UTILS_H) $(DIAGNOSTIC_CORE_H) \ |
| $(IPA_INLINE_H) $(LTO_STREAMER_H) $(CFGLOOP_H) $(GIMPLE_PRETTY_PRINT_H) |
| cgraphunit.o : cgraphunit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(TREE_INLINE_H) toplev.h $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(GGC_H) \ |
| $(TARGET_H) $(CGRAPH_H) intl.h pointer-set.h $(FUNCTION_H) $(GIMPLE_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) debug.h $(DIAGNOSTIC_H) \ |
| $(FIBHEAP_H) output.h $(PARAMS_H) $(RTL_H) $(IPA_PROP_H) \ |
| gt-cgraphunit.h tree-iterator.h $(COVERAGE_H) $(TREE_DUMP_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(IPA_INLINE_H) $(IPA_UTILS_H) \ |
| $(LTO_STREAMER_H) output.h $(REGSET_H) $(EXCEPT_H) $(GCC_PLUGIN_H) plugin.h |
| cgraphclones.o : cgraphclones.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(TREE_INLINE_H) toplev.h $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(GGC_H) \ |
| $(TARGET_H) $(CGRAPH_H) intl.h pointer-set.h $(FUNCTION_H) $(GIMPLE_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) debug.h $(DIAGNOSTIC_H) $(TREE_DUMP_H) \ |
| $(PARAMS_H) $(RTL_H) $(IPA_PROP_H) \ |
| tree-iterator.h $(COVERAGE_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(IPA_INLINE_H) $(IPA_UTILS_H) \ |
| $(LTO_STREAMER_H) $(EXCEPT_H) $(GCC_PLUGIN_H) gt-cgraphclones.h |
| cgraphbuild.o : cgraphbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(CGRAPH_H) intl.h pointer-set.h $(GIMPLE_H) \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(IPA_UTILS_H) $(EXCEPT_H) \ |
| $(IPA_INLINE_H) |
| varpool.o : varpool.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(CGRAPH_H) langhooks.h $(DIAGNOSTIC_CORE_H) $(HASHTAB_H) \ |
| $(GGC_H) $(TIMEVAR_H) debug.h $(TARGET_H) output.h $(GIMPLE_H) \ |
| $(TREE_FLOW_H) |
| ipa.o : ipa.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(CGRAPH_H) \ |
| $(TREE_PASS_H) $(GIMPLE_H) $(TARGET_H) $(GGC_H) pointer-set.h \ |
| $(IPA_UTILS_H) |
| ipa-prop.o : ipa-prop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(IPA_PROP_H) $(DIAGNOSTIC_H) \ |
| $(TREE_FLOW_H) $(TM_H) $(TREE_PASS_H) $(FLAGS_H) $(TREE_H) \ |
| $(TREE_INLINE_H) $(GIMPLE_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(LTO_STREAMER_H) \ |
| $(DATA_STREAMER_H) $(TREE_STREAMER_H) $(PARAMS_H) |
| ipa-ref.o : ipa-ref.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| langhooks.h $(GGC_H) $(TARGET_H) $(CGRAPH_H) $(TREE_H) $(TARGET_H) \ |
| $(TREE_FLOW_H) $(TM_H) $(TREE_PASS_H) $(FLAGS_H) $(TREE_H) $(GGC_H) |
| ipa-cp.o : ipa-cp.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(TARGET_H) $(GIMPLE_H) $(CGRAPH_H) $(IPA_PROP_H) $(TREE_FLOW_H) \ |
| $(TREE_PASS_H) $(FLAGS_H) $(DIAGNOSTIC_H) \ |
| $(TREE_INLINE_H) $(PARAMS_H) $(TREE_PRETTY_PRINT_H) $(IPA_INLINE_H) |
| ipa-split.o : ipa-split.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_H) $(TARGET_H) $(CGRAPH_H) $(IPA_PROP_H) $(TREE_FLOW_H) \ |
| $(TREE_PASS_H) $(FLAGS_H) $(DIAGNOSTIC_H) $(TREE_DUMP_H) \ |
| $(TREE_INLINE_H) $(PARAMS_H) $(GIMPLE_PRETTY_PRINT_H) $(IPA_INLINE_H) |
| ipa-inline.o : ipa-inline.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(TREE_INLINE_H) $(FLAGS_H) $(CGRAPH_H) intl.h \ |
| $(DIAGNOSTIC_H) $(FIBHEAP_H) $(PARAMS_H) $(TREE_PASS_H) \ |
| $(COVERAGE_H) $(GGC_H) $(TREE_FLOW_H) $(RTL_H) $(IPA_PROP_H) \ |
| $(EXCEPT_H) $(GIMPLE_PRETTY_PRINT_H) $(IPA_INLINE_H) $(TARGET_H) \ |
| $(IPA_UTILS_H) |
| ipa-inline-analysis.o : ipa-inline-analysis.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(TREE_INLINE_H) $(FLAGS_H) $(CGRAPH_H) intl.h \ |
| $(DIAGNOSTIC_H) $(PARAMS_H) $(TREE_PASS_H) $(CFGLOOP_H) \ |
| $(HASHTAB_H) $(COVERAGE_H) $(GGC_H) $(TREE_FLOW_H) $(IPA_PROP_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(IPA_INLINE_H) $(LTO_STREAMER_H) $(DATA_STREAMER_H) \ |
| $(TREE_STREAMER_H) |
| ipa-inline-transform.o : ipa-inline-transform.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) langhooks.h $(TREE_INLINE_H) $(FLAGS_H) $(CGRAPH_H) intl.h \ |
| $(TREE_PASS_H) \ |
| $(HASHTAB_H) $(COVERAGE_H) $(GGC_H) $(TREE_FLOW_H) $(IPA_PROP_H) \ |
| $(TREE_PASS_H) |
| ipa-utils.o : ipa-utils.c $(IPA_UTILS_H) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h dumpfile.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) \ |
| langhooks.h pointer-set.h $(GGC_H) $(GIMPLE_H) $(SPLAY_TREE_H) \ |
| $(CGRAPH_H) $(FLAGS_H) $(DIAGNOSTIC_H) |
| ipa-reference.o : ipa-reference.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \ |
| pointer-set.h $(GGC_H) $(IPA_REFERENCE_H) $(IPA_UTILS_H) $(SPLAY_TREE_H) \ |
| $(GIMPLE_H) $(CGRAPH_H) $(FLAGS_H) $(TREE_PASS_H) \ |
| $(DIAGNOSTIC_H) $(FUNCTION_H) $(LTO_STREAMER_H) \ |
| $(DIAGNOSTIC_CORE_H) $(DATA_STREAMER_H) |
| ipa-pure-const.o : ipa-pure-const.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(TREE_H) $(TREE_FLOW_H) $(TREE_INLINE_H) langhooks.h \ |
| pointer-set.h $(GGC_H) $(IPA_UTILS_H) $(TARGET_H) \ |
| $(GIMPLE_H) $(CGRAPH_H) $(FLAGS_H) $(TREE_PASS_H) \ |
| $(DIAGNOSTIC_H) $(CFGLOOP_H) $(SCEV_H) $(LTO_STREAMER_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(DATA_STREAMER_H) $(TREE_STREAMER_H) |
| coverage.o : coverage.c $(GCOV_IO_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(RTL_H) $(TREE_H) $(FLAGS_H) output.h $(REGS_H) $(EXPR_H) \ |
| $(FUNCTION_H) $(BASIC_BLOCK_H) toplev.h $(DIAGNOSTIC_CORE_H) $(GGC_H) langhooks.h $(COVERAGE_H) \ |
| tree-iterator.h $(CGRAPH_H) gcov-io.c $(TM_P_H) \ |
| $(DIAGNOSTIC_CORE_H) intl.h gt-coverage.h $(TARGET_H) $(HASH_TABLE_H) |
| cselib.o : cselib.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) \ |
| $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(RECOG_H) \ |
| $(EMIT_RTL_H) $(DIAGNOSTIC_CORE_H) $(FUNCTION_H) \ |
| cselib.h gt-cselib.h $(GGC_H) $(TM_P_H) $(PARAMS_H) alloc-pool.h \ |
| $(HASHTAB_H) $(TARGET_H) $(BITMAP_H) $(TREE_H) |
| cse.o : cse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) $(REGS_H) \ |
| hard-reg-set.h $(FLAGS_H) insn-config.h $(RECOG_H) $(EXPR_H) toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(FUNCTION_H) $(BASIC_BLOCK_H) $(GGC_H) $(TM_P_H) \ |
| $(EXCEPT_H) $(TARGET_H) $(PARAMS_H) rtlhooks-def.h $(TREE_PASS_H) \ |
| $(DF_H) $(DBGCNT_H) |
| dce.o : dce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) $(EXCEPT_H) $(DF_H) cselib.h \ |
| $(DBGCNT_H) dce.h $(VALTRACK_H) $(TREE_PASS_H) $(DBGCNT_H) $(TM_P_H) \ |
| $(EMIT_RTL_H) |
| dumpfile.o: dumpfile.c dumpfile.h $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(DIAGNOSTIC_CORE_H) $(GIMPLE_PRETTY_PRINT_H) $(TREE_H) |
| dse.o : dse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(TM_P_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(RECOG_H) $(EXPR_H) $(DF_H) cselib.h $(DBGCNT_H) \ |
| $(TREE_PASS_H) alloc-pool.h $(ALIAS_H) $(OPTABS_H) $(TARGET_H) \ |
| $(BITMAP_H) $(PARAMS_H) $(TREE_FLOW_H) $(HASH_TABLE_H) |
| fwprop.o : fwprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(DIAGNOSTIC_CORE_H) insn-config.h $(RECOG_H) $(FLAGS_H) $(OBSTACK_H) $(BASIC_BLOCK_H) \ |
| $(DF_H) alloc-pool.h $(TREE_PASS_H) $(TARGET_H) \ |
| $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) domwalk.h sparseset.h |
| web.o : web.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) \ |
| insn-config.h $(RECOG_H) $(DF_H) $(OBSTACK_H) $(TREE_PASS_H) |
| ree.o : ree.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) $(FUNCTION_H) \ |
| $(DF_H) $(TREE_PASS_H) $(RECOG_H) $(EXPR_H) \ |
| $(REGS_H) $(TREE_H) $(TM_P_H) insn-config.h $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) \ |
| $(TARGET_H) $(OPTABS_H) insn-codes.h rtlhooks-def.h $(PARAMS_H) $(CGRAPH_H) |
| cprop.o : cprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(TM_P_H) $(PARAMS_H) cselib.h $(EXCEPT_H) $(TREE_H) \ |
| intl.h $(OBSTACK_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) $(TARGET_H) \ |
| $(DF_H) $(CFGLOOP_H) |
| gcse.o : gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(GGC_H) \ |
| $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(TM_P_H) $(PARAMS_H) cselib.h $(EXCEPT_H) gt-gcse.h $(TREE_H) \ |
| intl.h $(OBSTACK_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) $(TARGET_H) \ |
| $(DF_H) gcse.h |
| store-motion.o : store-motion.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(GGC_H) \ |
| $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(TM_P_H) $(EXCEPT_H) $(TREE_H) \ |
| intl.h $(OBSTACK_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) |
| resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(REGS_H) $(FLAGS_H) output.h $(RESOURCE_H) $(DF_H) \ |
| $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) $(INSN_ATTR_H) $(EXCEPT_H) $(PARAMS_H) $(TM_P_H) |
| lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) $(REGS_H) \ |
| hard-reg-set.h $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(RECOG_H) \ |
| $(BASIC_BLOCK_H) $(TM_P_H) $(FUNCTION_H) sbitmap.h |
| mode-switching.o : mode-switching.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(INSN_ATTR_H) $(RECOG_H) $(BASIC_BLOCK_H) $(TM_P_H) $(FUNCTION_H) \ |
| $(TREE_PASS_H) $(DF_H) $(TARGET_H) $(EMIT_RTL_H) |
| tree-ssa-dce.o : tree-ssa-dce.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TM_H) \ |
| coretypes.h $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) \ |
| $(GGC_H) $(GIMPLE_H) $(CFGLOOP_H) $(SCEV_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-call-cdce.o : tree-call-cdce.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| $(TREE_FLOW_H) $(TM_H) \ |
| coretypes.h $(TREE_PASS_H) $(FLAGS_H) $(BASIC_BLOCK_H) \ |
| $(GIMPLE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-ssa-ccp.o : tree-ssa-ccp.c $(TREE_FLOW_H) $(CONFIG_H) \ |
| $(SYSTEM_H) $(TREE_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_H) $(FUNCTION_H) $(TM_H) coretypes.h \ |
| $(BASIC_BLOCK_H) $(TREE_PASS_H) langhooks.h $(PARAMS_H) \ |
| tree-ssa-propagate.h value-prof.h $(FLAGS_H) $(TARGET_H) \ |
| $(DIAGNOSTIC_CORE_H) $(HASH_TABLE_H) \ |
| $(DBGCNT_H) $(GIMPLE_PRETTY_PRINT_H) gimple-fold.h |
| tree-ssa-strlen.o : tree-ssa-strlen.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) domwalk.h alloc-pool.h tree-ssa-propagate.h \ |
| $(GIMPLE_PRETTY_PRINT_H) $(PARAMS_H) $(EXPR_H) |
| tree-sra.o : tree-sra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h alloc-pool.h \ |
| $(TM_H) $(TREE_H) $(GIMPLE_H) $(CGRAPH_H) $(TREE_FLOW_H) \ |
| $(IPA_PROP_H) $(DIAGNOSTIC_H) statistics.h \ |
| $(PARAMS_H) $(TARGET_H) $(FLAGS_H) \ |
| $(DBGCNT_H) $(TREE_INLINE_H) $(GIMPLE_PRETTY_PRINT_H) |
| tree-switch-conversion.o : tree-switch-conversion.c $(CONFIG_H) $(SYSTEM_H) \ |
| $(TREE_H) $(TM_P_H) $(TREE_FLOW_H) $(DIAGNOSTIC_H) $(TREE_INLINE_H) \ |
| $(TM_H) coretypes.h $(GIMPLE_H) \ |
| $(TREE_PASS_H) $(FLAGS_H) $(EXPR_H) $(BASIC_BLOCK_H) \ |
| $(GGC_H) $(OBSTACK_H) $(PARAMS_H) $(CPPLIB_H) $(PARAMS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) langhooks.h $(OPTABS_H) |
| tree-complex.o : tree-complex.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \ |
| $(TM_H) $(FLAGS_H) $(TREE_FLOW_H) $(GIMPLE_H) \ |
| tree-iterator.h $(TREE_PASS_H) tree-ssa-propagate.h |
| tree-emutls.o : tree-emutls.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TREE_H) \ |
| $(GIMPLE_H) $(TREE_PASS_H) $(TREE_FLOW_H) $(CGRAPH_H) langhooks.h \ |
| $(TARGET_H) $(TARGET_DEF_H) tree-iterator.h |
| tree-vect-generic.o : tree-vect-generic.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \ |
| $(TM_H) $(TREE_FLOW_H) $(GIMPLE_H) tree-iterator.h $(TREE_PASS_H) \ |
| $(FLAGS_H) $(OPTABS_H) $(MACHMODE_H) $(EXPR_H) \ |
| langhooks.h $(FLAGS_H) $(DIAGNOSTIC_H) gt-tree-vect-generic.h $(GGC_H) \ |
| coretypes.h insn-codes.h $(DIAGNOSTIC_H) $(TARGET_H) |
| df-core.o : df-core.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \ |
| hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h \ |
| $(TM_P_H) $(FLAGS_H) output.h $(TREE_PASS_H) $(PARAMS_H) |
| df-problems.o : df-problems.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(RTL_H) insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \ |
| hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h $(TIMEVAR_H) \ |
| $(TM_P_H) $(TARGET_H) $(FLAGS_H) $(EXCEPT_H) dce.h $(VALTRACK_H) |
| df-scan.o : df-scan.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) \ |
| insn-config.h $(RECOG_H) $(FUNCTION_H) $(REGS_H) alloc-pool.h \ |
| hard-reg-set.h $(BASIC_BLOCK_H) $(DF_H) $(BITMAP_H) sbitmap.h \ |
| $(TM_P_H) $(FLAGS_H) $(TARGET_H) $(TARGET_DEF_H) $(TREE_H) \ |
| $(EMIT_RTL_H) |
| regstat.o : regstat.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TM_P_H) $(FLAGS_H) $(REGS_H) $(EXCEPT_H) hard-reg-set.h \ |
| $(BASIC_BLOCK_H) $(TIMEVAR_H) $(DF_H) |
| valtrack.o : valtrack.c $(VALTRACK_H) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(FUNCTION_H) $(REGS_H) $(EMIT_RTL_H) |
| var-tracking.o : var-tracking.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(TREE_H) hard-reg-set.h insn-config.h reload.h $(FLAGS_H) \ |
| $(BASIC_BLOCK_H) bitmap.h alloc-pool.h $(FIBHEAP_H) $(HASHTAB_H) \ |
| $(REGS_H) $(EXPR_H) $(TREE_PASS_H) $(TREE_FLOW_H) \ |
| cselib.h $(TARGET_H) $(DIAGNOSTIC_CORE_H) $(PARAMS_H) $(DIAGNOSTIC_H) \ |
| pointer-set.h $(RECOG_H) $(TM_P_H) $(TREE_PRETTY_PRINT_H) $(ALIAS_H) |
| profile.o : profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) $(REGS_H) $(EXPR_H) $(FUNCTION_H) $(BASIC_BLOCK_H) \ |
| $(DIAGNOSTIC_CORE_H) $(COVERAGE_H) $(TREE_FLOW_H) value-prof.h \ |
| $(CFGLOOP_H) profile.h |
| mcf.o : mcf.c profile.h $(CONFIG_H) $(SYSTEM_H) $(TM_H) coretypes.h dumpfile.h \ |
| $(BASIC_BLOCK_H) langhooks.h $(GCOV_IO_H) $(TREE_H) |
| tree-profile.o : tree-profile.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TARGET_H) $(TREE_H) $(FLAGS_H) $(FUNCTION_H) \ |
| $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(COVERAGE_H) $(TREE_H) value-prof.h \ |
| $(TREE_PASS_H) $(TREE_FLOW_H) gt-tree-profile.h $(CGRAPH_H) |
| value-prof.o : value-prof.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(BASIC_BLOCK_H) hard-reg-set.h profile.h value-prof.h $(EXPR_H) $(FLAGS_H) \ |
| $(RECOG_H) insn-config.h $(OPTABS_H) $(REGS_H) $(GGC_H) $(DIAGNOSTIC_H) \ |
| $(TREE_H) $(COVERAGE_H) $(RTL_H) $(GCOV_IO_H) $(TREE_FLOW_H) \ |
| tree-flow-inline.h $(TIMEVAR_H) $(DIAGNOSTIC_CORE_H) pointer-set.h \ |
| $(GIMPLE_PRETTY_PRINT_H) |
| loop-doloop.o : loop-doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(RTL_H) $(FLAGS_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_CORE_H) $(CFGLOOP_H) $(PARAMS_H) $(TARGET_H) |
| alloc-pool.o : alloc-pool.c $(CONFIG_H) $(SYSTEM_H) alloc-pool.h $(HASHTAB_H) |
| auto-inc-dec.o : auto-inc-dec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TREE_H) $(RTL_H) $(TM_P_H) hard-reg-set.h $(BASIC_BLOCK_H) insn-config.h \ |
| $(REGS_H) $(FLAGS_H) $(FUNCTION_H) $(EXCEPT_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) \ |
| $(EXPR_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) $(TARGET_H) |
| cfg.o : cfg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(DIAGNOSTIC_CORE_H) \ |
| $(GGC_H) $(OBSTACK_H) alloc-pool.h $(HASH_TABLE_H) $(CFGLOOP_H) $(TREE_H) \ |
| $(BASIC_BLOCK_H) |
| cfghooks.o: cfghooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(BASIC_BLOCK_H) $(TREE_FLOW_H) $(TIMEVAR_H) toplev.h $(DIAGNOSTIC_CORE_H) $(CFGLOOP_H) |
| cfgexpand.o : cfgexpand.c $(TREE_FLOW_H) $(CONFIG_H) $(SYSTEM_H) \ |
| $(RTL_H) $(TREE_H) $(TM_P_H) $(EXPR_H) $(FUNCTION_H) $(TM_H) \ |
| coretypes.h $(EXCEPT_H) langhooks.h $(TREE_PASS_H) $(RTL_H) \ |
| $(DIAGNOSTIC_H) toplev.h $(DIAGNOSTIC_CORE_H) $(BASIC_BLOCK_H) $(FLAGS_H) debug.h $(PARAMS_H) \ |
| value-prof.h $(TREE_INLINE_H) $(TARGET_H) $(SSAEXPAND_H) $(REGS_H) \ |
| $(GIMPLE_PRETTY_PRINT_H) $(BITMAP_H) sbitmap.h \ |
| $(INSN_ATTR_H) $(CFGLOOP_H) asan.h |
| cfgrtl.o : cfgrtl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(FLAGS_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \ |
| $(FUNCTION_H) $(EXCEPT_H) $(TM_P_H) $(INSN_ATTR_H) \ |
| insn-config.h $(EXPR_H) \ |
| $(CFGLOOP_H) $(OBSTACK_H) $(TARGET_H) $(TREE_H) \ |
| $(TREE_PASS_H) $(DF_H) $(GGC_H) $(COMMON_TARGET_H) gt-cfgrtl.h |
| cfganal.o : cfganal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(BASIC_BLOCK_H) \ |
| $(TIMEVAR_H) sbitmap.h $(BITMAP_H) |
| cfgbuild.o : cfgbuild.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(FLAGS_H) $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h $(DIAGNOSTIC_CORE_H) \ |
| $(FUNCTION_H) $(EXCEPT_H) $(TIMEVAR_H) $(TREE_H) $(EXPR_H) sbitmap.h |
| cfgcleanup.o : cfgcleanup.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) hard-reg-set.h $(FLAGS_H) $(RECOG_H) \ |
| $(DIAGNOSTIC_CORE_H) insn-config.h cselib.h $(TARGET_H) $(TM_P_H) $(PARAMS_H) \ |
| $(REGS_H) $(EMIT_RTL_H) $(FUNCTION_H) $(TREE_PASS_H) $(CFGLOOP_H) $(EXPR_H) \ |
| $(DF_H) $(DBGCNT_H) dce.h |
| cfgloop.o : cfgloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(FLAGS_H) $(FUNCTION_H) \ |
| $(OBSTACK_H) toplev.h $(DIAGNOSTIC_CORE_H) $(TREE_FLOW_H) $(TREE_H) pointer-set.h \ |
| $(GGC_H) |
| cfgloopanal.o : cfgloopanal.c coretypes.h dumpfile.h $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \ |
| $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) $(TM_H) \ |
| $(OBSTACK_H) graphds.h $(PARAMS_H) |
| graphds.o : graphds.c graphds.h $(CONFIG_H) $(SYSTEM_H) $(BITMAP_H) $(OBSTACK_H) \ |
| coretypes.h $(VEC_H) |
| loop-iv.o : loop-iv.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(RTL_H) $(BASIC_BLOCK_H) \ |
| hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) $(TM_H) $(OBSTACK_H) \ |
| intl.h $(DIAGNOSTIC_CORE_H) $(DF_H) $(HASHTAB_H) |
| loop-invariant.o : loop-invariant.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(RTL_H) $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(EXPR_H) $(RECOG_H) \ |
| $(TM_H) $(TM_P_H) $(FUNCTION_H) $(FLAGS_H) $(DF_H) $(TARGET_H) \ |
| $(OBSTACK_H) $(HASHTAB_H) $(EXCEPT_H) $(PARAMS_H) $(REGS_H) ira.h |
| cfgloopmanip.o : cfgloopmanip.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \ |
| $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) \ |
| coretypes.h $(TM_H) $(OBSTACK_H) $(TREE_FLOW_H) |
| loop-init.o : loop-init.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(GGC_H) \ |
| $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) \ |
| coretypes.h $(TM_H) $(OBSTACK_H) $(TREE_PASS_H) $(FLAGS_H) \ |
| $(REGS_H) $(DF_H) |
| loop-unswitch.o : loop-unswitch.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(RTL_H) $(TM_H) $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(PARAMS_H) \ |
| $(EXPR_H) $(TM_H) $(OBSTACK_H) |
| loop-unroll.o: loop-unroll.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(RTL_H) $(TM_H) $(BASIC_BLOCK_H) hard-reg-set.h $(CFGLOOP_H) $(PARAMS_H) \ |
| $(EXPR_H) $(TM_H) $(HASHTAB_H) $(RECOG_H) \ |
| $(OBSTACK_H) |
| dominance.o : dominance.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| hard-reg-set.h $(BASIC_BLOCK_H) et-forest.h $(OBSTACK_H) $(DIAGNOSTIC_CORE_H) \ |
| $(TIMEVAR_H) graphds.h pointer-set.h $(BITMAP_H) |
| et-forest.o : et-forest.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| et-forest.h alloc-pool.h $(BASIC_BLOCK_H) |
| combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(FLAGS_H) $(FUNCTION_H) insn-config.h $(INSN_ATTR_H) $(REGS_H) $(EXPR_H) \ |
| rtlhooks-def.h $(BASIC_BLOCK_H) $(RECOG_H) hard-reg-set.h \ |
| $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(TREE_H) $(TARGET_H) \ |
| output.h $(PARAMS_H) $(OPTABS_H) \ |
| insn-codes.h $(TREE_PASS_H) $(DF_H) $(VALTRACK_H) \ |
| $(CGRAPH_H) $(OBSTACK_H) |
| reginfo.o : reginfo.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| hard-reg-set.h $(FLAGS_H) $(BASIC_BLOCK_H) addresses.h $(REGS_H) \ |
| insn-config.h $(RECOG_H) reload.h $(DIAGNOSTIC_CORE_H) \ |
| $(FUNCTION_H) output.h $(TM_P_H) $(EXPR_H) $(HASHTAB_H) \ |
| $(TARGET_H) $(TREE_PASS_H) $(DF_H) ira.h |
| bitmap.o : bitmap.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \ |
| $(GGC_H) gt-bitmap.h $(BITMAP_H) $(OBSTACK_H) $(HASHTAB_H) |
| vec.o : vec.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) $(GGC_H) \ |
| $(DIAGNOSTIC_CORE_H) $(HASHTAB_H) |
| hash-table.o : hash-table.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(HASHTAB_H) |
| reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(FLAGS_H) $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) \ |
| hard-reg-set.h insn-config.h $(REGS_H) $(FUNCTION_H) real.h \ |
| addresses.h $(TM_P_H) $(PARAMS_H) $(TARGET_H) $(DF_H) ira.h $(DIAGNOSTIC_CORE_H) |
| reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(RTL_ERROR_H) \ |
| $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \ |
| $(BASIC_BLOCK_H) $(RECOG_H) $(FUNCTION_H) $(TM_P_H) \ |
| addresses.h $(EXCEPT_H) $(TREE_H) $(FLAGS_H) $(MACHMODE_H) \ |
| $(OBSTACK_H) $(DF_H) $(TARGET_H) $(EMIT_RTL_H) ira.h |
| rtlhooks.o : rtlhooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| rtlhooks-def.h $(EXPR_H) $(RECOG_H) |
| postreload.o : postreload.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(FLAGS_H) $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) \ |
| hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) $(RECOG_H) \ |
| $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) cselib.h $(TM_P_H) $(EXCEPT_H) $(TREE_H) $(MACHMODE_H) \ |
| $(OBSTACK_H) $(TARGET_H) $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) |
| postreload-gcse.o : postreload-gcse.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) \ |
| $(TM_P_H) $(EXCEPT_H) $(TREE_H) $(TARGET_H) $(HASHTAB_H) intl.h $(OBSTACK_H) \ |
| $(PARAMS_H) $(TREE_PASS_H) $(DBGCNT_H) |
| caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(RTL_H) \ |
| $(FLAGS_H) $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) $(FUNCTION_H) \ |
| addresses.h $(RECOG_H) reload.h $(EXPR_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(DF_H) \ |
| gt-caller-save.h $(GGC_H) |
| bt-load.o : bt-load.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(EXCEPT_H) \ |
| $(RTL_H) hard-reg-set.h $(REGS_H) $(TM_P_H) $(FIBHEAP_H) $(EXPR_H) \ |
| $(TARGET_H) $(FLAGS_H) $(INSN_ATTR_H) $(FUNCTION_H) $(TREE_PASS_H) \ |
| $(DIAGNOSTIC_CORE_H) $(DF_H) $(RECOG_H) $(CFGLOOP_H) |
| reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| conditions.h hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) insn-config.h \ |
| $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) $(FUNCTION_H) $(FLAGS_H) output.h \ |
| $(EXPR_H) $(DIAGNOSTIC_CORE_H) $(PARAMS_H) $(TM_P_H) $(OBSTACK_H) $(RESOURCE_H) \ |
| $(TARGET_H) $(TREE_PASS_H) |
| alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) $(RTL_H) \ |
| $(FLAGS_H) hard-reg-set.h $(BASIC_BLOCK_H) $(REGS_H) $(DIAGNOSTIC_CORE_H) \ |
| $(ALIAS_H) $(EMIT_RTL_H) $(GGC_H) $(FUNCTION_H) cselib.h $(TREE_H) $(TM_P_H) \ |
| langhooks.h $(TARGET_H) gt-alias.h $(TIMEVAR_H) $(CGRAPH_H) \ |
| $(SPLAY_TREE_H) $(DF_H) \ |
| tree-ssa-alias.h pointer-set.h $(TREE_FLOW_H) |
| stack-ptr-mod.o : stack-ptr-mod.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(RTL_H) $(REGS_H) $(EXPR_H) $(TREE_PASS_H) \ |
| $(BASIC_BLOCK_H) $(FLAGS_H) output.h $(DF_H) |
| init-regs.o : init-regs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(TREE_H) $(RTL_H) $(REGS_H) $(EXPR_H) $(TREE_PASS_H) \ |
| $(BASIC_BLOCK_H) $(FLAGS_H) $(DF_H) |
| ira-build.o: ira-build.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \ |
| insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) \ |
| $(PARAMS_H) $(DF_H) sparseset.h $(IRA_INT_H) reload.h |
| ira-costs.o: ira-costs.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| hard-reg-set.h $(RTL_H) $(EXPR_H) $(TM_P_H) $(FLAGS_H) $(BASIC_BLOCK_H) \ |
| $(REGS_H) addresses.h insn-config.h $(RECOG_H) $(DIAGNOSTIC_CORE_H) $(TARGET_H) \ |
| $(PARAMS_H) $(IRA_INT_H) reload.h |
| ira-conflicts.o: ira-conflicts.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(TREE_H) $(FLAGS_H) \ |
| insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(PARAMS_H) \ |
| $(DF_H) sparseset.h addresses.h $(IRA_INT_H) |
| ira-color.o: ira-color.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TARGET_H) $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) reload.h $(PARAMS_H) \ |
| $(DF_H) $(IRA_INT_H) |
| ira-emit.o: ira-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(REGS_H) $(RTL_H) $(TM_P_H) $(TARGET_H) $(FLAGS_H) hard-reg-set.h \ |
| $(BASIC_BLOCK_H) $(EXPR_H) $(RECOG_H) $(PARAMS_H) \ |
| $(TREE_PASS_H) reload.h $(DF_H) $(IRA_INT_H) |
| ira-lives.o: ira-lives.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TARGET_H) $(RTL_H) $(REGS_H) $(EXCEPT_H) hard-reg-set.h $(FLAGS_H) \ |
| insn-config.h $(RECOG_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) $(PARAMS_H) \ |
| $(DF_H) sparseset.h $(IRA_INT_H) |
| ira.o: ira.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(REGS_H) $(RTL_H) $(TM_P_H) $(TARGET_H) $(FLAGS_H) $(OBSTACK_H) \ |
| $(BITMAP_H) hard-reg-set.h $(BASIC_BLOCK_H) $(DBGCNT_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(RECOG_H) $(PARAMS_H) $(TREE_PASS_H) output.h \ |
| $(EXCEPT_H) reload.h toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(DF_H) $(GGC_H) $(IRA_INT_H) lra.h |
| lra.o : lra.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) insn-config.h insn-codes.h $(TIMEVAR_H) $(TREE_PASS_H) \ |
| $(DF_H) $(RECOG_H) output.h addresses.h $(REGS_H) hard-reg-set.h \ |
| $(FLAGS_H) $(FUNCTION_H) $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) \ |
| $(EXCEPT_H) ira.h $(LRA_INT_H) |
| lra-assigns.o : lra-assigns.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(RTL_ERROR_H) $(REGS_H) insn-config.h $(DF_H) \ |
| $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) ira.h \ |
| rtl-error.h sparseset.h $(LRA_INT_H) |
| lra-coalesce.o : lra-coalesce.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \ |
| $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) ira.h \ |
| rtl-error.h ira.h $(LRA_INT_H) |
| lra-constraints.o : lra-constraints.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) insn-config.h insn-codes.h $(DF_H) \ |
| $(RECOG_H) output.h addresses.h $(REGS_H) hard-reg-set.h $(FLAGS_H) \ |
| $(FUNCTION_H) $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) \ |
| ira.h rtl-error.h $(LRA_INT_H) $(OPTABS_H) |
| lra-eliminations.o : lra-eliminations.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \ |
| $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) ira.h \ |
| rtl-error.h $(LRA_INT_H) $(OPTABS_H) |
| lra-lives.o : lra-lives.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \ |
| $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) \ |
| $(LRA_INT_H) |
| lra-spills.o : lra-spills.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) insn-config.h $(DF_H) \ |
| $(RECOG_H) output.h $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(EXCEPT_H) \ |
| ira.h $(LRA_INT_H) |
| regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| insn-config.h $(TREE_PASS_H) $(DF_H) \ |
| $(RECOG_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(DIAGNOSTIC_CORE_H) $(TM_P_H) \ |
| $(EXCEPT_H) ira.h reload.h $(TARGET_H) |
| combine-stack-adj.o : combine-stack-adj.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) insn-config.h $(TREE_PASS_H) \ |
| $(RECOG_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) $(FUNCTION_H) \ |
| $(EXPR_H) $(BASIC_BLOCK_H) $(TM_P_H) $(DF_H) $(EXCEPT_H) reload.h |
| compare-elim.o : compare-elim.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h $(RECOG_H) $(FLAGS_H) \ |
| $(BASIC_BLOCK_H) $(TREE_PASS_H) $(TARGET_H) $(DF_H) domwalk.h |
| ddg.o : ddg.c $(DDG_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TARGET_H) \ |
| $(DIAGNOSTIC_CORE_H) $(RTL_H) $(TM_P_H) $(REGS_H) $(FUNCTION_H) \ |
| $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) \ |
| $(SCHED_INT_H) $(CFGLOOP_H) $(EXPR_H) $(BITMAP_H) \ |
| hard-reg-set.h sbitmap.h $(TM_H) |
| modulo-sched.o : modulo-sched.c $(DDG_H) $(CONFIG_H) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TARGET_H) $(DIAGNOSTIC_CORE_H) $(RTL_H) $(TM_P_H) $(REGS_H) $(FUNCTION_H) \ |
| $(FLAGS_H) insn-config.h $(INSN_ATTR_H) $(EXCEPT_H) $(RECOG_H) \ |
| $(SCHED_INT_H) $(CFGLOOP_H) $(EXPR_H) $(PARAMS_H) \ |
| $(GCOV_IO_H) hard-reg-set.h $(TM_H) $(TREE_PASS_H) \ |
| $(DF_H) $(DBGCNT_H) |
| haifa-sched.o : haifa-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(TM_H) $(RTL_H) \ |
| $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h $(FUNCTION_H) \ |
| $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) $(TM_P_H) $(TARGET_H) \ |
| $(PARAMS_H) $(DBGCNT_H) $(CFGLOOP_H) ira.h $(EMIT_RTL_H) $(COMMON_TARGET_H) \ |
| $(HASHTAB_H) |
| sched-deps.o : sched-deps.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) cselib.h \ |
| ira.h $(PARAMS_H) $(TM_P_H) ira.h $(TARGET_H) $(TREE_H) $(EMIT_RTL_H) |
| sched-rgn.o : sched-rgn.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \ |
| $(TM_P_H) sel-sched.h $(TARGET_H) $(TREE_PASS_H) \ |
| $(DBGCNT_H) |
| sched-ebb.o : sched-ebb.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(SCHED_INT_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) $(TM_P_H) \ |
| $(PARAMS_H) $(TARGET_H) |
| sched-vis.o : sched-vis.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(INSN_ATTR_H) $(RTL_H) $(TREE_H) $(BASIC_BLOCK_H) $(PRETTY_PRINT_H) |
| sel-sched.o : sel-sched.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_ERROR_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \ |
| $(TM_P_H) output.h $(TARGET_H) $(TREE_PASS_H) \ |
| $(SCHED_INT_H) $(GGC_H) $(TREE_H) langhooks.h rtlhooks-def.h \ |
| $(SEL_SCHED_IR_H) $(SEL_SCHED_DUMP_H) sel-sched.h $(DBGCNT_H) $(EMIT_RTL_H) ira.h |
| sel-sched-dump.o : sel-sched-dump.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \ |
| $(TM_P_H) $(TARGET_H) $(TREE_PASS_H) \ |
| $(SEL_SCHED_DUMP_H) $(GGC_H) $(TREE_H) $(LANGHOOKS_DEF_H) $(SEL_SCHED_IR_H) \ |
| $(BASIC_BLOCK_H) cselib.h |
| sel-sched-ir.o : sel-sched-ir.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) insn-config.h \ |
| $(FUNCTION_H) $(INSN_ATTR_H) $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(EXCEPT_H) $(PARAMS_H) \ |
| $(TM_P_H) $(TARGET_H) $(TREE_PASS_H) $(SCHED_INT_H) $(GGC_H) \ |
| $(TREE_H) langhooks.h rtlhooks-def.h $(SEL_SCHED_IR_H) $(SEL_SCHED_DUMP_H) \ |
| $(EMIT_RTL_H) |
| final.o : final.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(TREE_H) $(FLAGS_H) intl.h $(REGS_H) $(RECOG_H) conditions.h \ |
| insn-config.h $(INSN_ATTR_H) $(FUNCTION_H) output.h hard-reg-set.h \ |
| $(EXCEPT_H) debug.h xcoffout.h toplev.h $(DIAGNOSTIC_CORE_H) reload.h $(DWARF2OUT_H) \ |
| $(TREE_PASS_H) $(BASIC_BLOCK_H) $(TM_P_H) $(TARGET_H) $(EXPR_H) \ |
| dbxout.h $(CGRAPH_H) $(COVERAGE_H) \ |
| $(DF_H) $(GGC_H) $(CFGLOOP_H) $(PARAMS_H) $(TREE_FLOW_H) \ |
| $(TARGET_DEF_H) $(TREE_PRETTY_PRINT_H) |
| recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_ERROR_H) \ |
| $(FUNCTION_H) $(BASIC_BLOCK_H) $(REGS_H) $(RECOG_H) $(EXPR_H) \ |
| $(FLAGS_H) insn-config.h $(INSN_ATTR_H) reload.h \ |
| addresses.h $(TM_P_H) $(TREE_PASS_H) hard-reg-set.h \ |
| $(DF_H) $(DBGCNT_H) $(TARGET_H) $(DIAGNOSTIC_CORE_H) insn-codes.h |
| reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_ERROR_H) $(TREE_H) $(RECOG_H) $(REGS_H) hard-reg-set.h $(FLAGS_H) \ |
| insn-config.h reload.h $(FUNCTION_H) $(TM_P_H) $(GGC_H) \ |
| $(BASIC_BLOCK_H) \ |
| $(TREE_PASS_H) $(TARGET_H) $(DF_H) $(EMIT_RTL_H) |
| sreal.o: sreal.c $(CONFIG_H) $(SYSTEM_H) coretypes.h sreal.h |
| predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(FLAGS_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) \ |
| hard-reg-set.h $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(FUNCTION_H) $(EXCEPT_H) \ |
| $(TM_P_H) $(PREDICT_H) sreal.h $(PARAMS_H) $(TARGET_H) $(CFGLOOP_H) \ |
| $(COVERAGE_H) $(SCEV_H) $(GGC_H) predict.def \ |
| $(TREE_FLOW_H) $(TREE_PASS_H) $(EXPR_H) pointer-set.h |
| lists.o: lists.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(DIAGNOSTIC_CORE_H) \ |
| $(RTL_H) $(GGC_H) gt-lists.h |
| bb-reorder.o : bb-reorder.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(FLAGS_H) output.h $(FIBHEAP_H) \ |
| $(TARGET_H) $(FUNCTION_H) $(TM_P_H) $(OBSTACK_H) $(EXPR_H) $(REGS_H) \ |
| $(PARAMS_H) toplev.h $(DIAGNOSTIC_CORE_H) $(TREE_PASS_H) $(DF_H) \ |
| $(EXCEPT_H) bb-reorder.h |
| tracer.o : tracer.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(TREE_H) $(BASIC_BLOCK_H) hard-reg-set.h \ |
| $(FLAGS_H) $(PARAMS_H) $(COVERAGE_H) $(FIBHEAP_H) \ |
| $(TREE_PASS_H) $(TREE_FLOW_H) $(TREE_INLINE_H) $(CFGLOOP_H) |
| timevar.o : timevar.c $(CONFIG_H) $(SYSTEM_H) $(TIMEVAR_H) |
| regcprop.o : regcprop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \ |
| $(RECOG_H) $(FUNCTION_H) $(OBSTACK_H) $(FLAGS_H) $(TM_P_H) \ |
| addresses.h reload.h $(DIAGNOSTIC_CORE_H) $(TREE_PASS_H) $(DF_H) |
| regrename.o : regrename.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_ERROR_H) insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h \ |
| output.h $(RECOG_H) $(FUNCTION_H) $(OBSTACK_H) $(FLAGS_H) $(TM_P_H) \ |
| addresses.h reload.h $(TREE_PASS_H) $(DF_H) $(TARGET_H) \ |
| regrename.h $(EMIT_RTL_H) |
| ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(RTL_H) \ |
| $(REGS_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) insn-config.h $(FUNCTION_H) $(RECOG_H) \ |
| $(TARGET_H) $(BASIC_BLOCK_H) $(EXPR_H) output.h $(EXCEPT_H) $(TM_P_H) \ |
| $(OPTABS_H) $(CFGLOOP_H) hard-reg-set.h pointer-set.h \ |
| $(TREE_PASS_H) $(DF_H) $(DBGCNT_H) |
| params.o : params.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(COMMON_TARGET_H) \ |
| $(PARAMS_H) $(DIAGNOSTIC_CORE_H) |
| pointer-set.o: pointer-set.c pointer-set.h $(CONFIG_H) $(SYSTEM_H) |
| hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) $(HOOKS_H) |
| pretty-print.o: $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h $(PRETTY_PRINT_H) |
| errors.o : errors.c $(CONFIG_H) $(SYSTEM_H) errors.h |
| dbgcnt.o: dbgcnt.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h \ |
| $(DIAGNOSTIC_CORE_H) $(DBGCNT_H) |
| lower-subreg.o : lower-subreg.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(MACHMODE_H) $(TM_H) $(RTL_H) $(TM_P_H) $(FLAGS_H) \ |
| insn-config.h $(BASIC_BLOCK_H) $(RECOG_H) $(OBSTACK_H) $(BITMAP_H) \ |
| $(EXPR_H) $(EXCEPT_H) $(REGS_H) $(TREE_PASS_H) $(DF_H) dce.h \ |
| lower-subreg.h |
| target-globals.o : target-globals.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) insn-config.h $(MACHMODE_H) $(GGC_H) toplev.h target-globals.h \ |
| $(FLAGS_H) $(REGS_H) $(RTL_H) reload.h expmed.h $(EXPR_H) $(OPTABS_H) \ |
| $(LIBFUNCS_H) $(CFGLOOP_H) $(IRA_INT_H) builtins.h gcse.h bb-reorder.h \ |
| lower-subreg.h |
| hw-doloop.o : hw-doloop.c $(CONFIG_H) $(SYSTEM_H) coretypes.h dumpfile.h $(TM_H) \ |
| $(RTL_H) $(FLAGS_H) $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) \ |
| $(DF_H) $(CFGLOOP_H) $(RECOG_H) $(TARGET_H) \ |
| $(REGS_H) hw-doloop.h |
| file-find.o: file-find.c $(CONFIG_H) $(SYSTEM_H) file-find.h |
| $(out_object_file): $(out_file) $(CONFIG_H) coretypes.h $(TM_H) $(TREE_H) \ |
| $(RTL_H) $(REGS_H) hard-reg-set.h insn-config.h conditions.h \ |
| output.h $(INSN_ATTR_H) $(SYSTEM_H) toplev.h $(DIAGNOSTIC_CORE_H) \ |
| $(TARGET_H) $(LIBFUNCS_H) $(TARGET_DEF_H) $(FUNCTION_H) $(SCHED_INT_H) \ |
| $(TM_P_H) $(EXPR_H) langhooks.h $(GGC_H) $(OPTABS_H) $(REAL_H) \ |
| tm-constrs.h $(GIMPLE_H) $(DF_H) cselib.h $(COMMON_TARGET_H) hw-doloop.h \ |
| regrename.h |
| $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \ |
| $(out_file) $(OUTPUT_OPTION) |
| |
| $(common_out_object_file): $(common_out_file) $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(COMMON_TARGET_H) $(COMMON_TARGET_DEF_H) $(PARAMS_H) \ |
| $(DIAGNOSTIC_CORE_H) $(FLAGS_H) $(OPTS_H) $(TM_H) $(TM_P_H) $(MACHMODE_H) |
| $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \ |
| $< $(OUTPUT_OPTION) |
| # |
| # Generate header and source files from the machine description, |
| # and compile them. |
| |
| .PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \ |
| insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \ |
| insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \ |
| insn-latencytab.c insn-preds.c |
| |
| # Dependencies for the md file. The first time through, we just assume |
| # the md file itself and the generated dependency file (in order to get |
| # it built). The second time through we have the dependency file. |
| -include mddeps.mk |
| MD_DEPS = s-mddeps $(md_file) $(MD_INCLUDES) |
| |
| s-mddeps: $(md_file) $(MD_INCLUDES) build/genmddeps$(build_exeext) |
| $(RUN_GEN) build/genmddeps$(build_exeext) $(md_file) > tmp-mddeps |
| $(SHELL) $(srcdir)/../move-if-change tmp-mddeps mddeps.mk |
| $(STAMP) s-mddeps |
| |
| # Header dependencies for generated source files. |
| insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) output.h $(INSN_ATTR_H) \ |
| insn-config.h $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(TM_P_H) $(FLAGS_H) |
| insn-automata.o : insn-automata.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) output.h $(INSN_ATTR_H) \ |
| insn-config.h toplev.h $(DIAGNOSTIC_CORE_H) $(RECOG_H) \ |
| $(TM_P_H) $(FLAGS_H) $(EMIT_RTL_H) |
| insn-dfatab.o : insn-dfatab.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(REGS_H) output.h $(INSN_ATTR_H) \ |
| insn-config.h $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(TM_P_H) $(FLAGS_H) |
| insn-emit.o : insn-emit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(EXPR_H) $(OPTABS_H) \ |
| dfp.h $(FLAGS_H) output.h insn-config.h hard-reg-set.h $(RECOG_H) \ |
| $(RESOURCE_H) reload.h $(DIAGNOSTIC_CORE_H) $(REGS_H) tm-constrs.h \ |
| $(GGC_H) $(BASIC_BLOCK_H) $(TARGET_H) |
| insn-enums.o : insn-enums.c $(CONFIG_H) $(SYSTEM_H) insn-constants.h |
| insn-extract.o : insn-extract.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(DIAGNOSTIC_CORE_H) insn-config.h $(RECOG_H) |
| insn-latencytab.o : insn-latencytab.c $(CONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(TM_H) $(RTL_H) $(REGS_H) output.h $(INSN_ATTR_H) \ |
| insn-config.h $(DIAGNOSTIC_CORE_H) $(RECOG_H) $(TM_P_H) $(FLAGS_H) |
| insn-modes.o : insn-modes.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(MACHMODE_H) |
| insn-opinit.o : insn-opinit.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(TM_P_H) insn-config.h $(FLAGS_H) $(RECOG_H) \ |
| $(EXPR_H) $(OPTABS_H) |
| insn-output.o : insn-output.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(GGC_H) $(REGS_H) conditions.h \ |
| hard-reg-set.h insn-config.h $(INSN_ATTR_H) $(EXPR_H) output.h \ |
| $(RECOG_H) $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) insn-codes.h $(TM_P_H)\ |
| $(TARGET_H) tm-constrs.h |
| insn-peep.o : insn-peep.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| insn-config.h $(RTL_H) $(TM_P_H) $(REGS_H) output.h \ |
| $(RECOG_H) $(EXCEPT_H) $(FUNCTION_H) $(DIAGNOSTIC_CORE_H) $(FLAGS_H) tm-constrs.h |
| insn-preds.o : insn-preds.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) $(TREE_H) insn-config.h $(RECOG_H) output.h \ |
| $(FLAGS_H) $(FUNCTION_H) hard-reg-set.h $(RESOURCE_H) $(TM_P_H) \ |
| $(DIAGNOSTIC_CORE_H) reload.h $(REGS_H) tm-constrs.h |
| insn-recog.o : insn-recog.c $(CONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(RTL_H) insn-config.h $(RECOG_H) output.h $(FLAGS_H) \ |
| $(FUNCTION_H) hard-reg-set.h $(RESOURCE_H) $(TM_P_H) $(DIAGNOSTIC_CORE_H) \ |
| reload.h $(REGS_H) tm-constrs.h |
| |
| # For each of the files generated by running a generator program over |
| # the machine description, the following static pattern rules run the |
| # generator program only if the machine description has changed, |
| # but touch the target file only when its contents actually change. |
| # The "; @true" construct forces Make to recheck the timestamp on |
| # the target file. |
| |
| simple_rtl_generated_h = insn-attr.h insn-attr-common.h insn-codes.h \ |
| insn-config.h insn-flags.h |
| |
| simple_rtl_generated_c = insn-automata.c insn-emit.c \ |
| insn-extract.c insn-output.c \ |
| insn-peep.c insn-recog.c |
| |
| simple_generated_h = $(simple_rtl_generated_h) insn-constants.h |
| |
| simple_generated_c = $(simple_rtl_generated_c) insn-enums.c |
| |
| $(simple_generated_h:insn-%.h=s-%) \ |
| $(simple_generated_c:insn-%.c=s-%): s-%: $(MD_DEPS) |
| |
| $(simple_rtl_generated_h:insn-%.h=s-%) \ |
| $(simple_rtl_generated_c:insn-%.c=s-%): s-%: insn-conditions.md |
| |
| $(simple_generated_h): insn-%.h: s-%; @true |
| |
| $(simple_generated_h:insn-%.h=s-%): s-%: build/gen%$(build_exeext) |
| $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \ |
| $(filter insn-conditions.md,$^) > tmp-$*.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-$*.h insn-$*.h |
| $(STAMP) s-$* |
| |
| $(simple_generated_c): insn-%.c: s-%; @true |
| $(simple_generated_c:insn-%.c=s-%): s-%: build/gen%$(build_exeext) |
| $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \ |
| $(filter insn-conditions.md,$^) > tmp-$*.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-$*.c insn-$*.c |
| $(STAMP) s-$* |
| |
| # gencheck doesn't read the machine description, and the file produced |
| # doesn't use the insn-* convention. |
| tree-check.h: s-check ; @true |
| s-check : build/gencheck$(build_exeext) |
| $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h |
| $(STAMP) s-check |
| |
| # genattrtab produces three files: tmp-{attrtab.c,dfatab.c,latencytab.c} |
| insn-attrtab.c insn-dfatab.c insn-latencytab.c: s-attrtab ; @true |
| s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \ |
| insn-conditions.md |
| $(RUN_GEN) build/genattrtab$(build_exeext) $(md_file) insn-conditions.md \ |
| -Atmp-attrtab.c -Dtmp-dfatab.c -Ltmp-latencytab.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-attrtab.c insn-attrtab.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-dfatab.c insn-dfatab.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-latencytab.c insn-latencytab.c |
| $(STAMP) s-attrtab |
| |
| # genopinit produces two files. |
| insn-opinit.c insn-opinit.h: s-opinit ; @true |
| s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md |
| $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \ |
| insn-conditions.md -htmp-opinit.h -ctmp-opinit.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c |
| $(STAMP) s-opinit |
| |
| # gencondmd doesn't use the standard naming convention. |
| build/gencondmd.c: s-conditions; @true |
| s-conditions: $(MD_DEPS) build/genconditions$(build_exeext) |
| $(RUN_GEN) build/genconditions$(build_exeext) $(md_file) > tmp-condmd.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-condmd.c build/gencondmd.c |
| $(STAMP) s-conditions |
| |
| insn-conditions.md: s-condmd; @true |
| s-condmd: build/gencondmd$(build_exeext) |
| $(RUN_GEN) build/gencondmd$(build_exeext) > tmp-cond.md |
| $(SHELL) $(srcdir)/../move-if-change tmp-cond.md insn-conditions.md |
| $(STAMP) s-condmd |
| |
| |
| # These files are generated by running the same generator more than |
| # once with different options, so they have custom rules. The |
| # stampfile idiom is the same. |
| genrtl.h: s-genrtl-h; @true |
| |
| s-genrtl-h: build/gengenrtl$(build_exeext) |
| $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h |
| $(STAMP) s-genrtl-h |
| |
| insn-modes.c: s-modes; @true |
| insn-modes.h: s-modes-h; @true |
| min-insn-modes.c: s-modes-m; @true |
| |
| s-modes: build/genmodes$(build_exeext) |
| $(RUN_GEN) build/genmodes$(build_exeext) > tmp-modes.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-modes.c insn-modes.c |
| $(STAMP) s-modes |
| |
| s-modes-h: build/genmodes$(build_exeext) |
| $(RUN_GEN) build/genmodes$(build_exeext) -h > tmp-modes.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-modes.h insn-modes.h |
| $(STAMP) s-modes-h |
| |
| s-modes-m: build/genmodes$(build_exeext) |
| $(RUN_GEN) build/genmodes$(build_exeext) -m > tmp-min-modes.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-min-modes.c min-insn-modes.c |
| $(STAMP) s-modes-m |
| |
| insn-preds.c: s-preds; @true |
| tm-preds.h: s-preds-h; @true |
| tm-constrs.h: s-constrs-h; @true |
| |
| .PHONY: mddump |
| mddump: $(BUILD_RTL) $(MD_DEPS) build/genmddump$(build_exeext) |
| $(RUN_GEN) build/genmddump$(build_exeext) $(md_file) > tmp-mddump.md |
| |
| s-preds: $(MD_DEPS) build/genpreds$(build_exeext) |
| $(RUN_GEN) build/genpreds$(build_exeext) $(md_file) > tmp-preds.c |
| $(SHELL) $(srcdir)/../move-if-change tmp-preds.c insn-preds.c |
| $(STAMP) s-preds |
| |
| s-preds-h: $(MD_DEPS) build/genpreds$(build_exeext) |
| $(RUN_GEN) build/genpreds$(build_exeext) -h $(md_file) > tmp-preds.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-preds.h tm-preds.h |
| $(STAMP) s-preds-h |
| |
| s-constrs-h: $(MD_DEPS) build/genpreds$(build_exeext) |
| $(RUN_GEN) build/genpreds$(build_exeext) -c $(md_file) > tmp-constrs.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-constrs.h tm-constrs.h |
| $(STAMP) s-constrs-h |
| |
| target-hooks-def.h: s-target-hooks-def-h; @true |
| # make sure that when we build info files, the used tm.texi is up to date. |
| $(srcdir)/doc/tm.texi: s-tm-texi; @true |
| |
| s-target-hooks-def-h: build/genhooks$(build_exeext) |
| $(RUN_GEN) build/genhooks$(build_exeext) "Target Hook" \ |
| > tmp-target-hooks-def.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-target-hooks-def.h \ |
| target-hooks-def.h |
| $(STAMP) s-target-hooks-def-h |
| |
| c-family/c-target-hooks-def.h: s-c-target-hooks-def-h; @true |
| |
| s-c-target-hooks-def-h: build/genhooks$(build_exeext) |
| $(RUN_GEN) build/genhooks$(build_exeext) "C Target Hook" \ |
| > tmp-c-target-hooks-def.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-c-target-hooks-def.h \ |
| c-family/c-target-hooks-def.h |
| $(STAMP) s-c-target-hooks-def-h |
| |
| common/common-target-hooks-def.h: s-common-target-hooks-def-h; @true |
| |
| s-common-target-hooks-def-h: build/genhooks$(build_exeext) |
| $(RUN_GEN) build/genhooks$(build_exeext) "Common Target Hook" \ |
| > tmp-common-target-hooks-def.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-common-target-hooks-def.h \ |
| common/common-target-hooks-def.h |
| $(STAMP) s-common-target-hooks-def-h |
| |
| # check if someone mistakenly only changed tm.texi. |
| # We use a different pathname here to avoid a circular dependency. |
| s-tm-texi: $(srcdir)/doc/../doc/tm.texi |
| |
| # The tm.texi we want to compare against / check into svn should have |
| # unix-style line endings. To make this work on MinGW, remove \r. |
| # \r is not portable to Solaris tr, therefore we have a special |
| # case for ASCII. We use \r for other encodings like EBCDIC. |
| s-tm-texi: build/genhooks$(build_exeext) $(srcdir)/doc/tm.texi.in |
| $(RUN_GEN) build/genhooks$(build_exeext) -d \ |
| $(srcdir)/doc/tm.texi.in > tmp-tm.texi |
| case `echo X|tr X '\101'` in \ |
| A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \ |
| *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \ |
| esac |
| mv tmp2-tm.texi tmp-tm.texi |
| $(SHELL) $(srcdir)/../move-if-change tmp-tm.texi tm.texi |
| @if cmp -s $(srcdir)/doc/tm.texi tm.texi; then \ |
| $(STAMP) $@; \ |
| elif test $(srcdir)/doc/tm.texi -nt $(srcdir)/doc/tm.texi.in \ |
| && ( test $(srcdir)/doc/tm.texi -nt $(srcdir)/target.def \ |
| || test $(srcdir)/doc/tm.texi -nt $(srcdir)/c-family/c-target.def \ |
| || test $(srcdir)/doc/tm.texi -nt $(srcdir)/common/common-target.def \ |
| ); then \ |
| echo >&2 ; \ |
| echo You should edit $(srcdir)/doc/tm.texi.in rather than $(srcdir)/doc/tm.texi . >&2 ; \ |
| false; \ |
| else \ |
| echo >&2 ; \ |
| echo Verify that you have permission to grant a GFDL license for all >&2 ; \ |
| echo new text in tm.texi, then copy it to $(srcdir)/doc/tm.texi. >&2 ; \ |
| false; \ |
| fi |
| |
| GTFILES = $(CPP_ID_DATA_H) $(srcdir)/input.h $(srcdir)/coretypes.h \ |
| $(host_xm_file_list) \ |
| $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \ |
| $(srcdir)/alias.h $(srcdir)/coverage.c $(srcdir)/rtl.h \ |
| $(srcdir)/optabs.h $(srcdir)/tree.h $(srcdir)/libfuncs.h $(SYMTAB_H) \ |
| $(srcdir)/real.h $(srcdir)/function.h $(srcdir)/insn-addr.h $(srcdir)/hwint.h \ |
| $(srcdir)/fixed-value.h \ |
| $(srcdir)/output.h $(srcdir)/cfgloop.h \ |
| $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/ipa-ref.h $(srcdir)/cgraph.h \ |
| $(srcdir)/reload.h $(srcdir)/caller-save.c $(srcdir)/symtab.c \ |
| $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \ |
| $(srcdir)/ipa-prop.c $(srcdir)/ipa-cp.c \ |
| $(srcdir)/dbxout.c \ |
| $(srcdir)/dwarf2out.h \ |
| $(srcdir)/dwarf2asm.c \ |
| $(srcdir)/dwarf2cfi.c \ |
| $(srcdir)/dwarf2out.c \ |
| $(srcdir)/tree-vect-generic.c \ |
| $(srcdir)/dojump.c \ |
| $(srcdir)/emit-rtl.c $(srcdir)/except.h $(srcdir)/explow.c $(srcdir)/expr.c \ |
| $(srcdir)/expr.h \ |
| $(srcdir)/function.c $(srcdir)/except.c \ |
| $(srcdir)/gcse.c $(srcdir)/godump.c \ |
| $(srcdir)/lists.c $(srcdir)/optabs.c \ |
| $(srcdir)/profile.c $(srcdir)/mcf.c \ |
| $(srcdir)/reg-stack.c $(srcdir)/cfgrtl.c \ |
| $(srcdir)/sdbout.c $(srcdir)/stor-layout.c \ |
| $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \ |
| $(srcdir)/gimple.h $(srcdir)/gimple.c \ |
| $(srcdir)/tree-mudflap.c $(srcdir)/tree-flow.h \ |
| $(srcdir)/tree-ssanames.c $(srcdir)/tree-eh.c $(srcdir)/tree-ssa-address.c \ |
| $(srcdir)/tree-cfg.c \ |
| $(srcdir)/tree-dfa.c \ |
| $(srcdir)/tree-iterator.c $(srcdir)/gimplify.c \ |
| $(srcdir)/tree-chrec.h \ |
| $(srcdir)/tree-scalar-evolution.c \ |
| $(srcdir)/tree-ssa-operands.h \ |
| $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \ |
| $(srcdir)/tree-parloops.c \ |
| $(srcdir)/omp-low.c \ |
| $(srcdir)/targhooks.c $(out_file) $(srcdir)/passes.c $(srcdir)/cgraphunit.c \ |
| $(srcdir)/cgraphclones.c \ |
| $(srcdir)/tree-ssa-propagate.c \ |
| $(srcdir)/tree-phinodes.c \ |
| $(srcdir)/lto-symtab.c \ |
| $(srcdir)/tree-ssa-alias.h \ |
| $(srcdir)/ipa-prop.h \ |
| $(srcdir)/trans-mem.c \ |
| $(srcdir)/lto-streamer.h \ |
| $(srcdir)/target-globals.h \ |
| $(srcdir)/ipa-inline.h \ |
| $(srcdir)/asan.c \ |
| $(srcdir)/tsan.c \ |
| @all_gtfiles@ |
| |
| # Compute the list of GT header files from the corresponding C sources, |
| # possibly nested within config or language subdirectories. Match gengtype's |
| # behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG |
| # language subdir, gt-file.h otherwise (no subdir indication for config/ |
| # related sources). |
| |
| GTFILES_H = $(subst /,-, \ |
| $(shell echo $(patsubst $(srcdir)/%,gt-%, \ |
| $(patsubst %.c,%.h, \ |
| $(filter %.c, $(GTFILES)))) \ |
| | sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g")) |
| |
| GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES))) |
| ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H)) |
| |
| # $(GTFILES) may be too long to put on a command line, so we have to |
| # write it out to a file (taking care not to do that in a way that |
| # overflows a command line!) and then have gengtype read the file in. |
| |
| $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gtype.state: s-gtype ; @true |
| |
| ### Common flags to gengtype [e.g. -v or -B backupdir] |
| GENGTYPE_FLAGS= |
| |
| gtyp-input.list: s-gtyp-input ; @true |
| s-gtyp-input: Makefile |
| @: $(call write_entries_to_file,$(GTFILES),tmp-gi.list) |
| $(SHELL) $(srcdir)/../move-if-change tmp-gi.list gtyp-input.list |
| $(STAMP) s-gtyp-input |
| |
| s-gtype: build/gengtype$(build_exeext) $(filter-out [%], $(GTFILES)) \ |
| gtyp-input.list |
| # First, parse all files and save a state file. |
| $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \ |
| -S $(srcdir) -I gtyp-input.list -w tmp-gtype.state |
| # Second, read the state file and generate all files. This ensure that |
| # gtype.state is correctly read: |
| $(SHELL) $(srcdir)/../move-if-change tmp-gtype.state gtype.state |
| $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \ |
| -r gtype.state |
| $(STAMP) s-gtype |
| |
| generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \ |
| $(simple_generated_h) specs.h \ |
| tree-check.h genrtl.h insn-modes.h tm-preds.h tm-constrs.h \ |
| $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h |
| |
| # In order for parallel make to really start compiling the expensive |
| # objects from $(OBJS) as early as possible, build all their |
| # prerequisites strictly before all objects. |
| $(ALL_HOST_OBJS) : | $(generated_files) |
| |
| # |
| # How to compile object files to run on the build machine. |
| |
| build/%.o : # dependencies provided by explicit rule later |
| $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \ |
| -o $@ $< |
| |
| ## build/version.o is compiled by the $(COMPILER_FOR_BUILD) but needs |
| ## several C macro definitions, just like version.o |
| build/version.o: version.c version.h \ |
| $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE) |
| $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \ |
| -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \ |
| -DREVISION=$(REVISION_s) \ |
| -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \ |
| -DBUGURL=$(BUGURL_s) -o $@ $< |
| |
| # Header dependencies for the programs that generate source code. |
| # These are library modules... |
| build/errors.o : errors.c $(BCONFIG_H) $(SYSTEM_H) errors.h |
| build/gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) errors.h $(HASHTAB_H) \ |
| $(READ_MD_H) gensupport.h |
| build/ggc-none.o : ggc-none.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(GGC_H) |
| build/min-insn-modes.o : min-insn-modes.c $(BCONFIG_H) $(SYSTEM_H) \ |
| $(MACHMODE_H) |
| build/print-rtl.o: print-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(GTM_H) $(RTL_BASE_H) |
| build/read-md.o: read-md.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(HASHTAB_H) errors.h $(READ_MD_H) |
| build/read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) $(HASHTAB_H) $(READ_MD_H) \ |
| gensupport.h |
| build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \ |
| $(RTL_H) $(GGC_H) errors.h |
| build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \ |
| $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H) |
| build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) insn-constants.h \ |
| $(filter-out insn-flags.h, $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(REGS_H) \ |
| $(RECOG_H) output.h $(FLAGS_H) $(RESOURCE_H) toplev.h $(DIAGNOSTIC_CORE_H) reload.h \ |
| $(EXCEPT_H) tm-constrs.h) |
| # This pulls in tm-pred.h which contains inline functions wrapping up |
| # predicates from the back-end so those functions must be discarded. |
| # No big deal since gencondmd.c is a dummy file for non-GCC compilers. |
| build/gencondmd.o : \ |
| BUILD_CFLAGS := $(filter-out -fkeep-inline-functions, $(BUILD_CFLAGS)) |
| |
| # ...these are the programs themselves. |
| build/genattr.o : genattr.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genattr-common.o : genattr-common.c $(RTL_BASE_H) $(BCONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genattrtab.o : genattrtab.c $(RTL_BASE_H) $(OBSTACK_H) \ |
| $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) \ |
| $(READ_MD_H) gensupport.h $(FNMATCH_H) |
| build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \ |
| $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(VEC_H) \ |
| $(HASHTAB_H) gensupport.h $(FNMATCH_H) |
| build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \ |
| $(SYSTEM_H) coretypes.h tree.def c-family/c-common.def \ |
| $(lang_tree_files) gimple.def |
| build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H) |
| build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h gensupport.h |
| build/genconditions.o : genconditions.c $(RTL_BASE_H) $(BCONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(HASHTAB_H) $(READ_MD_H) \ |
| gensupport.h |
| build/genconfig.o : genconfig.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h gensupport.h |
| build/genconstants.o : genconstants.c $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h errors.h $(READ_MD_H) |
| build/genemit.o : genemit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genenums.o : genenums.c $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h errors.h $(READ_MD_H) |
| build/genextract.o : genextract.c $(RTL_BASE_H) $(BCONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genflags.o : genflags.c $(RTL_BASE_H) $(OBSTACK_H) $(BCONFIG_H) \ |
| $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/gengenrtl.o : gengenrtl.c $(BCONFIG_H) $(SYSTEM_H) rtl.def |
| |
| # The gengtype generator program is special: Two versions are built. |
| # One is for the build machine, and one is for the host to allow |
| # plugins to define their types and generate the supporting GGC |
| # datastructures and routines with GTY markers. |
| # The host object files depend on CONFIG_H, and the build objects |
| # on BCONFIG_H. For the build objects, add -DGENERATOR_FILE manually, |
| # the build-%: rule doesn't apply to them. |
| |
| gengtype-lex.o build/gengtype-lex.o : gengtype-lex.c gengtype.h $(SYSTEM_H) |
| gengtype-lex.o: $(CONFIG_H) $(BCONFIG_H) |
| CFLAGS-gengtype-lex.o += -DGENERATOR_FILE |
| build/gengtype-lex.o: $(BCONFIG_H) |
| |
| gengtype-parse.o build/gengtype-parse.o : gengtype-parse.c gengtype.h \ |
| $(SYSTEM_H) |
| gengtype-parse.o: $(CONFIG_H) |
| CFLAGS-gengtype-parse.o += -DGENERATOR_FILE |
| build/gengtype-parse.o: $(BCONFIG_H) |
| |
| gengtype-state.o build/gengtype-state.o: gengtype-state.c $(SYSTEM_H) \ |
| gengtype.h errors.h double-int.h version.h $(HASHTAB_H) $(OBSTACK_H) \ |
| $(XREGEX_H) |
| gengtype-state.o: $(CONFIG_H) |
| CFLAGS-gengtype-state.o += -DGENERATOR_FILE |
| build/gengtype-state.o: $(BCONFIG_H) |
| |
| gengtype.o build/gengtype.o : gengtype.c $(SYSTEM_H) gengtype.h \ |
| rtl.def insn-notes.def errors.h double-int.h version.h $(HASHTAB_H) \ |
| $(OBSTACK_H) $(XREGEX_H) |
| gengtype.o: $(CONFIG_H) |
| CFLAGS-gengtype.o += -DGENERATOR_FILE |
| build/gengtype.o: $(BCONFIG_H) |
| |
| build/genmddeps.o: genmddeps.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \ |
| errors.h $(READ_MD_H) |
| build/genmodes.o : genmodes.c $(BCONFIG_H) $(SYSTEM_H) errors.h \ |
| $(HASHTAB_H) machmode.def $(extra_modes_file) |
| build/genopinit.o : genopinit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h gensupport.h optabs.def |
| build/genoutput.o : genoutput.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genpeep.o : genpeep.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h gensupport.h toplev.h $(DIAGNOSTIC_CORE_H) |
| build/genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h $(OBSTACK_H) |
| build/genrecog.o : genrecog.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| build/genhooks.o : genhooks.c $(TARGET_DEF) $(C_TARGET_DEF) \ |
| $(COMMON_TARGET_DEF) $(BCONFIG_H) $(SYSTEM_H) errors.h |
| build/genmddump.o : genmddump.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \ |
| coretypes.h $(GTM_H) errors.h $(READ_MD_H) gensupport.h |
| |
| # Compile the programs that generate insn-* from the machine description. |
| # They are compiled with $(COMPILER_FOR_BUILD), and associated libraries, |
| # since they need to run on this machine |
| # even if GCC is being compiled to run on some other machine. |
| |
| # All these programs use the RTL reader ($(BUILD_RTL)). |
| genprogrtl = attr attr-common attrtab automata codes conditions config emit \ |
| extract flags opinit output peep preds recog mddump |
| $(genprogrtl:%=build/gen%$(build_exeext)): $(BUILD_RTL) |
| |
| # All these programs use the MD reader ($(BUILD_MD)). |
| genprogmd = $(genprogrtl) mddeps constants enums |
| $(genprogmd:%=build/gen%$(build_exeext)): $(BUILD_MD) |
| |
| # All these programs need to report errors. |
| genprogerr = $(genprogmd) genrtl modes gtype hooks |
| $(genprogerr:%=build/gen%$(build_exeext)): $(BUILD_ERRORS) |
| |
| # Remaining build programs. |
| genprog = $(genprogerr) check checksum condmd |
| |
| # These programs need libs over and above what they get from the above list. |
| build/genautomata$(build_exeext) : BUILD_LIBS += -lm |
| |
| # These programs are not linked with the MD reader. |
| build/gengtype$(build_exeext) : build/gengtype-lex.o build/gengtype-parse.o \ |
| build/gengtype-state.o build/version.o build/errors.o |
| |
| gengtype$(exeext) : gengtype.o gengtype-lex.o gengtype-parse.o \ |
| gengtype-state.o version.o errors.o $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \ |
| $(filter-out ($LIBDEPS), $^) $(LIBS) |
| |
| # Rule for the generator programs: |
| $(genprog:%=build/gen%$(build_exeext)): build/gen%$(build_exeext): build/gen%.o $(BUILD_LIBDEPS) |
| +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) -o $@ \ |
| $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS) |
| |
| # Generated source files for gengtype. Prepend inclusion of |
| # bconfig.h because AIX requires _LARGE_FILES to be defined before |
| # any system header is included. |
| gengtype-lex.c : gengtype-lex.l |
| -$(FLEX) $(FLEXFLAGS) -o$@ $< && { \ |
| echo '#include "bconfig.h"' > $@.tmp; \ |
| cat $@ >> $@.tmp; \ |
| mv $@.tmp $@; \ |
| } |
| |
| # |
| # Remake internationalization support. |
| CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\" |
| intl.o: intl.c $(CONFIG_H) $(SYSTEM_H) coretypes.h intl.h Makefile |
| |
| # |
| # Remake cpp. |
| |
| PREPROCESSOR_DEFINES = \ |
| -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \ |
| -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \ |
| -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \ |
| -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \ |
| -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \ |
| -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \ |
| -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \ |
| -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \ |
| -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \ |
| -DNATIVE_SYSTEM_HEADER_DIR=\"$(NATIVE_SYSTEM_HEADER_DIR)\" \ |
| -DPREFIX=\"$(prefix)/\" \ |
| -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \ |
| @TARGET_SYSTEM_ROOT_DEFINE@ |
| |
| CFLAGS-cppbuiltin.o += $(PREPROCESSOR_DEFINES) -DBASEVER=$(BASEVER_s) |
| cppbuiltin.o: cppbuiltin.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(TARGET_H) $(TARGET_DEF) $(TREE_H) $(CPP_ID_DATA_H) \ |
| cppbuiltin.h version.h Makefile |
| |
| CFLAGS-cppdefault.o += $(PREPROCESSOR_DEFINES) |
| cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \ |
| cppdefault.h Makefile |
| |
| # Note for the stamp targets, we run the program `true' instead of |
| # having an empty command (nothing following the semicolon). |
| |
| # gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c |
| build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \ |
| $(SYSTEM_H) coretypes.h $(TM_H) |
| |
| build/gcov-iov$(build_exeext): build/gcov-iov.o |
| +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) \ |
| build/gcov-iov.o -o $@ |
| |
| gcov-iov.h: s-iov |
| s-iov: build/gcov-iov$(build_exeext) $(BASEVER) $(DEVPHASE) |
| build/gcov-iov$(build_exeext) '$(BASEVER_c)' '$(DEVPHASE_c)' \ |
| > tmp-gcov-iov.h |
| $(SHELL) $(srcdir)/../move-if-change tmp-gcov-iov.h gcov-iov.h |
| $(STAMP) s-iov |
| |
| gcov.o: gcov.c gcov-io.c $(GCOV_IO_H) intl.h $(SYSTEM_H) coretypes.h $(TM_H) \ |
| $(CONFIG_H) version.h $(DIAGNOSTIC_H) |
| gcov-dump.o: gcov-dump.c gcov-io.c $(GCOV_IO_H) $(SYSTEM_H) coretypes.h \ |
| $(TM_H) $(CONFIG_H) version.h intl.h $(DIAGNOSTIC_H) |
| |
| GCOV_OBJS = gcov.o |
| gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@ |
| GCOV_DUMP_OBJS = gcov-dump.o |
| gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS) |
| +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) \ |
| $(LIBS) -o $@ |
| # |
| # Build the include directories. The stamp files are stmp-* rather than |
| # s-* so that mostlyclean does not force the include directory to |
| # be rebuilt. |
| |
| # Build the include directories. |
| stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) fixinc_list |
| # Copy in the headers provided with gcc. |
| # |
| # The sed command gets just the last file name component; |
| # this is necessary because VPATH could add a dirname. |
| # Using basename would be simpler, but some systems don't have it. |
| # |
| # The touch command is here to workaround an AIX/Linux NFS bug. |
| # |
| # The move-if-change + cp -p twists for limits.h are intended to preserve |
| # the time stamp when we regenerate, to prevent pointless rebuilds during |
| # e.g. install-no-fixedincludes. |
| -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi |
| -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi |
| for file in .. $(USER_H); do \ |
| if [ X$$file != X.. ]; then \ |
| realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \ |
| $(STAMP) include/$$realfile; \ |
| rm -f include/$$realfile; \ |
| cp $$file include; \ |
| chmod a+r include/$$realfile; \ |
| fi; \ |
| done |
| for file in .. $(USER_H_INC_NEXT_PRE); do \ |
| if [ X$$file != X.. ]; then \ |
| mv include/$$file include/x_$$file; \ |
| echo "#include_next <$$file>" >include/$$file; \ |
| cat include/x_$$file >>include/$$file; \ |
| rm -f include/x_$$file; \ |
| chmod a+r include/$$file; \ |
| fi; \ |
|