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