]> gcc.gnu.org Git - gcc.git/blame - gcc/Makefile.in
Run profile feedback tests with autofdo
[gcc.git] / gcc / Makefile.in
CommitLineData
73458fb7
NN
1# Makefile for GNU Compiler Collection
2# Run 'configure' to generate Makefile from Makefile.in
3
818ab71a 4# Copyright (C) 1987-2016 Free Software Foundation, Inc.
79d8453e 5
1322177d 6#This file is part of GCC.
79d8453e 7
1322177d 8#GCC is free software; you can redistribute it and/or modify
79d8453e 9#it under the terms of the GNU General Public License as published by
9dcd6f09 10#the Free Software Foundation; either version 3, or (at your option)
79d8453e
RS
11#any later version.
12
1322177d 13#GCC is distributed in the hope that it will be useful,
79d8453e
RS
14#but WITHOUT ANY WARRANTY; without even the implied warranty of
15#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16#GNU General Public License for more details.
17
18#You should have received a copy of the GNU General Public License
9dcd6f09
NC
19#along with GCC; see the file COPYING3. If not see
20#<http://www.gnu.org/licenses/>.
79d8453e
RS
21
22# The targets for external use include:
455c8f48 23# all, doc, install, install-cross, install-cross-rest, install-strip,
8b1f719a 24# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean.
79d8453e 25
6c80a645 26# This is the default target.
73458fb7
NN
27# Set by autoconf to "all.internal" for a native build, or
28# "all.cross" to build a cross compiler.
29all: @ALL@
30
31# Depend on this to specify a phony target portably.
32force:
33
34# This tells GNU make version 3 not to export the variables
35# defined in this file into the environment (and thus recursive makes).
36.NOEXPORT:
37# And this tells it not to automatically pass command-line variables
38# to recursive makes.
39MAKEOVERRIDES =
6c80a645 40
03787dfd 41# Suppress smart makes who think they know how to automake yacc and flex file
2e494f70 42.y.c:
03787dfd 43.l.c:
2e494f70 44
73458fb7
NN
45# The only suffixes we want for implicit rules are .c and .o, so clear
46# the list and add them. This speeds up GNU Make, and allows -r to work.
47# For i18n support, we also need .gmo, .po, .pox.
48# This must come before the language makefile fragments to allow them to
49# add suffixes and rules of their own.
50.SUFFIXES:
9469b9b2 51.SUFFIXES: .c .cc .o .po .pox .gmo
73458fb7
NN
52
53# -------------------------------
54# Standard autoconf-set variables
55# -------------------------------
56
4665e56c
NN
57build=@build@
58host=@host@
47e62307 59host_noncanonical=@host_noncanonical@
73458fb7 60target=@target@
e165d61b 61target_noncanonical:=@target_noncanonical@
73458fb7 62
85c64bbe
BS
63# Normally identical to target_noncanonical, except for compilers built
64# as accelerator targets.
65real_target_noncanonical:=@real_target_noncanonical@
66accel_dir_suffix = @accel_dir_suffix@
67
73458fb7 68# Sed command to transform gcc to installed name.
e165d61b 69program_transform_name := @program_transform_name@
73458fb7
NN
70
71# -----------------------------
72# Directories used during build
73# -----------------------------
74
75# Directory where sources are, from where we are.
76srcdir = @srcdir@
ad3a7ce3 77gcc_docdir = @srcdir@/doc
71cbe2c1
KC
78
79# Directory where sources are, absolute.
80abs_srcdir = @abs_srcdir@
81abs_docdir = @abs_srcdir@/doc
3859c32a 82
96a58590
L
83# Directory where sources are, relative to here.
84top_srcdir = @top_srcdir@
85
5da9128a
PB
86# Top build directory for this package, relative to here.
87top_builddir = .
3bbd5a19 88
da0f6381
PB
89# The absolute path to the current directory.
90objdir := $(shell pwd)
73458fb7 91
215c351a 92host_subdir=@host_subdir@
71b5d516 93build_subdir=@build_subdir@
3bbd5a19 94target_subdir=@target_subdir@
57255173 95build_libsubdir=@build_libsubdir@
71b5d516 96
3bbd5a19 97# Top build directory for the "Cygnus tree", relative to $(top_builddir).
215c351a 98ifeq ($(host_subdir),.)
3bbd5a19 99toplevel_builddir := ..
215c351a 100else
3bbd5a19 101toplevel_builddir := ../..
215c351a
PB
102endif
103
3bbd5a19
PB
104build_objdir := $(toplevel_builddir)/$(build_subdir)
105build_libobjdir := $(toplevel_builddir)/$(build_libsubdir)
106target_objdir := $(toplevel_builddir)/$(target_subdir)
107
65455962
KC
108# --------
109# Defined vpaths
110# --------
111
112# Directory where sources are, from where we are.
113VPATH = @srcdir@
114
5340bbea 115# We define a vpath for the sources of the .texi files here because they
65455962
KC
116# are split between multiple directories and we would rather use one implicit
117# pattern rule for everything.
118# This vpath could be extended within the Make-lang fragments.
119
d683ec81
PB
120vpath %.texi $(gcc_docdir)
121vpath %.texi $(gcc_docdir)/include
65455962 122
73458fb7
NN
123# --------
124# UNSORTED
125# --------
126
5a6b6a9f
OH
127# Extra flags to pass to indicate cross compilation, which
128# might be used or tested by Make-lang fragments.
129CROSS=@CROSS@
130
79d8453e
RS
131# Variables that exist for you to override.
132# See below for how to change them for certain systems.
133
013a2ee0 134# List of language subdirectories.
19361834 135SUBDIRS =@subdirs@ build
013a2ee0 136
79d8453e 137# Selection of languages to be made.
cc11cc9b 138CONFIG_LANGUAGES = @all_selected_languages@
c77556a5
RX
139LANGUAGES = c gcov$(exeext) gcov-dump$(exeext) gcov-tool$(exeext) \
140 $(CONFIG_LANGUAGES)
79d8453e 141
00afcaa0 142# Default values for variables overridden in Makefile fragments.
78faa32d 143# CFLAGS is for the user to override to, e.g., do a cross build with -O2.
b8dad04b 144# TCFLAGS is used for compilations with the GCC just built.
00afcaa0
PB
145# T_CFLAGS is used for all compilations and is overridden by t-* files.
146T_CFLAGS =
b8dad04b 147TCFLAGS =
ec6c7392 148CFLAGS = @CFLAGS@
00020c16 149CXXFLAGS = @CXXFLAGS@
cc11cc9b 150LDFLAGS = @LDFLAGS@
b8dad04b 151
459260ec
DM
152# Should we build position-independent host code?
153PICFLAG = @PICFLAG@
154
22aa533e
NS
155# Flags to determine code coverage. When coverage is disabled, this will
156# contain the optimization flags, as you normally want code coverage
e61a2eb7 157# without optimization.
22aa533e 158COVERAGE_FLAGS = @coverage_flags@
160e2e4f 159coverageexts = .{gcda,gcno}
22aa533e 160
8b1f719a 161# The warning flags are separate from CFLAGS because people tend to
5b67ad6f
DA
162# override optimization flags and we'd like them to still have warnings
163# turned on. These flags are also used to pass other stage dependent
164# flags from configure. The user is free to explicitly turn these flags
165# off if they wish.
b8dad04b 166# LOOSE_WARN are the warning flags to use when compiling something
8dd9a120 167# which is only compiled with gcc, such as libgcc.
00020c16 168# C_LOOSE_WARN is similar, but with C-only warnings.
8b1f719a 169# STRICT_WARN are the additional warning flags to
8dd9a120 170# apply to the back end and some front ends, which may be compiled
8b1f719a 171# with other compilers.
00020c16 172# C_STRICT_WARN is similar, with C-only warnings.
3bbd5a19 173LOOSE_WARN = @loose_warn@
00020c16 174C_LOOSE_WARN = @c_loose_warn@
8b1f719a 175STRICT_WARN = @strict_warn@
00020c16 176C_STRICT_WARN = @c_strict_warn@
b8dad04b 177
204250d2
RH
178# This is set by --enable-checking. The idea is to catch forgotten
179# "extern" tags in header files.
180NOCOMMON_FLAG = @nocommon_flag@
181
e9411247
MM
182NOEXCEPTION_FLAGS = @noexception_flags@
183
4c0cca18
UW
184ALIASING_FLAGS = @aliasing_flags@
185
73e232f0 186# This is set by --disable-maintainer-mode (default) to "#"
a88fdc2a
NP
187# FIXME: 'MAINT' will always be set to an empty string, no matter if
188# --disable-maintainer-mode is used or not. This is because the
189# following will expand to "MAINT := " in maintainer mode, and to
190# "MAINT := #" in non-maintainer mode, but because '#' starts a comment,
191# they mean exactly the same thing for make.
e9c4897b 192MAINT := @MAINT@
73e232f0 193
a88fdc2a
NP
194# The following provides the variable ENABLE_MAINTAINER_RULES that can
195# be used in language Make-lang.in makefile fragments to enable
196# maintainer rules. So, ENABLE_MAINTAINER_RULES is 'true' in
197# maintainer mode, and '' otherwise.
198@MAINT@ ENABLE_MAINTAINER_RULES = true
199
414d23ae
HPN
200# These are set by --enable-checking=valgrind.
201RUN_GEN = @valgrind_command@
202VALGRIND_DRIVER_DEFINES = @valgrind_path_defines@
203
b8dad04b
ZW
204# This is how we control whether or not the additional warnings are applied.
205.-warn = $(STRICT_WARN)
9a43b902 206build-warn = $(STRICT_WARN)
00020c16 207GCC_WARN_CFLAGS = $(LOOSE_WARN) $(C_LOOSE_WARN) $($(@D)-warn) $(if $(filter-out $(STRICT_WARN),$($(@D)-warn)),,$(C_STRICT_WARN)) $(NOCOMMON_FLAG) $($@-warn)
703245d7 208GCC_WARN_CXXFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG) $($@-warn)
dd859b8a 209
89a42ac8
ZW
210# These files are to have specific diagnostics suppressed, or are not to
211# be subject to -Werror:
87f85ea0 212# flex output may yield harmless "no previous prototype" warnings
406176be 213build/gengtype-lex.o-warn = -Wno-error
f142b5bc 214gengtype-lex.o-warn = -Wno-error
c77556a5
RX
215libgcov-util.o-warn = -Wno-error
216libgcov-driver-tool.o-warn = -Wno-error
217libgcov-merge-tool.o-warn = -Wno-error
da42b278
RB
218gimple-match.o-warn = -Wno-unused
219generic-match.o-warn = -Wno-unused
2ae1d1b8 220dfp.o-warn = -Wno-strict-aliasing
b8dad04b
ZW
221
222# All warnings have to be shut off in stage1 if the compiler used then
223# isn't gcc; configure determines that. WARN_CFLAGS will be either
00020c16
ILT
224# $(GCC_WARN_CFLAGS), or nothing. Similarly, WARN_CXXFLAGS will be
225# either $(GCC_WARN_CXXFLAGS), or nothing.
b8dad04b 226WARN_CFLAGS = @warn_cflags@
00020c16 227WARN_CXXFLAGS = @warn_cxxflags@
b8dad04b 228
f5d394a6
DB
229CPPFLAGS = @CPPFLAGS@
230
ab87f8c8 231AWK = @AWK@
b614ee64 232CC = @CC@
00020c16 233CXX = @CXX@
1e608388 234BISON = @BISON@
0777e4c6 235BISONFLAGS =
1e608388
ZW
236FLEX = @FLEX@
237FLEXFLAGS =
f6a874ac 238AR = @AR@
79d8453e 239AR_FLAGS = rc
f6a874ac 240NM = @NM@
6822468a 241RANLIB = @RANLIB@
343a6100 242RANLIB_FLAGS = @ranlib_flags@
73458fb7 243
ed2eaa9f
ILT
244# Libraries to use on the host.
245HOST_LIBS = @HOST_LIBS@
246
00020c16 247# The name of the compiler to use.
00020c16
ILT
248COMPILER = $(CXX)
249COMPILER_FLAGS = $(CXXFLAGS)
ed2eaa9f
ILT
250# If HOST_LIBS is set, then the user is controlling the libraries to
251# link against. In that case, link with $(CC) so that the -lstdc++
252# library is not introduced. If HOST_LIBS is not set, link with
253# $(CXX) to pick up -lstdc++.
254ifeq ($(HOST_LIBS),)
00020c16
ILT
255LINKER = $(CXX)
256LINKER_FLAGS = $(CXXFLAGS)
ed2eaa9f
ILT
257else
258LINKER = $(CC)
259LINKER_FLAGS = $(CFLAGS)
260endif
7980bfb8 261
5148d2e3
L
262NO_PIE_CFLAGS = @NO_PIE_CFLAGS@
263NO_PIE_FLAG = @NO_PIE_FLAG@
264
428b3812 265# We don't want to compile the compilers with -fPIE, it make PCH fail.
5148d2e3 266COMPILER += $(NO_PIE_CFLAGS)
428b3812
L
267
268# Link with -no-pie since we compile the compiler with -fno-PIE.
5148d2e3 269LINKER += $(NO_PIE_FLAG)
428b3812 270
427b248d
JM
271# Like LINKER, but use a mutex for serializing front end links.
272ifeq (@DO_LINK_MUTEX@,true)
273LLINKER = $(SHELL) $(srcdir)/lock-and-run.sh linkfe.lck $(LINKER)
274else
275LLINKER = $(LINKER)
276endif
277
73458fb7
NN
278# -------------------------------------------
279# Programs which operate on the build machine
280# -------------------------------------------
281
b41e09a7 282SHELL = @SHELL@
1e6347d8
RO
283# pwd command to use. Allow user to override default by setting PWDCMD in
284# the environment to account for automounters. The make variable must not
285# be called PWDCMD, otherwise the value set here is passed to make
286# subprocesses and overrides the setting from the user's environment.
8c90b13a
L
287# Don't use PWD since it is a common shell environment variable and we
288# don't want to corrupt it.
289PWD_COMMAND = $${PWDCMD-pwd}
79d8453e 290# on sysV, define this as cp.
3c18ea24 291INSTALL = @INSTALL@
ac64120e
JW
292# Some systems may be missing symbolic links, regular links, or both.
293# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
294LN=@LN@
295LN_S=@LN_S@
79d8453e 296# These permit overriding just for certain files.
fca9d4b0
MH
297INSTALL_PROGRAM = @INSTALL_PROGRAM@
298INSTALL_DATA = @INSTALL_DATA@
7c1e8336 299INSTALL_SCRIPT = @INSTALL@
455c8f48
RW
300install_sh = $(SHELL) $(srcdir)/../install-sh
301INSTALL_STRIP_PROGRAM = $(install_sh) -c -s
09fa0705 302MAKEINFO = @MAKEINFO@
a541f69d 303MAKEINFOFLAGS = --no-split
d8984b6e 304TEXI2DVI = texi2dvi
b5422ad7 305TEXI2PDF = texi2pdf
9d65c5cb 306TEXI2HTML = $(MAKEINFO) --html
fd939e46 307TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
b361b153 308POD2MAN = pod2man --center="GNU" --release="gcc-$(version)" --date=$(shell sed 's/\(....\)\(..\)\(..\)/\1-\2-\3/' <$(DATESTAMP))
5262d6b6 309# Some versions of `touch' (such as the version on Solaris 2.8)
d9835ae8 310# do not correctly set the timestamp due to buggy versions of `utime'
5262d6b6 311# in the kernel. So, we use `echo' instead.
d9835ae8 312STAMP = echo timestamp >
703fdf5a
RW
313# If necessary (e.g., when using the MSYS shell on Microsoft Windows)
314# translate the shell's notion of absolute pathnames to the native
315# spelling.
a0e527e3 316build_file_translate = @build_file_translate@
d9835ae8 317
73458fb7
NN
318# Make sure the $(MAKE) variable is defined.
319@SET_MAKE@
320
947c6b00
NN
321# Locate mkinstalldirs.
322mkinstalldirs=$(SHELL) $(srcdir)/../mkinstalldirs
323
a4e4a2d6
RW
324# write_entries_to_file - writes each entry in a list
325# to the specified file. Entries are written in chunks of
073a8998 326# $(write_entries_to_file_split) to accommodate systems with
a4e4a2d6
RW
327# severe command-line-length limitations.
328# Parameters:
329# $(1): variable containing entries to iterate over
330# $(2): output file
331write_entries_to_file_split = 50
332write_entries_to_file = $(shell rm -f $(2) || :) $(shell touch $(2)) \
333 $(foreach range, \
334 $(shell i=1; while test $$i -le $(words $(1)); do \
335 echo $$i; i=`expr $$i + $(write_entries_to_file_split)`; done), \
1b77ee03
MM
336 $(shell echo "$(wordlist $(range), \
337 $(shell expr $(range) + $(write_entries_to_file_split) - 1), $(1))" \
2fdb618d 338 | tr ' ' '\012' >> $(2)))
a4e4a2d6 339
35485da9
DM
340# The jit documentation looks better if built with sphinx, but can be
341# built with texinfo if sphinx is not available.
342# configure sets "doc_build_sys" to "sphinx" or "texinfo" accordingly
343doc_build_sys=@doc_build_sys@
344
73458fb7
NN
345# --------
346# UNSORTED
347# --------
348
043378c3 349# Dependency tracking stuff.
54c09437 350CXXDEPMODE = @CXXDEPMODE@
043378c3
TT
351DEPDIR = @DEPDIR@
352depcomp = $(SHELL) $(srcdir)/../depcomp
353
c11c795e
TT
354# In the past we used AC_PROG_CC_C_O and set this properly, but
355# it was discovered that this hadn't worked in a long time, so now
356# we just hard-code.
357OUTPUT_OPTION = -o $@
73458fb7 358
b8dad04b
ZW
359# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
360# -I../zlib, unless we were configured with --with-system-zlib, in which
361# case both are empty.
362ZLIB = @zlibdir@ -lz
363ZLIBINC = @zlibinc@
79d8453e 364
6de9cd9a
DN
365# How to find GMP
366GMPLIBS = @GMPLIBS@
367GMPINC = @GMPINC@
368
e357a5e0 369# How to find isl.
eae1a5d4 370ISLLIBS = @ISLLIBS@
33ad93b9 371ISLINC = @ISLINC@
f8bf9252 372
d7f09764
DN
373# Set to 'yes' if the LTO front end is enabled.
374enable_lto = @enable_lto@
375
de3f621b 376# Compiler and flags needed for plugin support
de3f621b
JR
377PLUGINCC = @CXX@
378PLUGINCFLAGS = @CXXFLAGS@
eeb971c9
EB
379
380# Libs and linker options needed for plugin support
68a607d8
DN
381PLUGINLIBS = @pluginlibs@
382
bf016de8
RAE
383enable_plugin = @enable_plugin@
384
459260ec
DM
385enable_host_shared = @enable_host_shared@
386
85c64bbe
BS
387enable_as_accelerator = @enable_as_accelerator@
388
6046b0ed 389CPPLIB = ../libcpp/libcpp.a
4f4e53dd
PB
390CPPINC = -I$(srcdir)/../libcpp/include
391
909e2256 392# Where to find decNumber
79b87c74 393enable_decimal_float = @enable_decimal_float@
909e2256 394DECNUM = $(srcdir)/../libdecnumber
79b87c74
MM
395DECNUMFMT = $(srcdir)/../libdecnumber/$(enable_decimal_float)
396DECNUMINC = -I$(DECNUM) -I$(DECNUMFMT) -I../libdecnumber
909e2256
JG
397LIBDECNUMBER = ../libdecnumber/libdecnumber.a
398
d83697f4
ILT
399# The backtrace library.
400BACKTRACE = $(srcdir)/../libbacktrace
401BACKTRACEINC = -I$(BACKTRACE)
402LIBBACKTRACE = ../libbacktrace/.libs/libbacktrace.a
403
ba1811f1 404# Target to use when installing include directory. Either
ff3aaf17 405# install-headers-tar, install-headers-cpio or install-headers-cp.
3c18ea24 406INSTALL_HEADERS_DIR = @build_install_headers_dir@
ba1811f1 407
d7371761
RK
408# Header files that are made available under the same name
409# to programs compiled with GCC.
b7f0fff2 410USER_H = $(srcdir)/ginclude/float.h \
d57a4b98
RH
411 $(srcdir)/ginclude/iso646.h \
412 $(srcdir)/ginclude/stdarg.h \
413 $(srcdir)/ginclude/stdbool.h \
414 $(srcdir)/ginclude/stddef.h \
415 $(srcdir)/ginclude/varargs.h \
0f996086 416 $(srcdir)/ginclude/stdfix.h \
bbceee64 417 $(srcdir)/ginclude/stdnoreturn.h \
d19fa6b5 418 $(srcdir)/ginclude/stdalign.h \
39b2468c 419 $(srcdir)/ginclude/stdatomic.h \
d57a4b98 420 $(EXTRA_HEADERS)
d7371761 421
9b91e436
KT
422USER_H_INC_NEXT_PRE = @user_headers_inc_next_pre@
423USER_H_INC_NEXT_POST = @user_headers_inc_next_post@
424
fa958513 425# The GCC to use for compiling crt*.o.
bf428f48 426# Usually the one we just built.
fa958513 427# Don't use this as a dependency--use $(GCC_PASSES).
4977bab6 428GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include -L$(objdir)/../ld
79d8453e 429
c875f596
DN
430# Set if the compiler was configured with --with-build-sysroot.
431SYSROOT_CFLAGS_FOR_TARGET = @SYSROOT_CFLAGS_FOR_TARGET@
432
79d8453e 433# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
da0f6381 434# It specifies -B./.
3c9a2b55 435# It also specifies -isystem ./include to find, e.g., stddef.h.
00020c16 436GCC_CFLAGS=$(CFLAGS_FOR_TARGET) $(INTERNAL_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) $(C_LOOSE_WARN) -Wold-style-definition $($@-warn) -isystem ./include $(TCFLAGS)
79d8453e 437
73458fb7
NN
438# ---------------------------------------------------
439# Programs which produce files for the target machine
440# ---------------------------------------------------
7e717196 441
4ac29b33 442AR_FOR_TARGET := $(shell \
7e717196
JL
443 if [ -f $(objdir)/../binutils/ar ] ; then \
444 echo $(objdir)/../binutils/ar ; \
445 else \
4665e56c 446 if [ "$(host)" = "$(target)" ] ; then \
f6a874ac 447 echo $(AR); \
7e717196 448 else \
455c8f48 449 t='$(program_transform_name)'; echo ar | sed -e "$$t" ; \
7e717196 450 fi; \
4ac29b33 451 fi)
5262d6b6 452AR_FLAGS_FOR_TARGET =
7bde2862
GK
453AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
454AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
ed0db39f 455LIPO_FOR_TARGET = lipo
9f18db39 456ORIGINAL_AS_FOR_TARGET = @ORIGINAL_AS_FOR_TARGET@
4ac29b33 457RANLIB_FOR_TARGET := $(shell \
7e717196
JL
458 if [ -f $(objdir)/../binutils/ranlib ] ; then \
459 echo $(objdir)/../binutils/ranlib ; \
460 else \
4665e56c 461 if [ "$(host)" = "$(target)" ] ; then \
6dd05d08 462 echo $(RANLIB); \
7e717196 463 else \
455c8f48 464 t='$(program_transform_name)'; echo ranlib | sed -e "$$t" ; \
7e717196 465 fi; \
4ac29b33 466 fi)
9f18db39
PB
467ORIGINAL_LD_FOR_TARGET = @ORIGINAL_LD_FOR_TARGET@
468ORIGINAL_NM_FOR_TARGET = @ORIGINAL_NM_FOR_TARGET@
469NM_FOR_TARGET = ./nm
ed0db39f 470STRIP_FOR_TARGET := $(shell \
455c8f48
RW
471 if [ -f $(objdir)/../binutils/strip-new ] ; then \
472 echo $(objdir)/../binutils/strip-new ; \
ed0db39f
GK
473 else \
474 if [ "$(host)" = "$(target)" ] ; then \
475 echo strip; \
476 else \
455c8f48 477 t='$(program_transform_name)'; echo strip | sed -e "$$t" ; \
ed0db39f
GK
478 fi; \
479 fi)
7e717196 480
73458fb7
NN
481# --------
482# UNSORTED
483# --------
484
4e872036
AS
485# Where to find some libiberty headers.
486HASHTAB_H = $(srcdir)/../include/hashtab.h
e980df8e 487OBSTACK_H = $(srcdir)/../include/obstack.h
5193cc6d 488SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
e980df8e 489MD5_H = $(srcdir)/../include/md5.h
ee666c25 490XREGEX_H = $(srcdir)/../include/xregex.h
f9bf5a8e 491FNMATCH_H = $(srcdir)/../include/fnmatch.h
4e872036 492
d7f09764
DN
493# Linker plugin API headers
494LINKER_PLUGIN_API_H = $(srcdir)/../include/plugin-api.h
d7f09764 495
a078a589 496# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
08b2bad2 497NATIVE_SYSTEM_HEADER_DIR = @NATIVE_SYSTEM_HEADER_DIR@
512b62fb 498# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
4977bab6 499CROSS_SYSTEM_HEADER_DIR = @CROSS_SYSTEM_HEADER_DIR@
512b62fb 500
a078a589 501# autoconf sets SYSTEM_HEADER_DIR to one of the above.
073a8998 502# Purge it of unnecessary internal relative paths
be448346
BS
503# to directories that might not exist yet.
504# The sed idiom for this is to repeat the search-and-replace until it doesn't match, using :a ... ta.
70d0631e
RW
505# Use single quotes here to avoid nested double- and backquotes, this
506# macro is also used in a double-quoted context.
507SYSTEM_HEADER_DIR = `echo @SYSTEM_HEADER_DIR@ | sed -e :a -e 's,[^/]*/\.\.\/,,' -e ta`
a078a589 508
52c0e446 509# Control whether to run fixincludes.
0df47f66 510STMP_FIXINC = @STMP_FIXINC@
ac1284f9 511
40dc28fc
ILT
512# Test to see whether <limits.h> exists in the system header files.
513LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
514
4977bab6
ZW
515# Directory for prefix to system directories, for
516# each of $(system_prefix)/usr/include, $(system_prefix)/usr/lib, etc.
517TARGET_SYSTEM_ROOT = @TARGET_SYSTEM_ROOT@
ce86ad58 518TARGET_SYSTEM_ROOT_DEFINE = @TARGET_SYSTEM_ROOT_DEFINE@
4977bab6 519
2ed26f6b
ZW
520xmake_file=@xmake_file@
521tmake_file=@tmake_file@
aca600aa
AS
522TM_ENDIAN_CONFIG=@TM_ENDIAN_CONFIG@
523TM_MULTILIB_CONFIG=@TM_MULTILIB_CONFIG@
524TM_MULTILIB_EXCEPTIONS_CONFIG=@TM_MULTILIB_EXCEPTIONS_CONFIG@
3c18ea24
RK
525out_file=$(srcdir)/config/@out_file@
526out_object_file=@out_object_file@
c49a6962
JM
527common_out_file=$(srcdir)/common/config/@common_out_file@
528common_out_object_file=@common_out_object_file@
8677664e 529md_file=$(srcdir)/common.md $(srcdir)/config/@md_file@
4977bab6 530tm_file_list=@tm_file_list@
e22340b0 531tm_include_list=@tm_include_list@
d5355cb2 532tm_defines=@tm_defines@
11642c3a 533tm_p_file_list=@tm_p_file_list@
e22340b0 534tm_p_include_list=@tm_p_include_list@
11642c3a 535build_xm_file_list=@build_xm_file_list@
e22340b0 536build_xm_include_list=@build_xm_include_list@
11642c3a
ZW
537build_xm_defines=@build_xm_defines@
538host_xm_file_list=@host_xm_file_list@
e22340b0 539host_xm_include_list=@host_xm_include_list@
11642c3a 540host_xm_defines=@host_xm_defines@
e22340b0
ZW
541xm_file_list=@xm_file_list@
542xm_include_list=@xm_include_list@
3d9d2476 543xm_defines=@xm_defines@
d4a10d0a
SB
544lang_checks=
545lang_checks_parallelized=
39dabefd 546lang_opt_files=@lang_opt_files@ $(srcdir)/c-family/c.opt $(srcdir)/common.opt
3c18ea24 547lang_specs_files=@lang_specs_files@
3103b7db 548lang_tree_files=@lang_tree_files@
11642c3a 549target_cpu_default=@target_cpu_default@
d8bb17c8 550OBJC_BOEHM_GC=@objc_boehm_gc@
0974c7d7 551extra_modes_file=@extra_modes_file@
75685792 552extra_opt_files=@extra_opt_files@
476d9098 553host_hook_obj=@out_host_hook_obj@
79d8453e 554
e0cdc09f
MK
555# Multiarch support
556enable_multiarch = @enable_multiarch@
d757eae9 557with_cpu = @with_cpu@
e0cdc09f
MK
558with_float = @with_float@
559ifeq ($(enable_multiarch),yes)
560 if_multiarch = $(1)
e0cdc09f 561else
9eae3904
MK
562 ifeq ($(enable_multiarch),auto)
563 # SYSTEM_HEADER_DIR is makefile syntax, cannot be evaluated in configure.ac
564 if_multiarch = $(if $(wildcard $(shell echo $(SYSTEM_HEADER_DIR))/../../usr/lib/*/crti.o),$(1))
565 else
566 if_multiarch =
567 endif
e0cdc09f
MK
568endif
569
73458fb7
NN
570# ------------------------
571# Installation directories
572# ------------------------
573
79d8453e
RS
574# Common prefix for installation directories.
575# NOTE: This directory must exist when you start installation.
3c18ea24 576prefix = @prefix@
c844ddda
RS
577# Directory in which to put localized header files. On the systems with
578# gcc as the native cc, `local_prefix' may not be `prefix' which is
579# `/usr'.
0b2fbcb2 580# NOTE: local_prefix *should not* default from prefix.
3c18ea24 581local_prefix = @local_prefix@
2e494f70 582# Directory in which to put host dependent programs and libraries
3c18ea24 583exec_prefix = @exec_prefix@
79d8453e 584# Directory in which to put the executable for the command `gcc'
3c18ea24 585bindir = @bindir@
79d8453e 586# Directory in which to put the directories used by the compiler.
3c18ea24 587libdir = @libdir@
a8ee6e2d
GK
588# Directory in which GCC puts its executables.
589libexecdir = @libexecdir@
73458fb7
NN
590
591# --------
592# UNSORTED
593# --------
594
a8ee6e2d 595# Directory in which the compiler finds libraries etc.
85c64bbe 596libsubdir = $(libdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
a8ee6e2d 597# Directory in which the compiler finds executables
85c64bbe 598libexecsubdir = $(libexecdir)/gcc/$(real_target_noncanonical)/$(version)$(accel_dir_suffix)
f142b5bc
RG
599# Directory in which all plugin resources are installed
600plugin_resourcesdir = $(libsubdir)/plugin
601 # Directory in which plugin headers are installed
602plugin_includedir = $(plugin_resourcesdir)/include
603# Directory in which plugin specific executables are installed
604plugin_bindir = $(libexecsubdir)/plugin
91c7bd9b 605# Used to produce a relative $(gcc_tooldir) in gcc.o
85c64bbe
BS
606ifeq ($(enable_as_accelerator),yes)
607unlibsubdir = ../../../../..
608else
1f72bfca 609unlibsubdir = ../../..
85c64bbe 610endif
15c723f3
RS
611# $(prefix), expressed as a path relative to $(libsubdir).
612#
613# An explanation of the sed strings:
614# -e 's|^$(prefix)||' matches and eliminates 'prefix' from 'exec_prefix'
615# -e 's|/$$||' match a trailing forward slash and eliminates it
616# -e 's|^[^/]|/|' forces the string to start with a forward slash (*)
617# -e 's|/[^/]*|../|g' replaces each occurrence of /<directory> with ../
618#
619# (*) Note this pattern overwrites the first character of the string
620# with a forward slash if one is not already present. This is not a
621# problem because the exact names of the sub-directories concerned is
622# unimportant, just the number of them matters.
623#
624# The practical upshot of these patterns is like this:
625#
626# prefix exec_prefix result
627# ------ ----------- ------
628# /foo /foo/bar ../
629# /foo/ /foo/bar ../
630# /foo /foo/bar/ ../
631# /foo/ /foo/bar/ ../
632# /foo /foo/bar/ugg ../../
633libsubdir_to_prefix := \
634 $(unlibsubdir)/$(shell echo "$(libdir)" | \
635 sed -e 's|^$(prefix)||' -e 's|/$$||' -e 's|^[^/]|/|' \
636 -e 's|/[^/]*|../|g')
637# $(exec_prefix), expressed as a path relative to $(prefix).
638prefix_to_exec_prefix := \
639 $(shell echo "$(exec_prefix)" | \
640 sed -e 's|^$(prefix)||' -e 's|^/||' -e '/./s|$$|/|')
d062c304 641# Directory in which to find other cross-compilation tools and headers.
4c112cda 642dollar = @dollar@
d062c304
JL
643# Used in install-cross.
644gcc_tooldir = @gcc_tooldir@
f098ead2 645# Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
caa55b1e 646build_tooldir = $(exec_prefix)/$(target_noncanonical)
e2187d3b
BK
647# Directory in which the compiler finds target-independent g++ includes.
648gcc_gxx_include_dir = @gcc_gxx_include_dir@
17719d09 649gcc_gxx_include_dir_add_sysroot = @gcc_gxx_include_dir_add_sysroot@
49ba557e 650# Directory to search for site-specific includes.
793e9558
PB
651local_includedir = $(local_prefix)/include
652includedir = $(prefix)/include
0b2fbcb2 653# where the info files go
3c18ea24 654infodir = @infodir@
587a4ba6
L
655# Where cpp should go besides $prefix/bin if necessary
656cpp_install_dir = @cpp_install_dir@
ab87f8c8 657# where the locale files go
191bf464 658datadir = @datadir@
ab87f8c8 659localedir = $(datadir)/locale
79d8453e 660# Extension (if any) to put in installed man-page filename.
77bd67cb
JM
661man1ext = .1
662man7ext = .7
173712fb 663objext = .o
6e26218f
ILT
664exeext = @host_exeext@
665build_exeext = @build_exeext@
173712fb 666
79d8453e 667# Directory in which to put man pages.
a76b6b40
MH
668mandir = @mandir@
669man1dir = $(mandir)/man1
77bd67cb 670man7dir = $(mandir)/man7
62c13b81
RS
671# Dir for temp files.
672tmpdir = /tmp
79d8453e 673
22482f74
MS
674datarootdir = @datarootdir@
675docdir = @docdir@
9288b845 676# Directory in which to build HTML
22482f74 677build_htmldir = $(objdir)/HTML/gcc-$(version)
9d65c5cb 678# Directory in which to put HTML
22482f74 679htmldir = @htmldir@
9d65c5cb 680
ab87f8c8
JL
681# Whether we were configured with NLS.
682USE_NLS = @USE_NLS@
683
684# Internationalization library.
56694dd9
ZW
685LIBINTL = @LIBINTL@
686LIBINTL_DEP = @LIBINTL_DEP@
ab87f8c8 687
62c62a4f
RO
688# Character encoding conversion library.
689LIBICONV = @LIBICONV@
56694dd9 690LIBICONV_DEP = @LIBICONV_DEP@
62c62a4f 691
0a25f1f5
RH
692# If a supplementary library is being used for the GC.
693GGC_LIB=
694
160633c6
MM
695# "true" if the target C library headers are unavailable; "false"
696# otherwise.
697inhibit_libc = @inhibit_libc@
698ifeq ($(inhibit_libc),true)
699INHIBIT_LIBC_CFLAGS = -Dinhibit_libc
700endif
701
79d8453e 702# List of extra executables that should be compiled for this target machine
d82c57a8 703# that are used when linking.
79d8453e 704# The rules for compiling them should be in the t-* file for the machine.
3c18ea24 705EXTRA_PROGRAMS = @extra_programs@
2e494f70 706
2e494f70
RS
707# List of extra object files that should be compiled and linked with
708# compiler proper (cc1, cc1obj, cc1plus).
3c18ea24 709EXTRA_OBJS = @extra_objs@
2e494f70 710
43554690
RK
711# List of extra object files that should be compiled and linked with
712# the gcc driver.
30500d84 713EXTRA_GCC_OBJS =@extra_gcc_objs@
43554690 714
e3b3fa45
RO
715# List of extra libraries that should be linked with the gcc driver.
716EXTRA_GCC_LIBS = @EXTRA_GCC_LIBS@
717
f780d21b 718# List of additional header files to install.
3c18ea24 719EXTRA_HEADERS =@extra_headers_list@
f780d21b 720
207bf79d
JM
721# How to handle <stdint.h>.
722USE_GCC_STDINT = @use_gcc_stdint@
723
c38f02df
ILT
724# The configure script will set this to collect2$(exeext), except on a
725# (non-Unix) host which can not build collect2, for which it will be
726# set to empty.
727COLLECT2 = @collect2@
47547081 728
79d8453e 729# Program to convert libraries.
4c457b6b 730LIBCONVERT =
79d8453e
RS
731
732# Control whether header files are installed.
e34a3d31 733INSTALL_HEADERS=install-headers install-mkheaders
79d8453e 734
09fa0705
ZW
735# Control whether Info documentation is built and installed.
736BUILD_INFO = @BUILD_INFO@
09fa0705 737
fd939e46
JM
738# Control whether manpages generated by texi2pod.pl can be rebuilt.
739GENERATED_MANPAGES = @GENERATED_MANPAGES@
740
66d7ffbf 741# Additional directories of header files to run fixincludes on.
4ab08223
RS
742# These should be directories searched automatically by default
743# just as /usr/include is.
4c457b6b 744# *Do not* use this for directories that happen to contain
4ab08223 745# header files, but are not searched automatically by default.
66d7ffbf
RS
746# On most systems, this is empty.
747OTHER_FIXINCLUDES_DIRS=
748
7c27f801 749# A list of all the language-specific executables.
d4a10d0a 750COMPILERS = @all_compilers@
7c27f801 751
acbbf3d9 752# List of things which should already be built whenever we try to use xgcc
79d8453e 753# to compile anything (without linking).
d4a10d0a 754GCC_PASSES=xgcc$(exeext) specs
79d8453e 755
79d8453e
RS
756# Directory to link to, when using the target `maketest'.
757DIR = ../gcc
758
a078a589 759# Native compiler for the build machine and its switches.
eaf9f3b2 760CC_FOR_BUILD = @CC_FOR_BUILD@
bdd5dc28 761CXX_FOR_BUILD = @CXX_FOR_BUILD@
5148d2e3
L
762NO_PIE_CFLAGS_FOR_BUILD = @NO_PIE_CFLAGS_FOR_BUILD@
763NO_PIE_FLAG_FOR_BUILD = @NO_PIE_FLAG_FOR_BUILD@
4977bab6 764BUILD_CFLAGS= @BUILD_CFLAGS@ -DGENERATOR_FILE
bdd5dc28 765BUILD_CXXFLAGS = @BUILD_CXXFLAGS@ -DGENERATOR_FILE
5148d2e3
L
766BUILD_NO_PIE_CFLAGS = @BUILD_NO_PIE_CFLAGS@
767BUILD_CFLAGS += $(BUILD_NO_PIE_CFLAGS)
768BUILD_CXXFLAGS += $(BUILD_NO_PIE_CFLAGS)
a078a589 769
7980bfb8 770# Native compiler that we use. This may be C++ some day.
bdd5dc28
DN
771COMPILER_FOR_BUILD = $(CXX_FOR_BUILD)
772BUILD_COMPILERFLAGS = $(BUILD_CXXFLAGS)
7980bfb8 773
c607156f 774# Native linker that we use.
bdd5dc28
DN
775LINKER_FOR_BUILD = $(CXX_FOR_BUILD)
776BUILD_LINKERFLAGS = $(BUILD_CXXFLAGS)
c607156f 777
a078a589 778# Native linker and preprocessor flags. For x-fragment overrides.
f8c33439 779BUILD_LDFLAGS=@BUILD_LDFLAGS@
5148d2e3
L
780BUILD_NO_PIE_FLAG = @BUILD_NO_PIE_FLAG@
781BUILD_LDFLAGS += $(BUILD_NO_PIE_FLAG)
2ceb362d
AM
782BUILD_CPPFLAGS= -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
783 -I$(srcdir)/../include @INCINTL@ $(CPPINC) $(CPPFLAGS)
79d8453e 784
338023d4 785# Actual name to use when installing a native compiler.
e165d61b
KC
786GCC_INSTALL_NAME := $(shell echo gcc|sed '$(program_transform_name)')
787GCC_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gcc|sed '$(program_transform_name)')
788CPP_INSTALL_NAME := $(shell echo cpp|sed '$(program_transform_name)')
e165d61b 789GCOV_INSTALL_NAME := $(shell echo gcov|sed '$(program_transform_name)')
c77556a5 790GCOV_TOOL_INSTALL_NAME := $(shell echo gcov-tool|sed '$(program_transform_name)')
338023d4 791
e933cbe0
JL
792# Setup the testing framework, if you have one
793EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
794 echo $${rootme}/../expect/expect ; \
795 else echo expect ; fi`
796
797RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
798 echo $${srcdir}/../dejagnu/runtest ; \
799 else echo runtest; fi`
800RUNTESTFLAGS =
801
3bd6d4c4
AO
802# This should name the specs file that we're going to install. Target
803# Makefiles may override it and name another file to be generated from
804# the built-in specs and installed as the default spec, as long as
805# they also introduce a rule to generate a file name specs, to be used
806# at build time.
807SPECS = specs
808
fd438373
MM
809# Extra include files that are defined by HeaderInclude directives in
810# the .opt files
811OPTIONS_H_EXTRA =
812
813# Extra include files that are defined by SourceInclude directives in
814# the .opt files
6f4185d7 815OPTIONS_C_EXTRA = $(PRETTY_PRINT_H)
fd438373
MM
816
817@option_includes@
818
79d8453e
RS
819# End of variables for you to override.
820
4977bab6
ZW
821# GTM_H lists the config files that the generator files depend on,
822# while TM_H lists the ones ordinary gcc files depend on, which
823# includes several files generated by those generators.
e980df8e 824BCONFIG_H = bconfig.h $(build_xm_file_list)
4977bab6 825CONFIG_H = config.h $(host_xm_file_list)
1b0c37d7 826TCONFIG_H = tconfig.h $(xm_file_list)
4977bab6 827TM_P_H = tm_p.h $(tm_p_file_list)
c513ce77 828GTM_H = tm.h $(tm_file_list) insn-constants.h
852b75ed 829TM_H = $(GTM_H) insn-flags.h $(OPTIONS_H)
4977bab6 830
a1286ef5 831# Variables for version information.
f08dd1f8
ZW
832BASEVER := $(srcdir)/BASE-VER # 4.x.y
833DEVPHASE := $(srcdir)/DEV-PHASE # experimental, prerelease, ""
834DATESTAMP := $(srcdir)/DATESTAMP # YYYYMMDD or empty
db5b4110 835REVISION := $(srcdir)/REVISION # [BRANCH revision XXXXXX]
a1286ef5 836
f08dd1f8
ZW
837BASEVER_c := $(shell cat $(BASEVER))
838DEVPHASE_c := $(shell cat $(DEVPHASE))
839DATESTAMP_c := $(shell cat $(DATESTAMP))
a1286ef5 840
db5b4110
L
841ifeq (,$(wildcard $(REVISION)))
842REVISION_c :=
f8ed6dc5 843REVISION :=
db5b4110
L
844else
845REVISION_c := $(shell cat $(REVISION))
846endif
847
f08dd1f8 848version := $(BASEVER_c)
a1286ef5 849
a6c014db
JJ
850PATCHLEVEL_c := \
851 $(shell echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/')
852
853
a1286ef5
ZW
854# For use in version.c - double quoted strings, with appropriate
855# surrounding punctuation and spaces, and with the datestamp and
856# development phase collapsed to the empty string in release mode
a6c014db
JJ
857# (i.e. if DEVPHASE_c is empty and PATCHLEVEL_c is 0). The space
858# immediately after the comma in the $(if ...) constructs is
859# significant - do not remove it.
f08dd1f8
ZW
860BASEVER_s := "\"$(BASEVER_c)\""
861DEVPHASE_s := "\"$(if $(DEVPHASE_c), ($(DEVPHASE_c)))\""
a6c014db
JJ
862DATESTAMP_s := \
863 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(DATESTAMP_c))\""
2f41c1d6
PB
864PKGVERSION_s:= "\"@PKGVERSION@\""
865BUGURL_s := "\"@REPORT_BUGS_TO@\""
866
867PKGVERSION := @PKGVERSION@
868BUGURL_TEXI := @REPORT_BUGS_TEXI@
a1286ef5 869
db5b4110 870ifdef REVISION_c
a6c014db
JJ
871REVISION_s := \
872 "\"$(if $(DEVPHASE_c)$(filter-out 0,$(PATCHLEVEL_c)), $(REVISION_c))\""
db5b4110 873else
cf8aba7f 874REVISION_s := "\"\""
db5b4110
L
875endif
876
e980df8e 877# Shorthand variables for dependency lists.
7b3b6ae4 878DUMPFILE_H = $(srcdir)/../libcpp/include/line-map.h dumpfile.h
9771b263 879VEC_H = vec.h statistics.h $(GGC_H)
6bac43d7 880HASH_TABLE_H = $(HASHTAB_H) hash-table.h $(GGC_H)
9771b263 881EXCEPT_H = except.h $(HASHTAB_H)
4bccb39e 882TARGET_DEF = target.def target-hooks-macros.h target-insns.def
acce4e77 883C_TARGET_DEF = c-family/c-target.def target-hooks-macros.h
c49a6962 884COMMON_TARGET_DEF = common/common-target.def target-hooks-macros.h
f5273574 885TARGET_H = $(TM_H) target.h $(TARGET_DEF) insn-modes.h insn-codes.h
acce4e77 886C_TARGET_H = c-family/c-target.h $(C_TARGET_DEF)
677f3fa8 887COMMON_TARGET_H = common/common-target.h $(INPUT_H) $(COMMON_TARGET_DEF)
e980df8e
TT
888MACHMODE_H = machmode.h mode-classes.def insn-modes.h
889HOOKS_H = hooks.h $(MACHMODE_H)
890HOSTHOOKS_DEF_H = hosthooks-def.h $(HOOKS_H)
891LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
38f8b050 892TARGET_DEF_H = target-def.h target-hooks-def.h $(HOOKS_H) targhooks.h
acce4e77 893C_TARGET_DEF_H = c-family/c-target-def.h c-family/c-target-hooks-def.h \
677f3fa8 894 $(TREE_H) $(C_COMMON_H) $(HOOKS_H) common/common-targhooks.h
79bdca32
SB
895RTL_BASE_H = coretypes.h rtl.h rtl.def $(MACHMODE_H) reg-notes.def \
896 insn-notes.def $(INPUT_H) $(REAL_H) statistics.h $(VEC_H) \
897 $(FIXED_VALUE_H) alias.h $(HASHTAB_H)
e63ea00c 898FIXED_VALUE_H = fixed-value.h $(MACHMODE_H) double-int.h
9771b263 899RTL_H = $(RTL_BASE_H) $(FLAGS_H) genrtl.h
9f418533 900READ_MD_H = $(OBSTACK_H) $(HASHTAB_H) read-md.h
d78182cc 901PARAMS_H = params.h params-enum.h params.def
0a35513e 902BUILTINS_DEF = builtins.def sync-builtins.def omp-builtins.def \
939b37da 903 gtm-builtins.def sanitizer.def cilkplus.def cilk-builtins.def
25583c4f
RS
904INTERNAL_FN_DEF = internal-fn.def
905INTERNAL_FN_H = internal-fn.h $(INTERNAL_FN_DEF)
5e351e96
DN
906TREE_CORE_H = tree-core.h coretypes.h all-tree.def tree.def \
907 c-family/c-common.def $(lang_tree_files) $(MACHMODE_H) \
908 $(BUILTINS_DEF) $(INPUT_H) statistics.h \
909 $(VEC_H) treestruct.def $(HASHTAB_H) \
9771b263 910 double-int.h alias.h $(SYMTAB_H) $(FLAGS_H) \
39dabefd 911 $(REAL_H) $(FIXED_VALUE_H)
5e351e96 912TREE_H = tree.h $(TREE_CORE_H) tree-check.h
7a8cba34 913REGSET_H = regset.h $(BITMAP_H) hard-reg-set.h
6889a650
FW
914BASIC_BLOCK_H = basic-block.h $(PREDICT_H) $(VEC_H) $(FUNCTION_H) \
915 cfg-flags.def cfghooks.h
9f25a338 916GIMPLE_H = gimple.h gimple.def gsstruct.def $(VEC_H) \
9771b263 917 $(GGC_H) $(BASIC_BLOCK_H) $(TREE_H) tree-ssa-operands.h \
daa6e488 918 tree-ssa-alias.h $(INTERNAL_FN_H) $(HASH_TABLE_H) is-a.h
c77556a5 919GCOV_IO_H = gcov-io.h gcov-iov.h auto-host.h gcov-counter.def
e980df8e 920RECOG_H = recog.h
e980df8e 921EMIT_RTL_H = emit-rtl.h
79bdca32 922FLAGS_H = flags.h flag-types.h $(OPTIONS_H)
fd438373 923OPTIONS_H = options.h flag-types.h $(OPTIONS_H_EXTRA)
9771b263
DN
924FUNCTION_H = function.h $(HASHTAB_H) $(TM_H) hard-reg-set.h \
925 $(VEC_H) $(INPUT_H) $(MACHMODE_H)
e980df8e 926EXPR_H = expr.h insn-config.h $(FUNCTION_H) $(RTL_H) $(FLAGS_H) $(TREE_H) $(MACHMODE_H) $(EMIT_RTL_H)
cd1440b1 927OPTABS_H = optabs.h insn-codes.h insn-opinit.h
539bac37 928REGS_H = regs.h $(MACHMODE_H) hard-reg-set.h
9771b263 929CFGLOOP_H = cfgloop.h $(BASIC_BLOCK_H) double-int.h \
7a8cba34 930 $(BITMAP_H) sbitmap.h
e980df8e 931IPA_UTILS_H = ipa-utils.h $(TREE_H) $(CGRAPH_H)
e63ea00c 932IPA_REFERENCE_H = ipa-reference.h $(BITMAP_H) $(TREE_H)
3e097227 933CGRAPH_H = cgraph.h $(VEC_H) $(TREE_H) $(BASIC_BLOCK_H) $(FUNCTION_H) \
d122681a 934 cif-code.def ipa-ref.h $(LINKER_PLUGIN_API_H) is-a.h
7a8cba34
SB
935DF_H = df.h $(BITMAP_H) $(REGSET_H) sbitmap.h $(BASIC_BLOCK_H) \
936 alloc-pool.h $(TIMEVAR_H)
e980df8e 937RESOURCE_H = resource.h hard-reg-set.h $(DF_H)
6afbc885 938GCC_H = gcc.h version.h $(DIAGNOSTIC_CORE_H)
e63ea00c 939GGC_H = ggc.h gtype-desc.h statistics.h
e980df8e 940TIMEVAR_H = timevar.h timevar.def
88a00ef7 941INSN_ATTR_H = insn-attr.h insn-attr-common.h $(INSN_ADDR_H)
9771b263 942INSN_ADDR_H = $(srcdir)/insn-addr.h
532aafad 943C_COMMON_H = c-family/c-common.h c-family/c-common.def $(TREE_H) \
39dabefd
SB
944 $(SPLAY_TREE_H) $(CPPLIB_H) $(GGC_H) $(DIAGNOSTIC_CORE_H)
945C_PRAGMA_H = c-family/c-pragma.h $(CPPLIB_H)
0a6c2227 946C_TREE_H = c/c-tree.h $(C_COMMON_H) $(DIAGNOSTIC_H)
e63ea00c
RW
947SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h \
948 $(srcdir)/../include/safe-ctype.h $(srcdir)/../include/filenames.h
e980df8e 949PREDICT_H = predict.h predict.def
d8044160
GK
950CPPLIB_H = $(srcdir)/../libcpp/include/line-map.h \
951 $(srcdir)/../libcpp/include/cpplib.h
e63ea00c 952INPUT_H = $(srcdir)/../libcpp/include/line-map.h input.h
dc357798 953OPTS_H = $(INPUT_H) $(VEC_H) opts.h $(OBSTACK_H)
e63ea00c 954SYMTAB_H = $(srcdir)/../libcpp/include/symtab.h $(OBSTACK_H)
d8044160 955CPP_ID_DATA_H = $(CPPLIB_H) $(srcdir)/../libcpp/include/cpp-id-data.h
e63ea00c 956CPP_INTERNAL_H = $(srcdir)/../libcpp/internal.h $(CPP_ID_DATA_H)
7b3b6ae4
LC
957TREE_DUMP_H = tree-dump.h $(SPLAY_TREE_H) $(DUMPFILE_H)
958TREE_PASS_H = tree-pass.h $(TIMEVAR_H) $(DUMPFILE_H)
3fadf78a 959TREE_SSA_H = tree-ssa.h tree-ssa-operands.h \
7a8cba34 960 $(BITMAP_H) sbitmap.h $(BASIC_BLOCK_H) $(GIMPLE_H) \
5006671f
RG
961 $(HASHTAB_H) $(CGRAPH_H) $(IPA_REFERENCE_H) \
962 tree-ssa-alias.h
b355f52e 963PRETTY_PRINT_H = pretty-print.h $(INPUT_H) $(OBSTACK_H) wide-int-print.h
ee666c25
SB
964TREE_PRETTY_PRINT_H = tree-pretty-print.h $(PRETTY_PRINT_H)
965GIMPLE_PRETTY_PRINT_H = gimple-pretty-print.h $(TREE_PRETTY_PRINT_H)
7c475d11 966DIAGNOSTIC_CORE_H = diagnostic-core.h $(INPUT_H) bversion.h diagnostic.def
1da2ed5f 967DIAGNOSTIC_H = diagnostic.h $(DIAGNOSTIC_CORE_H) $(PRETTY_PRINT_H)
39dabefd
SB
968C_PRETTY_PRINT_H = c-family/c-pretty-print.h $(PRETTY_PRINT_H) \
969 $(C_COMMON_H) $(TREE_H)
9771b263 970TREE_INLINE_H = tree-inline.h
e980df8e 971REAL_H = real.h $(MACHMODE_H)
d7f09764 972LTO_STREAMER_H = lto-streamer.h $(LINKER_PLUGIN_API_H) $(TARGET_H) \
4a8fb1a1 973 $(CGRAPH_H) $(VEC_H) $(HASH_TABLE_H) $(TREE_H) $(GIMPLE_H) \
9f25a338 974 $(GCOV_IO_H) $(DIAGNOSTIC_H) alloc-pool.h
310bc633 975IPA_PROP_H = ipa-prop.h $(TREE_H) $(VEC_H) $(CGRAPH_H) $(GIMPLE_H) alloc-pool.h
e63ea00c 976BITMAP_H = bitmap.h $(HASHTAB_H) statistics.h
ee666c25
SB
977GCC_PLUGIN_H = gcc-plugin.h highlev-plugin-common.h plugin.def \
978 $(CONFIG_H) $(SYSTEM_H) $(HASHTAB_H)
3e17e31d 979PLUGIN_H = plugin.h $(GCC_PLUGIN_H)
0c463e16 980PLUGIN_VERSION_H = plugin-version.h configargs.h
8c5005ce 981CONTEXT_H = context.h
886456e2 982GENSUPPORT_H = gensupport.h read-md.h optabs.def
c4df8f8c 983
544eb21e 984#\f
79d8453e
RS
985# Now figure out from those variables how to compile and link.
986
a078a589
ZW
987# IN_GCC distinguishes between code compiled into GCC itself and other
988# programs built during a bootstrap.
2989d30c
GK
989# autoconf inserts -DCROSS_DIRECTORY_STRUCTURE if we are building a
990# cross compiler which does not use the native headers and libraries.
459260ec 991INTERNAL_CFLAGS = -DIN_GCC $(PICFLAG) @CROSS@
79d8453e 992
83599948 993# This is the variable actually used when we compile. If you change this,
a6a5e4c9 994# you probably want to update BUILD_CFLAGS in configure.ac
7a3b4887 995ALL_CFLAGS = $(T_CFLAGS) $(CFLAGS-$@) \
da0f6381 996 $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) @DEFS@
79d8453e 997
00020c16 998# The C++ version.
295409e1 999ALL_CXXFLAGS = $(T_CFLAGS) $(CFLAGS-$@) $(CXXFLAGS) $(INTERNAL_CFLAGS) \
4c0cca18
UW
1000 $(COVERAGE_FLAGS) $(ALIASING_FLAGS) $(NOEXCEPTION_FLAGS) \
1001 $(WARN_CXXFLAGS) @DEFS@
00020c16 1002
3a6ebcdc
PB
1003# Likewise. Put INCLUDES at the beginning: this way, if some autoconf macro
1004# puts -I options in CPPFLAGS, our include files in the srcdir will always
1005# win against random include files in /usr/include.
da0f6381 1006ALL_CPPFLAGS = $(INCLUDES) $(CPPFLAGS)
79d8453e 1007
7980bfb8 1008# This is the variable to use when using $(COMPILER).
00020c16 1009ALL_COMPILERFLAGS = $(ALL_CXXFLAGS)
7980bfb8 1010
c607156f 1011# This is the variable to use when using $(LINKER).
00020c16 1012ALL_LINKERFLAGS = $(ALL_CXXFLAGS)
c607156f 1013
71b5d516 1014# Build and host support libraries.
459260ec
DM
1015
1016# Use the "pic" build of libiberty if --enable-host-shared.
1017ifeq ($(enable_host_shared),yes)
1018LIBIBERTY = ../libiberty/pic/libiberty.a
1019BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/pic/libiberty.a
1020else
06f0b04c 1021LIBIBERTY = ../libiberty/libiberty.a
57255173 1022BUILD_LIBIBERTY = $(build_libobjdir)/libiberty/libiberty.a
459260ec 1023endif
79d8453e 1024
935bfb44 1025# Dependencies on the intl and portability libraries.
2691e6d7 1026LIBDEPS= libcommon.a $(CPPLIB) $(LIBIBERTY) $(LIBINTL_DEP) $(LIBICONV_DEP) \
d83697f4 1027 $(LIBDECNUMBER) $(LIBBACKTRACE)
79d8453e
RS
1028
1029# Likewise, for use in the tools that must run on this machine
1030# even if we are cross-building GCC.
4977bab6 1031BUILD_LIBDEPS= $(BUILD_LIBIBERTY)
79d8453e
RS
1032
1033# How to link with both our special library facilities
1034# and the system's installed libraries.
d83697f4
ILT
1035LIBS = @LIBS@ libcommon.a $(CPPLIB) $(LIBINTL) $(LIBICONV) $(LIBBACKTRACE) \
1036 $(LIBIBERTY) $(LIBDECNUMBER) $(HOST_LIBS)
d348be26 1037BACKENDLIBS = $(ISLLIBS) $(GMPLIBS) $(PLUGINLIBS) $(HOST_LIBS) \
181e5ea4 1038 $(ZLIB)
7d600178
RO
1039# Any system libraries needed just for GNAT.
1040SYSLIBS = @GNAT_LIBEXC@
1041
96ee6e08 1042# Used from ada/gcc-interface/Make-lang.in
3d4e720a
ST
1043GNATBIND = @GNATBIND@
1044GNATMAKE = @GNATMAKE@
1045
62c9aa5f
ZW
1046# Libs needed (at present) just for jcf-dump.
1047LDEXP_LIB = @LDEXP_LIB@
1048
79d8453e
RS
1049# Likewise, for use in the tools that must run on this machine
1050# even if we are cross-building GCC.
4977bab6 1051BUILD_LIBS = $(BUILD_LIBIBERTY)
79d8453e 1052
9b68b6ea 1053BUILD_RTL = build/rtl.o build/read-rtl.o build/ggc-none.o \
10692477 1054 build/vec.o build/min-insn-modes.o build/gensupport.o \
2d44c7de 1055 build/print-rtl.o build/hash-table.o
9b68b6ea 1056BUILD_MD = build/read-md.o
3b620440 1057BUILD_ERRORS = build/errors.o
79d8453e
RS
1058
1059# Specify the directories to be searched for header files.
1060# Both . and srcdir are used, in that order,
eaf4e618 1061# so that *config.h will be found in the compilation
79d8453e 1062# subdirectory rather than in the source directory.
b8dad04b
ZW
1063# -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
1064# currently being compiled, in both source trees, to be examined as well.
6eb95e99 1065# libintl.h will be found in ../intl if we are using the included libintl.
b8dad04b 1066INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
6de9cd9a 1067 -I$(srcdir)/../include @INCINTL@ \
d83697f4 1068 $(CPPINC) $(GMPINC) $(DECNUMINC) $(BACKTRACEINC) \
d348be26 1069 $(ISLINC)
79d8453e 1070
043378c3 1071COMPILE.base = $(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) -o $@
54c09437 1072ifeq ($(CXXDEPMODE),depmode=gcc3)
043378c3
TT
1073# Note a subtlety here: we use $(@D) for the directory part, to make
1074# things like the go/%.o rule work properly; but we use $(*F) for the
1075# file part, as we just want the file part of the stem, not the entire
1076# file name.
1077COMPILE = $(COMPILE.base) -MT $@ -MMD -MP -MF $(@D)/$(DEPDIR)/$(*F).TPo
1078POSTCOMPILE = @mv $(@D)/$(DEPDIR)/$(*F).TPo $(@D)/$(DEPDIR)/$(*F).Po
1079else
1080COMPILE = source='$<' object='$@' libtool=no \
54c09437 1081 DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) $(COMPILE.base)
043378c3
TT
1082POSTCOMPILE =
1083endif
1084
9469b9b2 1085.cc.o .c.o:
043378c3
TT
1086 $(COMPILE) $<
1087 $(POSTCOMPILE)
79d8453e 1088
544eb21e 1089#\f
73458fb7
NN
1090# Support for additional languages (other than C).
1091# C can be supported this way too (leave for later).
013a2ee0 1092
2ed26f6b 1093LANG_MAKEFRAGS = @all_lang_makefrags@
013a2ee0
DE
1094
1095# Flags to pass to recursive makes.
8b1f719a 1096# CC is set by configure.
013a2ee0 1097# ??? The choices here will need some experimenting with.
e158a5fb
MM
1098
1099export AR_FOR_TARGET
1100export AR_CREATE_FOR_TARGET
1101export AR_FLAGS_FOR_TARGET
1102export AR_EXTRACT_FOR_TARGET
1103export AWK
e158a5fb
MM
1104export DESTDIR
1105export GCC_FOR_TARGET
1106export INCLUDES
1107export INSTALL_DATA
040b1c5a 1108export LIPO_FOR_TARGET
e158a5fb
MM
1109export MACHMODE_H
1110export NM_FOR_TARGET
040b1c5a 1111export STRIP_FOR_TARGET
e158a5fb
MM
1112export RANLIB_FOR_TARGET
1113export libsubdir
e158a5fb 1114
8b1f719a 1115FLAGS_TO_PASS = \
da0f6381 1116 "ADA_CFLAGS=$(ADA_CFLAGS)" \
013a2ee0
DE
1117 "BISON=$(BISON)" \
1118 "BISONFLAGS=$(BISONFLAGS)" \
5b67ad6f 1119 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
013a2ee0 1120 "LDFLAGS=$(LDFLAGS)" \
1e608388
ZW
1121 "FLEX=$(FLEX)" \
1122 "FLEXFLAGS=$(FLEXFLAGS)" \
6a810ff4
OH
1123 "INSTALL=$(INSTALL)" \
1124 "INSTALL_DATA=$(INSTALL_DATA)" \
1125 "INSTALL_PROGRAM=$(INSTALL_PROGRAM)" \
1126 "INSTALL_SCRIPT=$(INSTALL_SCRIPT)" \
ac64120e
JW
1127 "LN=$(LN)" \
1128 "LN_S=$(LN_S)" \
013a2ee0
DE
1129 "MAKEINFO=$(MAKEINFO)" \
1130 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
03bbd83f 1131 "MAKEOVERRIDES=" \
013a2ee0 1132 "SHELL=$(SHELL)" \
aab26e16 1133 "exeext=$(exeext)" \
6e26218f 1134 "build_exeext=$(build_exeext)" \
aab26e16 1135 "objext=$(objext)" \
013a2ee0
DE
1136 "exec_prefix=$(exec_prefix)" \
1137 "prefix=$(prefix)" \
3bf810d8 1138 "local_prefix=$(local_prefix)" \
8f8d3278 1139 "gxx_include_dir=$(gcc_gxx_include_dir)" \
f098ead2 1140 "build_tooldir=$(build_tooldir)" \
91c7bd9b 1141 "gcc_tooldir=$(gcc_tooldir)" \
013a2ee0 1142 "bindir=$(bindir)" \
0ac3cb2a 1143 "libexecsubdir=$(libexecsubdir)" \
2d09b640 1144 "datarootdir=$(datarootdir)" \
ab87f8c8 1145 "datadir=$(datadir)" \
ab87f8c8 1146 "localedir=$(localedir)"
544eb21e 1147#\f
79d8453e
RS
1148# Lists of files for various purposes.
1149
75685792
RS
1150# All option source files
1151ALL_OPT_FILES=$(lang_opt_files) $(extra_opt_files)
1152
aac69a49
NC
1153# Target specific, C specific object file
1154C_TARGET_OBJS=@c_target_objs@
1155
1156# Target specific, C++ specific object file
1157CXX_TARGET_OBJS=@cxx_target_objs@
1158
c776a6d0
DF
1159# Target specific, Fortran specific object file
1160FORTRAN_TARGET_OBJS=@fortran_target_objs@
1161
d4a10d0a 1162# Object files for gcc many-languages driver.
70f25790 1163GCC_OBJS = gcc.o gcc-main.o ggc-none.o
14c7833c 1164
e6ac0270
GS
1165c-family-warn = $(STRICT_WARN)
1166
39dabefd
SB
1167# Language-specific object files shared by all C-family front ends.
1168C_COMMON_OBJS = c-family/c-common.o c-family/c-cppbuiltin.o c-family/c-dump.o \
c3388e62
DM
1169 c-family/c-format.o c-family/c-gimplify.o c-family/c-indentation.o \
1170 c-family/c-lex.o c-family/c-omp.o c-family/c-opts.o c-family/c-pch.o \
39dabefd 1171 c-family/c-ppoutput.o c-family/c-pragma.o c-family/c-pretty-print.o \
98906124 1172 c-family/c-semantics.o c-family/c-ada-spec.o \
c02065fc 1173 c-family/c-cilkplus.o \
939b37da 1174 c-family/array-notation-common.o c-family/cilk.o c-family/c-ubsan.o
e8066a5d 1175
79d8453e 1176# Language-independent object files.
0027ed3d
SB
1177# We put the *-match.o and insn-*.o files first so that a parallel make
1178# will build them sooner, because they are large and otherwise tend to be
1179# the last objects to finish building.
252b3e8c 1180OBJS = \
0027ed3d
SB
1181 gimple-match.o \
1182 generic-match.o \
d5dc6bad
ILT
1183 insn-attrtab.o \
1184 insn-automata.o \
41723253 1185 insn-dfatab.o \
d5dc6bad
ILT
1186 insn-emit.o \
1187 insn-extract.o \
41723253 1188 insn-latencytab.o \
d5dc6bad
ILT
1189 insn-modes.o \
1190 insn-opinit.o \
1191 insn-output.o \
1192 insn-peep.o \
1193 insn-preds.o \
1194 insn-recog.o \
0fe60a1b 1195 insn-enums.o \
cd030c07 1196 ggc-page.o \
d5dc6bad
ILT
1197 alias.o \
1198 alloc-pool.o \
6fb5fa3c 1199 auto-inc-dec.o \
be3c16c4 1200 auto-profile.o \
d5dc6bad
ILT
1201 bb-reorder.o \
1202 bitmap.o \
1203 bt-load.o \
1204 builtins.o \
1205 caller-save.o \
1206 calls.o \
f06cd23d 1207 ccmp.o \
d5dc6bad
ILT
1208 cfg.o \
1209 cfganal.o \
1210 cfgbuild.o \
1211 cfgcleanup.o \
1212 cfgexpand.o \
1213 cfghooks.o \
d5dc6bad
ILT
1214 cfgloop.o \
1215 cfgloopanal.o \
1216 cfgloopmanip.o \
1217 cfgrtl.o \
2aae7680 1218 symtab.o \
252b3e8c
MM
1219 cgraph.o \
1220 cgraphbuild.o \
1221 cgraphunit.o \
66a20fc2 1222 cgraphclones.o \
939b37da 1223 cilk-common.o \
d5dc6bad 1224 combine.o \
c7a0240a 1225 combine-stack-adj.o \
e692f276 1226 compare-elim.o \
8c5005ce 1227 context.o \
d5dc6bad
ILT
1228 convert.o \
1229 coverage.o \
252b3e8c
MM
1230 cppbuiltin.o \
1231 cppdefault.o \
e45425ec 1232 cprop.o \
d5dc6bad
ILT
1233 cse.o \
1234 cselib.o \
f0efc7aa
DN
1235 data-streamer.o \
1236 data-streamer-in.o \
1237 data-streamer-out.o \
d5dc6bad 1238 dbxout.o \
6fb5fa3c
DB
1239 dbgcnt.o \
1240 dce.o \
d5dc6bad
ILT
1241 ddg.o \
1242 debug.o \
1243 df-core.o \
1244 df-problems.o \
1245 df-scan.o \
1246 dfp.o \
d5dc6bad
ILT
1247 dojump.o \
1248 dominance.o \
1249 domwalk.o \
1250 double-int.o \
6fb5fa3c 1251 dse.o \
78c60e3d 1252 dumpfile.o \
d5dc6bad 1253 dwarf2asm.o \
647a1567 1254 dwarf2cfi.o \
d5dc6bad
ILT
1255 dwarf2out.o \
1256 emit-rtl.o \
1257 et-forest.o \
1258 except.o \
1259 explow.o \
1260 expmed.o \
1261 expr.o \
1262 final.o \
1e1ba002 1263 fixed-value.o \
d5dc6bad 1264 fold-const.o \
5c1a2e63 1265 fold-const-call.o \
d5dc6bad 1266 function.o \
d9b950dd 1267 function-tests.o \
d5dc6bad 1268 fwprop.o \
ebedc9a3 1269 gcc-rich-location.o \
d5dc6bad 1270 gcse.o \
af3eb110 1271 gcse-common.o \
d5dc6bad 1272 ggc-common.o \
8c4294b2 1273 ggc-tests.o \
726a989a 1274 gimple.o \
ff2a63a7 1275 gimple-builder.o \
2a0603f1 1276 gimple-expr.o \
726a989a 1277 gimple-iterator.o \
cbdd87d4 1278 gimple-fold.o \
ca87c493 1279 gimple-laddress.o \
d5dc6bad 1280 gimple-low.o \
726a989a 1281 gimple-pretty-print.o \
6a75d560 1282 gimple-ssa-backprop.o \
8fdc414d 1283 gimple-ssa-isolate-paths.o \
bf14eba2 1284 gimple-ssa-nonnull-compare.o \
8fe17e23 1285 gimple-ssa-split-paths.o \
f9453c07 1286 gimple-ssa-strength-reduction.o \
f0efc7aa
DN
1287 gimple-streamer-in.o \
1288 gimple-streamer-out.o \
5be5c238 1289 gimple-walk.o \
d5dc6bad 1290 gimplify.o \
18f429e2 1291 gimplify-me.o \
c6a13190 1292 godump.o \
d5dc6bad 1293 graph.o \
66f97d31 1294 graphds.o \
f8bf9252 1295 graphite.o \
f6cc3103 1296 graphite-isl-ast-to-gimple.o \
204b560f 1297 graphite-dependences.o \
b60cc080 1298 graphite-optimize-isl.o \
204b560f 1299 graphite-poly.o \
204b560f
SP
1300 graphite-scop-detection.o \
1301 graphite-sese-to-poly.o \
d5dc6bad
ILT
1302 gtype-desc.o \
1303 haifa-sched.o \
d9b950dd
DM
1304 hash-map-tests.o \
1305 hash-set-tests.o \
b2b40051
MJ
1306 hsa.o \
1307 hsa-gen.o \
1308 hsa-regalloc.o \
1309 hsa-brig.o \
1310 hsa-dump.o \
9d9c740d 1311 hw-doloop.o \
c59ffc41 1312 hwint.o \
d5dc6bad 1313 ifcvt.o \
26cd9add 1314 ree.o \
6d8eb96b 1315 inchash.o \
252b3e8c 1316 incpath.o \
6fb5fa3c 1317 init-regs.o \
25583c4f 1318 internal-fn.o \
d5e254e1 1319 ipa-chkp.o \
252b3e8c 1320 ipa-cp.o \
eefe9a99 1321 ipa-devirt.o \
aa803cc7 1322 ipa-polymorphic-call.o \
252b3e8c
MM
1323 ipa-split.o \
1324 ipa-inline.o \
a04d9035 1325 ipa-comdats.o \
7f7beb3f 1326 ipa-visibility.o \
252b3e8c
MM
1327 ipa-inline-analysis.o \
1328 ipa-inline-transform.o \
08f835dc 1329 ipa-profile.o \
252b3e8c
MM
1330 ipa-prop.o \
1331 ipa-pure-const.o \
b84d4347
ML
1332 ipa-icf.o \
1333 ipa-icf-gimple.o \
252b3e8c 1334 ipa-reference.o \
b2b40051 1335 ipa-hsa.o \
252b3e8c
MM
1336 ipa-ref.o \
1337 ipa-utils.o \
1338 ipa.o \
058e97ec
VM
1339 ira.o \
1340 ira-build.o \
1341 ira-costs.o \
1342 ira-conflicts.o \
1343 ira-color.o \
1344 ira-emit.o \
1345 ira-lives.o \
d5dc6bad 1346 jump.o \
d5dc6bad
ILT
1347 langhooks.o \
1348 lcm.o \
1349 lists.o \
d5dc6bad
ILT
1350 loop-doloop.o \
1351 loop-init.o \
1352 loop-invariant.o \
1353 loop-iv.o \
1354 loop-unroll.o \
e53a16e7 1355 lower-subreg.o \
55a2c322
VM
1356 lra.o \
1357 lra-assigns.o \
1358 lra-coalesce.o \
1359 lra-constraints.o \
1360 lra-eliminations.o \
1361 lra-lives.o \
d9cf932c 1362 lra-remat.o \
55a2c322 1363 lra-spills.o \
d7f09764 1364 lto-cgraph.o \
f0efc7aa 1365 lto-streamer.o \
d7f09764
DN
1366 lto-streamer-in.o \
1367 lto-streamer-out.o \
1368 lto-section-in.o \
1369 lto-section-out.o \
d7f09764 1370 lto-opts.o \
d7f09764 1371 lto-compress.o \
52c76998 1372 mcf.o \
d5dc6bad
ILT
1373 mode-switching.o \
1374 modulo-sched.o \
3b1661a9 1375 multiple_target.o \
d5dc6bad 1376 omp-low.o \
60cbb674 1377 omp-simd-clone.o \
d5dc6bad 1378 optabs.o \
385399a8
RS
1379 optabs-libfuncs.o \
1380 optabs-query.o \
1381 optabs-tree.o \
57dfdff0 1382 options-save.o \
21bf1558 1383 opts-global.o \
d5dc6bad 1384 passes.o \
68a607d8 1385 plugin.o \
d5dc6bad
ILT
1386 postreload-gcse.o \
1387 postreload.o \
1388 predict.o \
d5dc6bad
ILT
1389 print-rtl.o \
1390 print-tree.o \
1391 profile.o \
1392 real.o \
d49b6e1e 1393 realmpfr.o \
d5dc6bad
ILT
1394 recog.o \
1395 reg-stack.o \
fac41238 1396 regcprop.o \
2af2dbdc 1397 reginfo.o \
d5dc6bad 1398 regrename.o \
6fb5fa3c 1399 regstat.o \
d5dc6bad
ILT
1400 reload.o \
1401 reload1.o \
1402 reorg.o \
1403 resource.o \
d5e254e1 1404 rtl-chkp.o \
d5dc6bad 1405 rtl-error.o \
d9b950dd 1406 rtl-tests.o \
d5dc6bad 1407 rtl.o \
f768061c 1408 rtlhash.o \
d5dc6bad
ILT
1409 rtlanal.o \
1410 rtlhooks.o \
1411 sbitmap.o \
1412 sched-deps.o \
1413 sched-ebb.o \
1414 sched-rgn.o \
d5dc6bad 1415 sdbout.o \
e855c69d
AB
1416 sel-sched-ir.o \
1417 sel-sched-dump.o \
1418 sel-sched.o \
d9b950dd 1419 selftest-run-tests.o \
204b560f 1420 sese.o \
f30e25a3 1421 shrink-wrap.o \
d5dc6bad 1422 simplify-rtx.o \
b4da855a 1423 sparseset.o \
277fe616 1424 spellcheck.o \
93ebf1fd 1425 spellcheck-tree.o \
d5dc6bad 1426 sreal.o \
6fb5fa3c 1427 stack-ptr-mod.o \
9fe0cb7d 1428 statistics.o \
d5dc6bad
ILT
1429 stmt.o \
1430 stor-layout.o \
df35c271 1431 store-motion.o \
f0efc7aa 1432 streamer-hooks.o \
d5dc6bad 1433 stringpool.o \
3bd36029 1434 target-globals.o \
d5dc6bad
ILT
1435 targhooks.o \
1436 timevar.o \
1437 toplev.o \
1438 tracer.o \
0a35513e 1439 trans-mem.o \
d5dc6bad 1440 tree-affine.o \
37d6f666 1441 asan.o \
32b4b7f5 1442 tsan.o \
de5a5fa1 1443 ubsan.o \
06cefae9 1444 sanopt.o \
95e7bbb8 1445 sancov.o \
c2699190 1446 tree-call-cdce.o \
d5dc6bad
ILT
1447 tree-cfg.o \
1448 tree-cfgcleanup.o \
1449 tree-chrec.o \
1450 tree-complex.o \
1451 tree-data-ref.o \
1452 tree-dfa.o \
cf835838 1453 tree-diagnostic.o \
d5dc6bad
ILT
1454 tree-dump.o \
1455 tree-eh.o \
8b84c596 1456 tree-emutls.o \
d5dc6bad 1457 tree-if-conv.o \
252b3e8c 1458 tree-inline.o \
d5dc6bad
ILT
1459 tree-into-ssa.o \
1460 tree-iterator.o \
dea61d92 1461 tree-loop-distribution.o \
d5dc6bad
ILT
1462 tree-nested.o \
1463 tree-nrv.o \
1464 tree-object-size.o \
d5dc6bad 1465 tree-outof-ssa.o \
5f40b3cb 1466 tree-parloops.o \
d5dc6bad 1467 tree-phinodes.o \
d5e254e1
IE
1468 tree-chkp.o \
1469 tree-chkp-opt.o \
bbc8a8dc 1470 tree-predcom.o \
d5dc6bad
ILT
1471 tree-pretty-print.o \
1472 tree-profile.o \
1473 tree-scalar-evolution.o \
1474 tree-sra.o \
b6e99746 1475 tree-switch-conversion.o \
d5dc6bad
ILT
1476 tree-ssa-address.o \
1477 tree-ssa-alias.o \
1478 tree-ssa-ccp.o \
1479 tree-ssa-coalesce.o \
1480 tree-ssa-copy.o \
d5dc6bad
ILT
1481 tree-ssa-dce.o \
1482 tree-ssa-dom.o \
1483 tree-ssa-dse.o \
1484 tree-ssa-forwprop.o \
18d08014 1485 tree-ssa-ifcombine.o \
d5dc6bad
ILT
1486 tree-ssa-live.o \
1487 tree-ssa-loop-ch.o \
1488 tree-ssa-loop-im.o \
1489 tree-ssa-loop-ivcanon.o \
1490 tree-ssa-loop-ivopts.o \
1491 tree-ssa-loop-manip.o \
1492 tree-ssa-loop-niter.o \
1493 tree-ssa-loop-prefetch.o \
1494 tree-ssa-loop-unswitch.o \
1495 tree-ssa-loop.o \
1496 tree-ssa-math-opts.o \
1497 tree-ssa-operands.o \
a502f7b6 1498 tree-ssa-phionlycprop.o \
d5dc6bad 1499 tree-ssa-phiopt.o \
67514449 1500 tree-ssa-phiprop.o \
d5dc6bad
ILT
1501 tree-ssa-pre.o \
1502 tree-ssa-propagate.o \
1503 tree-ssa-reassoc.o \
89fb70a3 1504 tree-ssa-sccvn.o \
f6c72af4 1505 tree-ssa-scopedtables.o \
d5dc6bad 1506 tree-ssa-sink.o \
8b57bfeb 1507 tree-ssa-strlen.o \
d5dc6bad 1508 tree-ssa-structalias.o \
c9e93168 1509 tree-ssa-tail-merge.o \
d5dc6bad 1510 tree-ssa-ter.o \
0732f75f 1511 tree-ssa-threadbackward.o \
d5dc6bad
ILT
1512 tree-ssa-threadedge.o \
1513 tree-ssa-threadupdate.o \
1514 tree-ssa-uncprop.o \
34f97b94 1515 tree-ssa-uninit.o \
d5dc6bad
ILT
1516 tree-ssa.o \
1517 tree-ssanames.o \
1518 tree-stdarg.o \
f0efc7aa
DN
1519 tree-streamer.o \
1520 tree-streamer-in.o \
1521 tree-streamer-out.o \
d5dc6bad 1522 tree-tailcall.o \
d5dc6bad
ILT
1523 tree-vect-generic.o \
1524 tree-vect-patterns.o \
252b3e8c
MM
1525 tree-vect-data-refs.o \
1526 tree-vect-stmts.o \
1527 tree-vect-loop.o \
1528 tree-vect-loop-manip.o \
1529 tree-vect-slp.o \
d5dc6bad 1530 tree-vectorizer.o \
d5dc6bad
ILT
1531 tree-vrp.o \
1532 tree.o \
08df6c0d 1533 valtrack.o \
d5dc6bad
ILT
1534 value-prof.o \
1535 var-tracking.o \
1536 varasm.o \
252b3e8c 1537 varpool.o \
d5dc6bad 1538 vmsdbgout.o \
2077db1b 1539 vtable-verify.o \
d5dc6bad 1540 web.o \
807e902e
KZ
1541 wide-int.o \
1542 wide-int-print.o \
252b3e8c
MM
1543 xcoffout.o \
1544 $(out_object_file) \
d5dc6bad 1545 $(EXTRA_OBJS) \
252b3e8c 1546 $(host_hook_obj)
d1bd0ded 1547
2691e6d7
JM
1548# Objects in libcommon.a, potentially used by all host binaries and with
1549# no target dependencies.
57eb2d70
DM
1550OBJS-libcommon = diagnostic.o diagnostic-color.o diagnostic-show-locus.o \
1551 pretty-print.o intl.o \
d9b950dd
DM
1552 vec.o input.o version.o hash-table.o ggc-none.o memory-block.o \
1553 selftest.o
2691e6d7 1554
1ed1641d
JM
1555# Objects in libcommon-target.a, used by drivers and by the core
1556# compiler and containing target-dependent code.
4c77620d 1557OBJS-libcommon-target = $(common_out_object_file) prefix.o params.o \
0823efed 1558 opts.o opts-common.o options.o vec.o hooks.o common/common-targhooks.o \
d9b950dd 1559 hash-table.o file-find.o spellcheck.o selftest.o
1ed1641d 1560
7a3b4887 1561# This lists all host objects for the front ends.
d4a10d0a 1562ALL_HOST_FRONTEND_OBJS = $(foreach v,$(CONFIG_LANGUAGES),$($(v)_OBJS))
7a3b4887 1563
2691e6d7 1564ALL_HOST_BACKEND_OBJS = $(GCC_OBJS) $(OBJS) $(OBJS-libcommon) \
8d2ccbd2 1565 $(OBJS-libcommon-target) main.o c-family/cppspec.o \
eab34643 1566 $(COLLECT2_OBJS) $(EXTRA_GCC_OBJS) $(GCOV_OBJS) $(GCOV_DUMP_OBJS) \
d6d34aa9
JJ
1567 $(GCOV_TOOL_OBJS) $(GENGTYPE_OBJS) gcc-ar.o gcc-nm.o gcc-ranlib.o \
1568 lto-wrapper.o collect-utils.o
6cba282a 1569
7a3b4887
SB
1570# This lists all host object files, whether they are included in this
1571# compilation or not.
1572ALL_HOST_OBJS = $(ALL_HOST_FRONTEND_OBJS) $(ALL_HOST_BACKEND_OBJS)
1573
8d2ccbd2 1574BACKEND = libbackend.a main.o libcommon-target.a libcommon.a \
1ed1641d 1575 $(CPPLIB) $(LIBDECNUMBER)
a36556a8 1576
7cb9fd07
EB
1577# This is defined to "yes" if Tree checking is enabled, which roughly means
1578# front-end checking.
1579TREECHECKING = @TREECHECKING@
1580
35485da9
DM
1581# The full name of the driver on installation
1582FULL_DRIVER_NAME=$(target_noncanonical)-gcc-$(version)$(exeext)
1583
8b1f719a 1584MOSTLYCLEANFILES = insn-flags.h insn-config.h insn-codes.h \
79d8453e 1585 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
41723253 1586 insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \
cd1440b1 1587 insn-latencytab.c insn-opinit.c insn-opinit.h insn-preds.c insn-constants.h \
3d2cf79f 1588 tm-preds.h tm-constrs.h checksum-options gimple-match.c generic-match.c \
1c7352cd 1589 tree-check.h min-insn-modes.c insn-modes.c insn-modes.h \
6ac9d3a3 1590 genrtl.h gt-*.h gtype-*.h gtype-desc.c gtyp-input.list \
b1dc4a20 1591 case-cfn-macros.h cfn-operators.pd \
35485da9 1592 xgcc$(exeext) cpp$(exeext) $(FULL_DRIVER_NAME) \
5f73c6cc 1593 $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
b6b89215
AK
1594 $(SPECS) collect2$(exeext) gcc-ar$(exeext) gcc-nm$(exeext) \
1595 gcc-ranlib$(exeext) \
4977bab6 1596 gcov-iov$(build_exeext) gcov$(exeext) gcov-dump$(exeext) \
c77556a5 1597 gcov-tool$(exeect) \
f142b5bc
RG
1598 gengtype$(exeext) *.[0-9][0-9].* *.[si] *-checksum.c libbackend.a \
1599 libcommon-target.a libcommon.a libgcc.mk
79d8453e 1600
35485da9
DM
1601# This symlink makes the full installation name of the driver be available
1602# from within the *build* directory, for use when running the JIT library
1603# from there (e.g. when running its testsuite).
1604$(FULL_DRIVER_NAME): ./xgcc
380abb42
UD
1605 rm -f $@
1606 $(LN_S) $< $@
35485da9 1607
544eb21e 1608#\f
013a2ee0
DE
1609# Language makefile fragments.
1610
1611# The following targets define the interface between us and the languages.
1612#
a078a589 1613# all.cross, start.encap, rest.encap,
bd97af06 1614# install-common, install-info, install-man,
436a88a6 1615# uninstall,
a03ad584 1616# mostlyclean, clean, distclean, maintainer-clean,
013a2ee0 1617#
62b81e45
MM
1618# Each language is linked in with a series of hooks. The name of each
1619# hooked is "lang.${target_name}" (eg: lang.info). Configure computes
1620# and adds these here. We use double-colon rules for some of the hooks;
1621# double-colon rules should be preferred for any new hooks.
013a2ee0 1622
2ed26f6b 1623# language hooks, generated by configure
3c18ea24 1624@language_hooks@
013a2ee0 1625
2ed26f6b
ZW
1626# per-language makefile fragments
1627ifneq ($(LANG_MAKEFRAGS),)
1628include $(LANG_MAKEFRAGS)
1629endif
013a2ee0 1630
7e63a64e
RO
1631# target and host overrides must follow the per-language makefile fragments
1632# so they can override or augment language-specific variables
1633
1634# target overrides
1635ifneq ($(tmake_file),)
1636include $(tmake_file)
1637endif
1638
1639# host overrides
1640ifneq ($(xmake_file),)
1641include $(xmake_file)
1642endif
1643
c0ed0531
ILT
1644# all-tree.def includes all the tree.def files.
1645all-tree.def: s-alltree; @true
1646s-alltree: Makefile
1647 rm -f tmp-all-tree.def
1648 echo '#include "tree.def"' > tmp-all-tree.def
1649 echo 'END_OF_BASE_TREE_CODES' >> tmp-all-tree.def
39dabefd 1650 echo '#include "c-family/c-common.def"' >> tmp-all-tree.def
c0ed0531
ILT
1651 ltf="$(lang_tree_files)"; for f in $$ltf; do \
1652 echo "#include \"$$f\""; \
1653 done | sed 's|$(srcdir)/||' >> tmp-all-tree.def
1654 $(SHELL) $(srcdir)/../move-if-change tmp-all-tree.def all-tree.def
1655 $(STAMP) s-alltree
1656
7a3b4887
SB
1657# Now that LANG_MAKEFRAGS are included, we can add special flags to the
1658# objects that belong to the front ends. We add an extra define that
1659# causes back-end specific include files to be poisoned, in the hope that
1660# we can avoid introducing dependencies of the front ends on things that
1661# no front end should ever look at (e.g. everything RTL related).
1662$(foreach file,$(ALL_HOST_FRONTEND_OBJS),$(eval CFLAGS-$(file) += -DIN_GCC_FRONTEND))
1663
544eb21e 1664#\f
79d8453e 1665
73458fb7
NN
1666# -----------------------------
1667# Rebuilding this configuration
1668# -----------------------------
1669
f637f072
RÁE
1670# On the use of stamps:
1671# Consider the example of tree-check.h. It is constructed with build/gencheck.
1672# A simple rule to build tree-check.h would be
1673# tree-check.h: build/gencheck$(build_exeext)
1674# $(RUN_GEN) build/gencheck$(build_exeext) > tree-check.h
1675#
1676# but tree-check.h doesn't change every time gencheck changes. It would the
e980df8e 1677# nice if targets that depend on tree-check.h wouldn't be rebuild
f637f072
RÁE
1678# unnecessarily when tree-check.h is unchanged. To make this, tree-check.h
1679# must not be overwritten with a identical copy. One solution is to use a
1680# temporary file
1681# tree-check.h: build/gencheck$(build_exeext)
f7ca46d6 1682# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
f637f072
RÁE
1683# $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1684#
1685# This solution has a different problem. Since the time stamp of tree-check.h
1686# is unchanged, make will try to update tree-check.h every time it runs.
1687# To prevent this, one can add a stamp
1688# tree-check.h: s-check
1689# s-check : build/gencheck$(build_exeext)
f7ca46d6 1690# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
f637f072
RÁE
1691# $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1692# $(STAMP) s-check
1693#
1694# The problem with this solution is that make thinks that tree-check.h is
1695# always unchanged. Make must be deceived into thinking that tree-check.h is
f7ca46d6 1696# rebuild by the "tree-check.h: s-check" rule. To do this, add a dummy command:
f637f072
RÁE
1697# tree-check.h: s-check; @true
1698# s-check : build/gencheck$(build_exeext)
f7ca46d6 1699# $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
f637f072
RÁE
1700# $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
1701# $(STAMP) s-check
1702#
1703# This is what is done in this makefile. Note that mkconfig.sh has a
1704# move-if-change built-in
1705
a1286ef5 1706Makefile: config.status $(srcdir)/Makefile.in $(LANG_MAKEFRAGS)
2ed26f6b
ZW
1707 LANGUAGES="$(CONFIG_LANGUAGES)" \
1708 CONFIG_HEADERS= \
e75f9147 1709 CONFIG_SHELL="$(SHELL)" \
2ed26f6b 1710 CONFIG_FILES=$@ $(SHELL) config.status
79d8453e 1711
11642c3a 1712config.h: cs-config.h ; @true
4977bab6 1713bconfig.h: cs-bconfig.h ; @true
11642c3a 1714tconfig.h: cs-tconfig.h ; @true
4977bab6 1715tm.h: cs-tm.h ; @true
11642c3a
ZW
1716tm_p.h: cs-tm_p.h ; @true
1717
1718cs-config.h: Makefile
4977bab6 1719 TARGET_CPU_DEFAULT="" \
e22340b0 1720 HEADERS="$(host_xm_include_list)" DEFINES="$(host_xm_defines)" \
11642c3a
ZW
1721 $(SHELL) $(srcdir)/mkconfig.sh config.h
1722
4977bab6
ZW
1723cs-bconfig.h: Makefile
1724 TARGET_CPU_DEFAULT="" \
e22340b0 1725 HEADERS="$(build_xm_include_list)" DEFINES="$(build_xm_defines)" \
4977bab6 1726 $(SHELL) $(srcdir)/mkconfig.sh bconfig.h
11642c3a 1727
0d24f4d1 1728cs-tconfig.h: Makefile
3d9d2476 1729 TARGET_CPU_DEFAULT="" \
232b67d9 1730 HEADERS="$(xm_include_list)" DEFINES="USED_FOR_TARGET $(xm_defines)" \
11642c3a
ZW
1731 $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
1732
4977bab6
ZW
1733cs-tm.h: Makefile
1734 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
e22340b0 1735 HEADERS="$(tm_include_list)" DEFINES="$(tm_defines)" \
4977bab6
ZW
1736 $(SHELL) $(srcdir)/mkconfig.sh tm.h
1737
11642c3a 1738cs-tm_p.h: Makefile
4977bab6 1739 TARGET_CPU_DEFAULT="" \
e22340b0 1740 HEADERS="$(tm_p_include_list)" DEFINES="" \
11642c3a
ZW
1741 $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
1742
a6a5e4c9 1743# Don't automatically run autoconf, since configure.ac might be accidentally
e7f62dcf
NC
1744# newer than configure. Also, this writes into the source directory which
1745# might be on a read-only file system. If configured for maintainer mode
1746# then do allow autoconf to be run.
1747
6efbd53f
RW
1748AUTOCONF = autoconf
1749ACLOCAL = aclocal
1750ACLOCAL_AMFLAGS = -I ../config -I ..
1751aclocal_deps = \
1752 $(srcdir)/../libtool.m4 \
1753 $(srcdir)/../ltoptions.m4 \
1754 $(srcdir)/../ltsugar.m4 \
1755 $(srcdir)/../ltversion.m4 \
1756 $(srcdir)/../lt~obsolete.m4 \
1757 $(srcdir)/../config/acx.m4 \
1758 $(srcdir)/../config/codeset.m4 \
1759 $(srcdir)/../config/extensions.m4 \
1760 $(srcdir)/../config/gettext-sister.m4 \
ddc8de03 1761 $(srcdir)/../config/gcc-plugin.m4 \
6efbd53f
RW
1762 $(srcdir)/../config/iconv.m4 \
1763 $(srcdir)/../config/lcmessage.m4 \
1764 $(srcdir)/../config/lib-ld.m4 \
1765 $(srcdir)/../config/lib-link.m4 \
1766 $(srcdir)/../config/lib-prefix.m4 \
1767 $(srcdir)/../config/override.m4 \
1768 $(srcdir)/../config/progtest.m4 \
7c2a2dbf 1769 $(srcdir)/../config/stdint.m4 \
6efbd53f
RW
1770 $(srcdir)/../config/unwind_ipinfo.m4 \
1771 $(srcdir)/../config/warnings.m4 \
3c39bca6 1772 $(srcdir)/../config/dfp.m4 \
2f6935f4 1773 $(srcdir)/../config/mmap.m4 \
6efbd53f
RW
1774 $(srcdir)/acinclude.m4
1775
1776$(srcdir)/configure: @MAINT@ $(srcdir)/configure.ac $(srcdir)/aclocal.m4
1777 (cd $(srcdir) && $(AUTOCONF))
1778
1779$(srcdir)/aclocal.m4 : @MAINT@ $(aclocal_deps)
1780 (cd $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS))
3c18ea24 1781
da7ece9a 1782# cstamp-h.in controls rebuilding of config.in.
7c0ae5f1
DE
1783# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
1784# delete it. A stamp file is needed as autoheader won't update the file if
1785# nothing has changed.
da7ece9a
DE
1786# It remains in the source directory and is part of the distribution.
1787# This follows what is done in shellutils, fileutils, etc.
5408f8d0
DE
1788# "echo timestamp" is used instead of touch to be consistent with other
1789# packages that use autoconf (??? perhaps also to avoid problems with patch?).
da7ece9a 1790# ??? Newer versions have a maintainer mode that may be useful here.
e7f62dcf
NC
1791
1792# Don't run autoheader automatically either.
1793# Only run it if maintainer mode is enabled.
6efbd53f 1794@MAINT@ AUTOHEADER = autoheader
e7f62dcf 1795@MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
a6a5e4c9 1796@MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.ac
6efbd53f 1797@MAINT@ (cd $(srcdir) && $(AUTOHEADER))
e7f62dcf
NC
1798@MAINT@ @rm -f $(srcdir)/cstamp-h.in
1799@MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
b7cb92ad 1800auto-host.h: cstamp-h ; @true
da7ece9a 1801cstamp-h: config.in config.status
2ed26f6b
ZW
1802 CONFIG_HEADERS=auto-host.h:config.in \
1803 CONFIG_FILES= \
1804 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
d68b51ef 1805
7c0ae5f1
DE
1806# Really, really stupid make features, such as SUN's KEEP_STATE, may force
1807# a target to build even if it is up-to-date. So we must verify that
1808# config.status does not exist before failing.
a1286ef5 1809config.status: $(srcdir)/configure $(srcdir)/config.gcc
7c0ae5f1 1810 @if [ ! -f config.status ] ; then \
436a88a6 1811 echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
7c0ae5f1
DE
1812 false; \
1813 else \
71205e0b 1814 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
7c0ae5f1
DE
1815 fi
1816
73458fb7
NN
1817# --------
1818# UNSORTED
1819# --------
1820
3bbd5a19
PB
1821# Provide quickstrap as a target that people can type into the gcc directory,
1822# and that fails if you're not into it.
1823quickstrap: all
1824 cd $(toplevel_builddir) && $(MAKE) all-target-libgcc
1825
d9b950dd 1826all.internal: start.encap rest.encap doc selftest
79d8453e 1827# This is what to compile if making a cross-compiler.
b3b2cbc4 1828all.cross: native gcc-cross$(exeext) cpp$(exeext) specs \
d9b950dd 1829 libgcc-support lang.all.cross doc selftest @GENINSRC@ srcextra
79d8453e 1830# This is what must be made before installing GCC and converting libraries.
4871239e 1831start.encap: native xgcc$(exeext) cpp$(exeext) specs \
14da6073 1832 libgcc-support lang.start.encap @GENINSRC@ srcextra
eea77e5f 1833# These can't be made until after GCC can run.
52c0e446 1834rest.encap: lang.rest.encap
79d8453e
RS
1835# This is what is made with the host's compiler
1836# whether making a cross compiler or not.
6eb95e99 1837native: config.status auto-host.h build-@POSUB@ $(LANGUAGES) \
d82c57a8 1838 $(EXTRA_PROGRAMS) $(COLLECT2) lto-wrapper$(exeext) \
b6b89215 1839 gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext)
79d8453e 1840
f142b5bc
RG
1841ifeq ($(enable_plugin),yes)
1842native: gengtype$(exeext)
1843endif
1844
3aa072f2
RS
1845# On the target machine, finish building a cross compiler.
1846# This does the things that can't be done on the host machine.
fa958513 1847rest.cross: specs
3aa072f2 1848
d9b950dd
DM
1849# Run the selftests during the build once we have a driver and a cc1,
1850# so that self-test failures are caught as early as possible.
1851# Use "s-selftest" to ensure that we only run the selftests if the
1852# driver or cc1 change.
1853.PHONY: selftest
1854selftest: s-selftest
1855s-selftest: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs
1856 $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test
1857 $(STAMP) $@
1858
1859# Convenience method for running selftests under gdb:
1860.PHONY: selftest-gdb
1861selftest-gdb: $(GCC_PASSES) cc1$(exeext) stmp-int-hdrs
1862 $(GCC_FOR_TARGET) -xc -S -c /dev/null -fself-test -wrapper gdb,--args
1863
3aa072f2
RS
1864# Recompile all the language-independent object files.
1865# This is used only if the user explicitly asks for it.
a36556a8 1866compilations: $(BACKEND)
79d8453e 1867
4f4e53dd 1868# This archive is strictly for the host.
de6ba7ae 1869libbackend.a: $(OBJS)
a36556a8 1870 -rm -rf libbackend.a
de6ba7ae 1871 $(AR) $(AR_FLAGS) libbackend.a $(OBJS)
343a6100 1872 -$(RANLIB) $(RANLIB_FLAGS) libbackend.a
6c1cc7fa 1873
1ed1641d
JM
1874libcommon-target.a: $(OBJS-libcommon-target)
1875 -rm -rf libcommon-target.a
1876 $(AR) $(AR_FLAGS) libcommon-target.a $(OBJS-libcommon-target)
1877 -$(RANLIB) $(RANLIB_FLAGS) libcommon-target.a
1878
2691e6d7
JM
1879libcommon.a: $(OBJS-libcommon)
1880 -rm -rf libcommon.a
1881 $(AR) $(AR_FLAGS) libcommon.a $(OBJS-libcommon)
1882 -$(RANLIB) $(RANLIB_FLAGS) libcommon.a
1883
acbbf3d9
RS
1884# We call this executable `xgcc' rather than `gcc'
1885# to avoid confusion if the current directory is in the path
1886# and CC is `gcc'. It is renamed to `gcc' when it is installed.
d4a10d0a 1887xgcc$(exeext): $(GCC_OBJS) c/gccspec.o libcommon-target.a $(LIBDEPS) \
1ed1641d 1888 $(EXTRA_GCC_OBJS)
a90163e9 1889 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
d4a10d0a 1890 c/gccspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \
e3b3fa45 1891 $(EXTRA_GCC_LIBS) $(LIBS)
3aa072f2 1892
d4a10d0a
SB
1893# cpp is to cpp0 as e.g. g++ is to cc1plus: Just another driver.
1894# It is part of c-family because the handled extensions are hard-coded
1895# and only contain c-family extensions (see known_suffixes).
1896cpp$(exeext): $(GCC_OBJS) c-family/cppspec.o libcommon-target.a $(LIBDEPS) \
1ed1641d 1897 $(EXTRA_GCC_OBJS)
a90163e9 1898 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ $(GCC_OBJS) \
d4a10d0a 1899 c-family/cppspec.o $(EXTRA_GCC_OBJS) libcommon-target.a \
e3b3fa45 1900 $(EXTRA_GCC_LIBS) $(LIBS)
922cf99e 1901
3aa072f2 1902# Dump a specs file to make -B./ read these specs over installed ones.
3bd6d4c4 1903$(SPECS): xgcc$(exeext)
d521a023 1904 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
3bd6d4c4 1905 mv tmp-specs $(SPECS)
79d8453e 1906
acbbf3d9 1907# We do want to create an executable named `xgcc', so we can use it to
79d8453e
RS
1908# compile libgcc2.a.
1909# Also create gcc-cross, so that install-common will install properly.
b3b2cbc4 1910gcc-cross$(exeext): xgcc$(exeext)
aab26e16 1911 cp xgcc$(exeext) gcc-cross$(exeext)
79d8453e 1912
d6d5951a
AK
1913checksum-options:
1914 echo "$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS)" > checksum-options.tmp \
1915 && $(srcdir)/../move-if-change checksum-options.tmp checksum-options
e980df8e 1916
544eb21e 1917#\f
79d8453e 1918# Build libgcc.a.
a2ab7f2b 1919
52c0e446 1920libgcc-support: libgcc.mvars stmp-int-hdrs $(TCONFIG_H) \
f9989b51 1921 $(MACHMODE_H) gcov-iov.h
fa958513 1922
f9989b51 1923libgcc.mvars: config.status Makefile specs xgcc$(exeext)
fa958513 1924 : > tmp-libgcc.mvars
5f73c6cc
RO
1925 echo GCC_CFLAGS = '$(GCC_CFLAGS)' >> tmp-libgcc.mvars
1926 echo INHIBIT_LIBC_CFLAGS = '$(INHIBIT_LIBC_CFLAGS)' >> tmp-libgcc.mvars
7f142d33 1927 echo TARGET_SYSTEM_ROOT = '$(TARGET_SYSTEM_ROOT)' >> tmp-libgcc.mvars
428b3812
L
1928 if test @enable_default_pie@ = yes; then \
1929 NO_PIE_CFLAGS="-fno-PIE"; \
1930 else \
1931 NO_PIE_CFLAGS=; \
1932 fi; \
1933 echo NO_PIE_CFLAGS = "$$NO_PIE_CFLAGS" >> tmp-libgcc.mvars
fa958513
DJ
1934
1935 mv tmp-libgcc.mvars libgcc.mvars
79d8453e 1936
f6cdc7ea
DE
1937# Use the genmultilib shell script to generate the information the gcc
1938# driver program needs to select the library directory based on the
1939# switches.
e5e809f4
JL
1940multilib.h: s-mlib; @true
1941s-mlib: $(srcdir)/genmultilib Makefile
c49d2df6
JJ
1942 if test @enable_multilib@ = yes \
1943 || test -n "$(MULTILIB_OSDIRNAMES)"; then \
4d2fb38b
JJ
1944 $(SHELL) $(srcdir)/genmultilib \
1945 "$(MULTILIB_OPTIONS)" \
1946 "$(MULTILIB_DIRNAMES)" \
1947 "$(MULTILIB_MATCHES)" \
1948 "$(MULTILIB_EXCEPTIONS)" \
1949 "$(MULTILIB_EXTRA_OPTS)" \
1950 "$(MULTILIB_EXCLUSIONS)" \
5bbcd587 1951 "$(MULTILIB_OSDIRNAMES)" \
43661dc4 1952 "$(MULTILIB_REQUIRED)" \
4973b0f9 1953 "$(if $(MULTILIB_OSDIRNAMES),,$(MULTIARCH_DIRNAME))" \
e7f49d92 1954 "$(MULTILIB_REUSE)" \
c49d2df6 1955 "@enable_multilib@" \
4d2fb38b
JJ
1956 > tmp-mlib.h; \
1957 else \
e7f49d92
TG
1958 $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' '' \
1959 "$(MULTIARCH_DIRNAME)" '' no \
c49d2df6 1960 > tmp-mlib.h; \
4d2fb38b 1961 fi
88e3a2a3 1962 $(SHELL) $(srcdir)/../move-if-change tmp-mlib.h multilib.h
d9835ae8 1963 $(STAMP) s-mlib
544eb21e 1964#\f
79d8453e
RS
1965# Compiling object files from source files.
1966
e980df8e
TT
1967# Note that dependencies on obstack.h are not written
1968# because that file is not part of GCC.
1969
02ba6b22
KC
1970srcextra: gcc.srcextra lang.srcextra
1971
01d419ae 1972gcc.srcextra: gengtype-lex.c
03787dfd
KC
1973 -cp -p $^ $(srcdir)
1974
c2a73de2 1975AR_OBJS = file-find.o
b6b89215
AK
1976AR_LIBS = @COLLECT2_LIBS@
1977
c2a73de2 1978gcc-ar$(exeext): gcc-ar.o $(AR_OBJS) $(LIBDEPS)
b6b89215 1979 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ar.o -o $@ \
c2a73de2 1980 $(AR_OBJS) $(LIBS) $(AR_LIBS)
b6b89215 1981
c2a73de2 1982gcc-nm$(exeext): gcc-nm.o $(AR_OBJS) $(LIBDEPS)
b6b89215 1983 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-nm.o -o $@ \
c2a73de2 1984 $(AR_OBJS) $(LIBS) $(AR_LIBS)
b6b89215 1985
c2a73de2 1986gcc-ranlib$(exeext): gcc-ranlib.o $(AR_OBJS) $(LIBDEPS)
b6b89215 1987 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) gcc-ranlib.o -o $@ \
c2a73de2 1988 $(AR_OBJS) $(LIBS) $(AR_LIBS)
b6b89215
AK
1989
1990CFLAGS-gcc-ar.o += $(DRIVER_DEFINES) \
1991 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
1992 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ar\"
1993
b6b89215
AK
1994CFLAGS-gcc-ranlib.o += $(DRIVER_DEFINES) \
1995 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
1996 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"ranlib\"
1997
b6b89215
AK
1998CFLAGS-gcc-nm.o += $(DRIVER_DEFINES) \
1999 -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2000 @TARGET_SYSTEM_ROOT_DEFINE@ -DPERSONALITY=\"nm\"
2001
b6b89215
AK
2002# ??? the implicit rules dont trigger if the source file has a different name
2003# so copy instead
2004gcc-ranlib.c: gcc-ar.c
2005 cp $^ $@
2006
2007gcc-nm.c: gcc-ar.c
2008 cp $^ $@
2009
5f0ad6a5 2010COLLECT2_OBJS = collect2.o collect2-aix.o tlink.o vec.o ggc-none.o \
d9b950dd 2011 collect-utils.o file-find.o hash-table.o selftest.o
4e70264f 2012COLLECT2_LIBS = @COLLECT2_LIBS@
a2d25763 2013collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
057f494b 2014# Don't try modifying collect2 (aka ld) in place--it might be linking this.
a90163e9 2015 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o T$@ \
4e70264f 2016 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
ff0a63e8 2017 mv -f T$@ $@
79d8453e 2018
c5bc3df6
JM
2019CFLAGS-collect2.o += -DTARGET_MACHINE=\"$(target_noncanonical)\" \
2020 @TARGET_SYSTEM_ROOT_DEFINE@
e980df8e 2021
a185856a
BS
2022LTO_WRAPPER_OBJS = lto-wrapper.o collect-utils.o ggc-none.o
2023lto-wrapper$(exeext): $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBDEPS)
f31c0018 2024 +$(LINKER) $(ALL_COMPILERFLAGS) $(LDFLAGS) -o T$@ \
a185856a 2025 $(LTO_WRAPPER_OBJS) libcommon-target.a $(LIBS)
d7f09764
DN
2026 mv -f T$@ $@
2027
d4a10d0a 2028# Files used by all variants of C or by the stand-alone pre-processor.
39dabefd 2029
c5bc3df6 2030CFLAGS-c-family/c-opts.o += @TARGET_SYSTEM_ROOT_DEFINE@
e980df8e 2031
c5bc3df6
JM
2032CFLAGS-c-family/c-pch.o += -DHOST_MACHINE=\"$(host)\" \
2033 -DTARGET_MACHINE=\"$(target)\"
8c796d19 2034
b6541edc
TT
2035default-c.o: config/default-c.c
2036 $(COMPILE) $<
2037 $(POSTCOMPILE)
e980df8e 2038
39dabefd
SB
2039# Files used by all variants of C and some other languages.
2040
c5bc3df6 2041CFLAGS-prefix.o += -DPREFIX=\"$(prefix)\" -DBASEVER=$(BASEVER_s)
2754b38f 2042prefix.o: $(BASEVER)
79d8453e 2043
e980df8e 2044# Language-independent files.
2fe3178b 2045
610c62ac 2046DRIVER_DEFINES = \
0deb20df 2047 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
a8ee6e2d
GK
2048 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
2049 -DSTANDARD_LIBEXEC_PREFIX=\"$(libexecdir)/gcc/\" \
964ceda1 2050 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
85c64bbe 2051 -DDEFAULT_REAL_TARGET_MACHINE=\"$(real_target_noncanonical)\" \
caa55b1e 2052 -DDEFAULT_TARGET_MACHINE=\"$(target_noncanonical)\" \
0deb20df 2053 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
15c723f3 2054 -DTOOLDIR_BASE_PREFIX=\"$(libsubdir_to_prefix)$(prefix_to_exec_prefix)\" \
85c64bbe 2055 -DACCEL_DIR_SUFFIX=\"$(accel_dir_suffix)\" \
4977bab6 2056 @TARGET_SYSTEM_ROOT_DEFINE@ \
414d23ae 2057 $(VALGRIND_DRIVER_DEFINES) \
56e82b14 2058 $(if $(SHLIB),$(if $(filter yes,@enable_shared@),-DENABLE_SHARED_LIBGCC)) \
e11ddaf5 2059 -DCONFIGURE_SPECS="\"@CONFIGURE_SPECS@\""
e980df8e 2060
b6541edc 2061CFLAGS-gcc.o += $(DRIVER_DEFINES)
e980df8e 2062
0d24f4d1
ZW
2063specs.h : s-specs ; @true
2064s-specs : Makefile
766c7ad1
ZW
2065 lsf="$(lang_specs_files)"; for f in $$lsf; do \
2066 echo "#include \"$$f\""; \
0d24f4d1 2067 done | sed 's|$(srcdir)/||' > tmp-specs.h
88e3a2a3 2068 $(SHELL) $(srcdir)/../move-if-change tmp-specs.h specs.h
0d24f4d1
ZW
2069 $(STAMP) s-specs
2070
776dc15d 2071optionlist: s-options ; @true
75685792
RS
2072s-options: $(ALL_OPT_FILES) Makefile $(srcdir)/opt-gather.awk
2073 $(AWK) -f $(srcdir)/opt-gather.awk $(ALL_OPT_FILES) > tmp-optionlist
776dc15d 2074 $(SHELL) $(srcdir)/../move-if-change tmp-optionlist optionlist
469ef4a3
ILT
2075 $(STAMP) s-options
2076
86fa5de4
JM
2077options.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2078 $(srcdir)/optc-gen.awk
2079 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2080 -f $(srcdir)/optc-gen.awk \
6be4d3ac 2081 -v header_name="config.h system.h coretypes.h options.h tm.h" < $< > $@
776dc15d 2082
57dfdff0
JM
2083options-save.c: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2084 $(srcdir)/optc-save-gen.awk
2085 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2086 -f $(srcdir)/optc-save-gen.awk \
2087 -v header_name="config.h system.h coretypes.h tm.h" < $< > $@
2088
75685792 2089options.h: s-options-h ; @true
86fa5de4
JM
2090s-options-h: optionlist $(srcdir)/opt-functions.awk $(srcdir)/opt-read.awk \
2091 $(srcdir)/opth-gen.awk
2092 $(AWK) -f $(srcdir)/opt-functions.awk -f $(srcdir)/opt-read.awk \
2093 -f $(srcdir)/opth-gen.awk \
75685792
RS
2094 < $< > tmp-options.h
2095 $(SHELL) $(srcdir)/../move-if-change tmp-options.h options.h
2096 $(STAMP) $@
776dc15d 2097
79d8453e
RS
2098dumpvers: dumpvers.c
2099
c5bc3df6 2100CFLAGS-version.o += -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
e980df8e
TT
2101 -DREVISION=$(REVISION_s) \
2102 -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \
c5bc3df6 2103 -DBUGURL=$(BUGURL_s)
609458ae 2104version.o: $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE)
e980df8e 2105
d7f09764 2106# lto-compress.o needs $(ZLIBINC) added to the include flags.
c5bc3df6 2107CFLAGS-lto-compress.o += $(ZLIBINC)
e980df8e 2108
134ef638
BE
2109bversion.h: s-bversion; @true
2110s-bversion: BASE-VER
2111 echo "#define BUILDING_GCC_MAJOR `echo $(BASEVER_c) | sed -e 's/^\([0-9]*\).*$$/\1/'`" > bversion.h
2112 echo "#define BUILDING_GCC_MINOR `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.\([0-9]*\).*$$/\1/'`" >> bversion.h
2113 echo "#define BUILDING_GCC_PATCHLEVEL `echo $(BASEVER_c) | sed -e 's/^[0-9]*\.[0-9]*\.\([0-9]*\)$$/\1/'`" >> bversion.h
2114 echo "#define BUILDING_GCC_VERSION (BUILDING_GCC_MAJOR * 1000 + BUILDING_GCC_MINOR)" >> bversion.h
2115 $(STAMP) s-bversion
2116
c5bc3df6 2117CFLAGS-toplev.o += -DTARGET_NAME=\"$(target_noncanonical)\"
c59ffc41 2118
a167b052
DM
2119pass-instances.def: $(srcdir)/passes.def $(srcdir)/gen-pass-instances.awk
2120 $(AWK) -f $(srcdir)/gen-pass-instances.awk \
2121 $(srcdir)/passes.def > pass-instances.def
2122
aefc31a1
TT
2123$(out_object_file): $(out_file)
2124 $(COMPILE) $<
2125 $(POSTCOMPILE)
e980df8e 2126
b6541edc
TT
2127$(common_out_object_file): $(common_out_file)
2128 $(COMPILE) $<
2129 $(POSTCOMPILE)
544eb21e 2130#\f
4c457b6b 2131# Generate header and source files from the machine description,
79d8453e
RS
2132# and compile them.
2133
1b0c37d7 2134.PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
79d8453e 2135 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
41723253 2136 insn-attr.h insn-attr-common.h insn-attrtab.c insn-dfatab.c \
4bccb39e
RS
2137 insn-latencytab.c insn-preds.c gimple-match.c generic-match.c \
2138 insn-target-def.h
79d8453e 2139
26be549a
RH
2140# Dependencies for the md file. The first time through, we just assume
2141# the md file itself and the generated dependency file (in order to get
2142# it built). The second time through we have the dependency file.
2143-include mddeps.mk
2144MD_DEPS = s-mddeps $(md_file) $(MD_INCLUDES)
2145
2146s-mddeps: $(md_file) $(MD_INCLUDES) build/genmddeps$(build_exeext)
2147 $(RUN_GEN) build/genmddeps$(build_exeext) $(md_file) > tmp-mddeps
2148 $(SHELL) $(srcdir)/../move-if-change tmp-mddeps mddeps.mk
2149 $(STAMP) s-mddeps
2150
cbbbdc2c 2151# For each of the files generated by running a generator program over
9b68b6ea
RS
2152# the machine description, the following static pattern rules run the
2153# generator program only if the machine description has changed,
2154# but touch the target file only when its contents actually change.
2155# The "; @true" construct forces Make to recheck the timestamp on
2156# the target file.
cbbbdc2c 2157
88a00ef7 2158simple_rtl_generated_h = insn-attr.h insn-attr-common.h insn-codes.h \
4bccb39e 2159 insn-config.h insn-flags.h insn-target-def.h
cbbbdc2c 2160
41723253 2161simple_rtl_generated_c = insn-automata.c insn-emit.c \
cd1440b1 2162 insn-extract.c insn-output.c \
9b68b6ea
RS
2163 insn-peep.c insn-recog.c
2164
2165simple_generated_h = $(simple_rtl_generated_h) insn-constants.h
2166
0fe60a1b 2167simple_generated_c = $(simple_rtl_generated_c) insn-enums.c
9b68b6ea
RS
2168
2169$(simple_generated_h:insn-%.h=s-%) \
2170$(simple_generated_c:insn-%.c=s-%): s-%: $(MD_DEPS)
2171
2172$(simple_rtl_generated_h:insn-%.h=s-%) \
2173$(simple_rtl_generated_c:insn-%.c=s-%): s-%: insn-conditions.md
cbbbdc2c
ZW
2174
2175$(simple_generated_h): insn-%.h: s-%; @true
2176
9b68b6ea 2177$(simple_generated_h:insn-%.h=s-%): s-%: build/gen%$(build_exeext)
1c7352cd 2178 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
9b68b6ea 2179 $(filter insn-conditions.md,$^) > tmp-$*.h
cbbbdc2c
ZW
2180 $(SHELL) $(srcdir)/../move-if-change tmp-$*.h insn-$*.h
2181 $(STAMP) s-$*
2182
2183$(simple_generated_c): insn-%.c: s-%; @true
9b68b6ea 2184$(simple_generated_c:insn-%.c=s-%): s-%: build/gen%$(build_exeext)
1c7352cd 2185 $(RUN_GEN) build/gen$*$(build_exeext) $(md_file) \
9b68b6ea 2186 $(filter insn-conditions.md,$^) > tmp-$*.c
cbbbdc2c
ZW
2187 $(SHELL) $(srcdir)/../move-if-change tmp-$*.c insn-$*.c
2188 $(STAMP) s-$*
2189
2190# gencheck doesn't read the machine description, and the file produced
2191# doesn't use the insn-* convention.
2192tree-check.h: s-check ; @true
2193s-check : build/gencheck$(build_exeext)
2194 $(RUN_GEN) build/gencheck$(build_exeext) > tmp-check.h
2195 $(SHELL) $(srcdir)/../move-if-change tmp-check.h tree-check.h
2196 $(STAMP) s-check
2199e5fa 2197
41723253
SB
2198# genattrtab produces three files: tmp-{attrtab.c,dfatab.c,latencytab.c}
2199insn-attrtab.c insn-dfatab.c insn-latencytab.c: s-attrtab ; @true
2200s-attrtab : $(MD_DEPS) build/genattrtab$(build_exeext) \
2201 insn-conditions.md
2202 $(RUN_GEN) build/genattrtab$(build_exeext) $(md_file) insn-conditions.md \
2203 -Atmp-attrtab.c -Dtmp-dfatab.c -Ltmp-latencytab.c
2204 $(SHELL) $(srcdir)/../move-if-change tmp-attrtab.c insn-attrtab.c
2205 $(SHELL) $(srcdir)/../move-if-change tmp-dfatab.c insn-dfatab.c
2206 $(SHELL) $(srcdir)/../move-if-change tmp-latencytab.c insn-latencytab.c
2207 $(STAMP) s-attrtab
2208
cd1440b1
RH
2209# genopinit produces two files.
2210insn-opinit.c insn-opinit.h: s-opinit ; @true
2211s-opinit: $(MD_DEPS) build/genopinit$(build_exeext) insn-conditions.md
2212 $(RUN_GEN) build/genopinit$(build_exeext) $(md_file) \
2213 insn-conditions.md -htmp-opinit.h -ctmp-opinit.c
2214 $(SHELL) $(srcdir)/../move-if-change tmp-opinit.h insn-opinit.h
2215 $(SHELL) $(srcdir)/../move-if-change tmp-opinit.c insn-opinit.c
2216 $(STAMP) s-opinit
2217
1c7352cd 2218# gencondmd doesn't use the standard naming convention.
e980df8e 2219build/gencondmd.c: s-conditions; @true
1c7352cd
ZW
2220s-conditions: $(MD_DEPS) build/genconditions$(build_exeext)
2221 $(RUN_GEN) build/genconditions$(build_exeext) $(md_file) > tmp-condmd.c
e980df8e 2222 $(SHELL) $(srcdir)/../move-if-change tmp-condmd.c build/gencondmd.c
1c7352cd
ZW
2223 $(STAMP) s-conditions
2224
2225insn-conditions.md: s-condmd; @true
2226s-condmd: build/gencondmd$(build_exeext)
2227 $(RUN_GEN) build/gencondmd$(build_exeext) > tmp-cond.md
2228 $(SHELL) $(srcdir)/../move-if-change tmp-cond.md insn-conditions.md
2229 $(STAMP) s-condmd
2230
2231
cbbbdc2c
ZW
2232# These files are generated by running the same generator more than
2233# once with different options, so they have custom rules. The
2234# stampfile idiom is the same.
cbbbdc2c 2235genrtl.h: s-genrtl-h; @true
2199e5fa 2236
cbbbdc2c 2237s-genrtl-h: build/gengenrtl$(build_exeext)
6ac9d3a3 2238 $(RUN_GEN) build/gengenrtl$(build_exeext) > tmp-genrtl.h
cbbbdc2c
ZW
2239 $(SHELL) $(srcdir)/../move-if-change tmp-genrtl.h genrtl.h
2240 $(STAMP) s-genrtl-h
2241
2242insn-modes.c: s-modes; @true
2243insn-modes.h: s-modes-h; @true
2244min-insn-modes.c: s-modes-m; @true
0974c7d7 2245
3b620440 2246s-modes: build/genmodes$(build_exeext)
cbbbdc2c
ZW
2247 $(RUN_GEN) build/genmodes$(build_exeext) > tmp-modes.c
2248 $(SHELL) $(srcdir)/../move-if-change tmp-modes.c insn-modes.c
2249 $(STAMP) s-modes
2250
2251s-modes-h: build/genmodes$(build_exeext)
3b620440 2252 $(RUN_GEN) build/genmodes$(build_exeext) -h > tmp-modes.h
88e3a2a3 2253 $(SHELL) $(srcdir)/../move-if-change tmp-modes.h insn-modes.h
cbbbdc2c
ZW
2254 $(STAMP) s-modes-h
2255
2256s-modes-m: build/genmodes$(build_exeext)
3b620440 2257 $(RUN_GEN) build/genmodes$(build_exeext) -m > tmp-min-modes.c
88e3a2a3 2258 $(SHELL) $(srcdir)/../move-if-change tmp-min-modes.c min-insn-modes.c
cbbbdc2c 2259 $(STAMP) s-modes-m
0974c7d7 2260
cbbbdc2c
ZW
2261insn-preds.c: s-preds; @true
2262tm-preds.h: s-preds-h; @true
279bb624 2263tm-constrs.h: s-constrs-h; @true
1b0c37d7 2264
4a0639a2
MZ
2265.PHONY: mddump
2266mddump: $(BUILD_RTL) $(MD_DEPS) build/genmddump$(build_exeext)
2267 $(RUN_GEN) build/genmddump$(build_exeext) $(md_file) > tmp-mddump.md
2268
26be549a 2269s-preds: $(MD_DEPS) build/genpreds$(build_exeext)
3b620440 2270 $(RUN_GEN) build/genpreds$(build_exeext) $(md_file) > tmp-preds.c
e543e219 2271 $(SHELL) $(srcdir)/../move-if-change tmp-preds.c insn-preds.c
1b0c37d7
ZW
2272 $(STAMP) s-preds
2273
cbbbdc2c
ZW
2274s-preds-h: $(MD_DEPS) build/genpreds$(build_exeext)
2275 $(RUN_GEN) build/genpreds$(build_exeext) -h $(md_file) > tmp-preds.h
2276 $(SHELL) $(srcdir)/../move-if-change tmp-preds.h tm-preds.h
2277 $(STAMP) s-preds-h
e543e219 2278
279bb624
DE
2279s-constrs-h: $(MD_DEPS) build/genpreds$(build_exeext)
2280 $(RUN_GEN) build/genpreds$(build_exeext) -c $(md_file) > tmp-constrs.h
2281 $(SHELL) $(srcdir)/../move-if-change tmp-constrs.h tm-constrs.h
2282 $(STAMP) s-constrs-h
2283
6bac43d7
RS
2284s-case-cfn-macros: build/gencfn-macros$(build_exeext)
2285 $(RUN_GEN) build/gencfn-macros$(build_exeext) -c \
2286 > tmp-case-cfn-macros.h
2287 $(SHELL) $(srcdir)/../move-if-change tmp-case-cfn-macros.h \
2288 case-cfn-macros.h
2289 $(STAMP) s-case-cfn-macros
2290case-cfn-macros.h: s-case-cfn-macros; @true
2291
b1dc4a20
RS
2292s-cfn-operators: build/gencfn-macros$(build_exeext)
2293 $(RUN_GEN) build/gencfn-macros$(build_exeext) -o \
2294 > tmp-cfn-operators.pd
2295 $(SHELL) $(srcdir)/../move-if-change tmp-cfn-operators.pd \
2296 cfn-operators.pd
2297 $(STAMP) s-cfn-operators
2298cfn-operators.pd: s-cfn-operators; @true
2299
38f8b050 2300target-hooks-def.h: s-target-hooks-def-h; @true
c18a9bc4
JR
2301# make sure that when we build info files, the used tm.texi is up to date.
2302$(srcdir)/doc/tm.texi: s-tm-texi; @true
38f8b050
JR
2303
2304s-target-hooks-def-h: build/genhooks$(build_exeext)
acce4e77
JM
2305 $(RUN_GEN) build/genhooks$(build_exeext) "Target Hook" \
2306 > tmp-target-hooks-def.h
38f8b050
JR
2307 $(SHELL) $(srcdir)/../move-if-change tmp-target-hooks-def.h \
2308 target-hooks-def.h
2309 $(STAMP) s-target-hooks-def-h
2310
acce4e77
JM
2311c-family/c-target-hooks-def.h: s-c-target-hooks-def-h; @true
2312
2313s-c-target-hooks-def-h: build/genhooks$(build_exeext)
2314 $(RUN_GEN) build/genhooks$(build_exeext) "C Target Hook" \
2315 > tmp-c-target-hooks-def.h
2316 $(SHELL) $(srcdir)/../move-if-change tmp-c-target-hooks-def.h \
2317 c-family/c-target-hooks-def.h
2318 $(STAMP) s-c-target-hooks-def-h
2319
c49a6962
JM
2320common/common-target-hooks-def.h: s-common-target-hooks-def-h; @true
2321
2322s-common-target-hooks-def-h: build/genhooks$(build_exeext)
2323 $(RUN_GEN) build/genhooks$(build_exeext) "Common Target Hook" \
2324 > tmp-common-target-hooks-def.h
2325 $(SHELL) $(srcdir)/../move-if-change tmp-common-target-hooks-def.h \
2326 common/common-target-hooks-def.h
2327 $(STAMP) s-common-target-hooks-def-h
2328
38f8b050 2329# check if someone mistakenly only changed tm.texi.
c18a9bc4
JR
2330# We use a different pathname here to avoid a circular dependency.
2331s-tm-texi: $(srcdir)/doc/../doc/tm.texi
e82a40fc 2332
459d4972
JR
2333# The tm.texi we want to compare against / check into svn should have
2334# unix-style line endings. To make this work on MinGW, remove \r.
2335# \r is not portable to Solaris tr, therefore we have a special
2336# case for ASCII. We use \r for other encodings like EBCDIC.
38f8b050 2337s-tm-texi: build/genhooks$(build_exeext) $(srcdir)/doc/tm.texi.in
acce4e77 2338 $(RUN_GEN) build/genhooks$(build_exeext) -d \
38f8b050 2339 $(srcdir)/doc/tm.texi.in > tmp-tm.texi
459d4972
JR
2340 case `echo X|tr X '\101'` in \
2341 A) tr -d '\015' < tmp-tm.texi > tmp2-tm.texi ;; \
93b39277 2342 *) tr -d '\r' < tmp-tm.texi > tmp2-tm.texi ;; \
459d4972
JR
2343 esac
2344 mv tmp2-tm.texi tmp-tm.texi
38f8b050
JR
2345 $(SHELL) $(srcdir)/../move-if-change tmp-tm.texi tm.texi
2346 @if cmp -s $(srcdir)/doc/tm.texi tm.texi; then \
2347 $(STAMP) $@; \
2348 elif test $(srcdir)/doc/tm.texi -nt $(srcdir)/doc/tm.texi.in \
acce4e77
JM
2349 && ( test $(srcdir)/doc/tm.texi -nt $(srcdir)/target.def \
2350 || test $(srcdir)/doc/tm.texi -nt $(srcdir)/c-family/c-target.def \
c49a6962 2351 || test $(srcdir)/doc/tm.texi -nt $(srcdir)/common/common-target.def \
acce4e77 2352 ); then \
38f8b050
JR
2353 echo >&2 ; \
2354 echo You should edit $(srcdir)/doc/tm.texi.in rather than $(srcdir)/doc/tm.texi . >&2 ; \
2355 false; \
2356 else \
2357 echo >&2 ; \
2358 echo Verify that you have permission to grant a GFDL license for all >&2 ; \
2359 echo new text in tm.texi, then copy it to $(srcdir)/doc/tm.texi. >&2 ; \
2360 false; \
2361 fi
2362
3d2cf79f
RB
2363gimple-match.c: s-match gimple-match-head.c ; @true
2364generic-match.c: s-match generic-match-head.c ; @true
2365
b1dc4a20 2366s-match: build/genmatch$(build_exeext) $(srcdir)/match.pd cfn-operators.pd
3d2cf79f
RB
2367 $(RUN_GEN) build/genmatch$(build_exeext) --gimple $(srcdir)/match.pd \
2368 > tmp-gimple-match.c
2369 $(RUN_GEN) build/genmatch$(build_exeext) --generic $(srcdir)/match.pd \
2370 > tmp-generic-match.c
2371 $(SHELL) $(srcdir)/../move-if-change tmp-gimple-match.c \
2372 gimple-match.c
2373 $(SHELL) $(srcdir)/../move-if-change tmp-generic-match.c \
2374 generic-match.c
2375 $(STAMP) s-match
2376
2d593c86
TT
2377GTFILES = $(CPP_ID_DATA_H) $(srcdir)/input.h $(srcdir)/coretypes.h \
2378 $(host_xm_file_list) \
4f4e53dd 2379 $(tm_file_list) $(HASHTAB_H) $(SPLAY_TREE_H) $(srcdir)/bitmap.h \
1478c897
RB
2380 $(srcdir)/wide-int.h $(srcdir)/alias.h $(srcdir)/cilk.h \
2381 $(srcdir)/cilk-common.c $(srcdir)/coverage.c $(srcdir)/rtl.h \
5e351e96
DN
2382 $(srcdir)/optabs.h $(srcdir)/tree.h $(srcdir)/tree-core.h \
2383 $(srcdir)/libfuncs.h $(SYMTAB_H) \
69c32ec8 2384 $(srcdir)/real.h $(srcdir)/function.h $(srcdir)/insn-addr.h $(srcdir)/hwint.h \
1e1ba002 2385 $(srcdir)/fixed-value.h \
60393bbc 2386 $(srcdir)/output.h $(srcdir)/cfgloop.h $(srcdir)/cfg.h \
369451ec 2387 $(srcdir)/cselib.h $(srcdir)/basic-block.h $(srcdir)/ipa-ref.h $(srcdir)/cgraph.h \
1ab24192 2388 $(srcdir)/reload.h $(srcdir)/caller-save.c $(srcdir)/symtab.c \
988d1653 2389 $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c $(srcdir)/cgraph.c \
eefe9a99 2390 $(srcdir)/ipa-prop.c $(srcdir)/ipa-cp.c $(srcdir)/ipa-utils.h \
647a1567 2391 $(srcdir)/dbxout.c \
807e902e 2392 $(srcdir)/signop.h \
647a1567
RH
2393 $(srcdir)/dwarf2out.h \
2394 $(srcdir)/dwarf2asm.c \
2395 $(srcdir)/dwarf2cfi.c \
2396 $(srcdir)/dwarf2out.c \
726a989a 2397 $(srcdir)/tree-vect-generic.c \
2bb8cb58 2398 $(srcdir)/dojump.c $(srcdir)/emit-rtl.h \
9994a182 2399 $(srcdir)/emit-rtl.c $(srcdir)/except.h $(srcdir)/explow.c $(srcdir)/expr.c \
aa331cc5 2400 $(srcdir)/expr.h \
9994a182 2401 $(srcdir)/function.c $(srcdir)/except.c \
8c4294b2 2402 $(srcdir)/ggc-tests.c \
c6a13190 2403 $(srcdir)/gcse.c $(srcdir)/godump.c \
385399a8 2404 $(srcdir)/lists.c $(srcdir)/optabs-libfuncs.c \
360d045b 2405 $(srcdir)/profile.c $(srcdir)/mcf.c \
78bde837 2406 $(srcdir)/reg-stack.c $(srcdir)/cfgrtl.c \
7efcb746 2407 $(srcdir)/sdbout.c $(srcdir)/stor-layout.c \
8a89dbd2 2408 $(srcdir)/stringpool.c $(srcdir)/tree.c $(srcdir)/varasm.c \
83fd5d11 2409 $(srcdir)/gimple.h \
98906124 2410 $(srcdir)/gimple-ssa.h \
d5e254e1 2411 $(srcdir)/tree-chkp.c \
ac182688 2412 $(srcdir)/tree-ssanames.c $(srcdir)/tree-eh.c $(srcdir)/tree-ssa-address.c \
726a989a
RB
2413 $(srcdir)/tree-cfg.c \
2414 $(srcdir)/tree-dfa.c \
45b0be94 2415 $(srcdir)/tree-iterator.c $(srcdir)/gimple-expr.c \
726a989a
RB
2416 $(srcdir)/tree-chrec.h \
2417 $(srcdir)/tree-scalar-evolution.c \
456cde30 2418 $(srcdir)/tree-ssa-operands.h \
8a76829c 2419 $(srcdir)/tree-profile.c $(srcdir)/tree-nested.c \
726a989a 2420 $(srcdir)/omp-low.c \
ec6fe917 2421 $(srcdir)/omp-low.h \
7be82279 2422 $(srcdir)/targhooks.c $(out_file) $(srcdir)/passes.c $(srcdir)/cgraphunit.c \
66a20fc2 2423 $(srcdir)/cgraphclones.c \
726a989a 2424 $(srcdir)/tree-phinodes.c \
5006671f 2425 $(srcdir)/tree-ssa-alias.h \
b12ebd96 2426 $(srcdir)/tree-ssanames.h \
fb3f88cc 2427 $(srcdir)/ipa-prop.h \
0a35513e 2428 $(srcdir)/trans-mem.c \
49ba8180 2429 $(srcdir)/lto-streamer.h \
3bd36029 2430 $(srcdir)/target-globals.h \
632b4f8e 2431 $(srcdir)/ipa-inline.h \
2077db1b 2432 $(srcdir)/vtable-verify.c \
f6d98484 2433 $(srcdir)/asan.c \
de5a5fa1 2434 $(srcdir)/ubsan.c \
b78475cf 2435 $(srcdir)/tsan.c \
06cefae9 2436 $(srcdir)/sanopt.c \
95e7bbb8 2437 $(srcdir)/sancov.c \
b78475cf
YG
2438 $(srcdir)/ipa-devirt.c \
2439 $(srcdir)/internal-fn.h \
b2b40051 2440 $(srcdir)/hsa.c \
e2500fed
GK
2441 @all_gtfiles@
2442
8de8de02
OH
2443# Compute the list of GT header files from the corresponding C sources,
2444# possibly nested within config or language subdirectories. Match gengtype's
2445# behavior in this respect: gt-LANG-file.h for "file" anywhere within a LANG
2446# language subdir, gt-file.h otherwise (no subdir indication for config/
2447# related sources).
2448
2449GTFILES_H = $(subst /,-, \
2450 $(shell echo $(patsubst $(srcdir)/%,gt-%, \
2451 $(patsubst %.c,%.h, \
2452 $(filter %.c, $(GTFILES)))) \
5cff8550 2453 | sed -e "s|/[^ ]*/|/|g" -e "s|gt-config/|gt-|g"))
11a67599
ZW
2454
2455GTFILES_LANG_H = $(patsubst [%], gtype-%.h, $(filter [%], $(GTFILES)))
2456ALL_GTFILES_H := $(sort $(GTFILES_H) $(GTFILES_LANG_H))
2457
2458# $(GTFILES) may be too long to put on a command line, so we have to
2459# write it out to a file (taking care not to do that in a way that
2460# overflows a command line!) and then have gengtype read the file in.
2f035a33 2461
f142b5bc 2462$(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gtype.state: s-gtype ; @true
11a67599 2463
92724e1d
BS
2464### Common flags to gengtype [e.g. -v or -B backupdir]
2465GENGTYPE_FLAGS=
2466
11a67599
ZW
2467gtyp-input.list: s-gtyp-input ; @true
2468s-gtyp-input: Makefile
a4e4a2d6 2469 @: $(call write_entries_to_file,$(GTFILES),tmp-gi.list)
11a67599
ZW
2470 $(SHELL) $(srcdir)/../move-if-change tmp-gi.list gtyp-input.list
2471 $(STAMP) s-gtyp-input
2472
2473s-gtype: build/gengtype$(build_exeext) $(filter-out [%], $(GTFILES)) \
2474 gtyp-input.list
92724e1d
BS
2475# First, parse all files and save a state file.
2476 $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \
f142b5bc 2477 -S $(srcdir) -I gtyp-input.list -w tmp-gtype.state
92724e1d
BS
2478# Second, read the state file and generate all files. This ensure that
2479# gtype.state is correctly read:
f142b5bc 2480 $(SHELL) $(srcdir)/../move-if-change tmp-gtype.state gtype.state
92724e1d
BS
2481 $(RUN_GEN) build/gengtype$(build_exeext) $(GENGTYPE_FLAGS) \
2482 -r gtype.state
e2500fed
GK
2483 $(STAMP) s-gtype
2484
39dabefd
SB
2485generated_files = config.h tm.h $(TM_P_H) $(TM_H) multilib.h \
2486 $(simple_generated_h) specs.h \
2487 tree-check.h genrtl.h insn-modes.h tm-preds.h tm-constrs.h \
d2db5e91
TT
2488 $(ALL_GTFILES_H) gtype-desc.c gtype-desc.h gcov-iov.h \
2489 options.h target-hooks-def.h insn-opinit.h \
2490 common/common-target-hooks-def.h pass-instances.def \
b1dc4a20
RS
2491 c-family/c-target-hooks-def.h params.list case-cfn-macros.h \
2492 cfn-operators.pd
39dabefd 2493
544eb21e 2494#\f
cbbbdc2c 2495# How to compile object files to run on the build machine.
4b09846b 2496
e980df8e 2497build/%.o : # dependencies provided by explicit rule later
7980bfb8
ILT
2498 $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \
2499 -o $@ $<
e980df8e 2500
f8ed6dc5
JS
2501## build/version.o is compiled by the $(COMPILER_FOR_BUILD) but needs
2502## several C macro definitions, just like version.o
2503build/version.o: version.c version.h \
2504 $(REVISION) $(DATESTAMP) $(BASEVER) $(DEVPHASE)
2505 $(COMPILER_FOR_BUILD) -c $(BUILD_COMPILERFLAGS) $(BUILD_CPPFLAGS) \
2506 -DBASEVER=$(BASEVER_s) -DDATESTAMP=$(DATESTAMP_s) \
2507 -DREVISION=$(REVISION_s) \
2508 -DDEVPHASE=$(DEVPHASE_s) -DPKGVERSION=$(PKGVERSION_s) \
2509 -DBUGURL=$(BUGURL_s) -o $@ $<
2510
e980df8e
TT
2511# Header dependencies for the programs that generate source code.
2512# These are library modules...
2513build/errors.o : errors.c $(BCONFIG_H) $(SYSTEM_H) errors.h
2514build/gensupport.o: gensupport.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2515 $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) errors.h $(HASHTAB_H) \
886456e2 2516 $(READ_MD_H) $(GENSUPPORT_H)
e980df8e
TT
2517build/ggc-none.o : ggc-none.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2518 $(GGC_H)
2519build/min-insn-modes.o : min-insn-modes.c $(BCONFIG_H) $(SYSTEM_H) \
2520 $(MACHMODE_H)
2521build/print-rtl.o: print-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2522 $(GTM_H) $(RTL_BASE_H)
10692477 2523build/read-md.o: read-md.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
bb933490 2524 $(HASHTAB_H) errors.h $(READ_MD_H)
e980df8e 2525build/read-rtl.o: read-rtl.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
10692477 2526 $(GTM_H) $(RTL_BASE_H) $(OBSTACK_H) $(HASHTAB_H) $(READ_MD_H) \
886456e2 2527 $(GENSUPPORT_H)
e980df8e 2528build/rtl.o: rtl.c $(BCONFIG_H) coretypes.h $(GTM_H) $(SYSTEM_H) \
40013784 2529 $(RTL_H) $(GGC_H) errors.h
3e097227 2530build/vec.o : vec.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(VEC_H) \
7c475d11 2531 $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H)
3d2cf79f
RB
2532build/hash-table.o : hash-table.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2533 $(HASH_TABLE_H) $(GGC_H) toplev.h $(DIAGNOSTIC_CORE_H)
34ba5aff
RS
2534build/inchash.o : inchash.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
2535 $(HASHTAB_H) inchash.h
e980df8e 2536build/gencondmd.o : build/gencondmd.c $(BCONFIG_H) $(SYSTEM_H) \
f9897dfa
L
2537 coretypes.h $(GTM_H) insn-constants.h \
2538 $(filter-out insn-flags.h, $(RTL_H) $(TM_P_H) $(FUNCTION_H) $(REGS_H) \
7c475d11 2539 $(RECOG_H) output.h $(FLAGS_H) $(RESOURCE_H) toplev.h $(DIAGNOSTIC_CORE_H) reload.h \
f9897dfa 2540 $(EXCEPT_H) tm-constrs.h)
0b50988a
EB
2541# This pulls in tm-pred.h which contains inline functions wrapping up
2542# predicates from the back-end so those functions must be discarded.
2543# No big deal since gencondmd.c is a dummy file for non-GCC compilers.
2544build/gencondmd.o : \
2545 BUILD_CFLAGS := $(filter-out -fkeep-inline-functions, $(BUILD_CFLAGS))
4977bab6 2546
e980df8e
TT
2547# ...these are the programs themselves.
2548build/genattr.o : genattr.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2549 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
88a00ef7 2550build/genattr-common.o : genattr-common.c $(RTL_BASE_H) $(BCONFIG_H) \
886456e2 2551 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
e980df8e
TT
2552build/genattrtab.o : genattrtab.c $(RTL_BASE_H) $(OBSTACK_H) \
2553 $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(GGC_H) \
886456e2 2554 $(READ_MD_H) $(GENSUPPORT_H) $(FNMATCH_H)
e980df8e 2555build/genautomata.o : genautomata.c $(RTL_BASE_H) $(OBSTACK_H) \
3e097227 2556 $(BCONFIG_H) $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(VEC_H) \
886456e2 2557 $(HASHTAB_H) $(GENSUPPORT_H) $(FNMATCH_H)
bfefafc6 2558build/gencheck.o : gencheck.c all-tree.def $(BCONFIG_H) $(GTM_H) \
16fe2c09
JJ
2559 $(SYSTEM_H) coretypes.h tree.def c-family/c-common.def \
2560 $(lang_tree_files) gimple.def
e980df8e
TT
2561build/genchecksum.o : genchecksum.c $(BCONFIG_H) $(SYSTEM_H) $(MD5_H)
2562build/gencodes.o : gencodes.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2563 coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H)
e980df8e 2564build/genconditions.o : genconditions.c $(RTL_BASE_H) $(BCONFIG_H) \
10692477 2565 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(HASHTAB_H) $(READ_MD_H) \
886456e2 2566 $(GENSUPPORT_H)
e980df8e 2567build/genconfig.o : genconfig.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2568 coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H)
9b68b6ea
RS
2569build/genconstants.o : genconstants.c $(BCONFIG_H) $(SYSTEM_H) \
2570 coretypes.h errors.h $(READ_MD_H)
e980df8e 2571build/genemit.o : genemit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2572 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) internal-fn.def
0fe60a1b
RS
2573build/genenums.o : genenums.c $(BCONFIG_H) $(SYSTEM_H) \
2574 coretypes.h errors.h $(READ_MD_H)
e980df8e 2575build/genextract.o : genextract.c $(RTL_BASE_H) $(BCONFIG_H) \
886456e2 2576 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
e980df8e 2577build/genflags.o : genflags.c $(RTL_BASE_H) $(OBSTACK_H) $(BCONFIG_H) \
886456e2 2578 $(SYSTEM_H) coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
4bccb39e 2579build/gentarget-def.o : gentarget-def.c $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2580 coretypes.h $(GTM_H) $(RTL_BASE_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) \
4bccb39e 2581 $(HASH_TABLE_H) target-insns.def
e980df8e 2582build/gengenrtl.o : gengenrtl.c $(BCONFIG_H) $(SYSTEM_H) rtl.def
4a061351
SB
2583
2584# The gengtype generator program is special: Two versions are built.
2585# One is for the build machine, and one is for the host to allow
2586# plugins to define their types and generate the supporting GGC
2587# datastructures and routines with GTY markers.
2588# The host object files depend on CONFIG_H, and the build objects
2589# on BCONFIG_H. For the build objects, add -DGENERATOR_FILE manually,
2590# the build-%: rule doesn't apply to them.
2591
d6d34aa9
JJ
2592GENGTYPE_OBJS = gengtype.o gengtype-parse.o gengtype-state.o \
2593 gengtype-lex.o errors.o
2594
f142b5bc 2595gengtype-lex.o build/gengtype-lex.o : gengtype-lex.c gengtype.h $(SYSTEM_H)
d6d34aa9 2596CFLAGS-gengtype-lex.o += -DHOST_GENERATOR_FILE
f142b5bc 2597build/gengtype-lex.o: $(BCONFIG_H)
4a061351 2598
f142b5bc 2599gengtype-parse.o build/gengtype-parse.o : gengtype-parse.c gengtype.h \
e980df8e 2600 $(SYSTEM_H)
d6d34aa9 2601CFLAGS-gengtype-parse.o += -DHOST_GENERATOR_FILE
f142b5bc 2602build/gengtype-parse.o: $(BCONFIG_H)
4a061351 2603
f142b5bc
RG
2604gengtype-state.o build/gengtype-state.o: gengtype-state.c $(SYSTEM_H) \
2605 gengtype.h errors.h double-int.h version.h $(HASHTAB_H) $(OBSTACK_H) \
2606 $(XREGEX_H)
d6d34aa9 2607CFLAGS-gengtype-state.o += -DHOST_GENERATOR_FILE
f142b5bc
RG
2608build/gengtype-state.o: $(BCONFIG_H)
2609gengtype.o build/gengtype.o : gengtype.c $(SYSTEM_H) gengtype.h \
807e902e
KZ
2610 rtl.def insn-notes.def errors.h double-int.h version.h \
2611 $(HASHTAB_H) $(OBSTACK_H) $(XREGEX_H)
d6d34aa9 2612CFLAGS-gengtype.o += -DHOST_GENERATOR_FILE
f142b5bc 2613build/gengtype.o: $(BCONFIG_H)
4a061351 2614
d6d34aa9
JJ
2615CFLAGS-errors.o += -DHOST_GENERATOR_FILE
2616
e980df8e 2617build/genmddeps.o: genmddeps.c $(BCONFIG_H) $(SYSTEM_H) coretypes.h \
9b68b6ea 2618 errors.h $(READ_MD_H)
e980df8e
TT
2619build/genmodes.o : genmodes.c $(BCONFIG_H) $(SYSTEM_H) errors.h \
2620 $(HASHTAB_H) machmode.def $(extra_modes_file)
2621build/genopinit.o : genopinit.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2622 coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) optabs.def
e980df8e 2623build/genoutput.o : genoutput.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2624 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
e980df8e 2625build/genpeep.o : genpeep.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2626 coretypes.h $(GTM_H) errors.h $(GENSUPPORT_H) toplev.h $(DIAGNOSTIC_CORE_H)
e980df8e 2627build/genpreds.o : genpreds.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2628 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) $(OBSTACK_H)
e980df8e 2629build/genrecog.o : genrecog.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2630 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H) \
72d33bd3 2631 $(HASH_TABLE_H) inchash.h
acce4e77 2632build/genhooks.o : genhooks.c $(TARGET_DEF) $(C_TARGET_DEF) \
c49a6962 2633 $(COMMON_TARGET_DEF) $(BCONFIG_H) $(SYSTEM_H) errors.h
4a0639a2 2634build/genmddump.o : genmddump.c $(RTL_BASE_H) $(BCONFIG_H) $(SYSTEM_H) \
886456e2 2635 coretypes.h $(GTM_H) errors.h $(READ_MD_H) $(GENSUPPORT_H)
3d2cf79f 2636build/genmatch.o : genmatch.c $(BCONFIG_H) $(SYSTEM_H) \
ed4403c6 2637 coretypes.h errors.h $(HASH_TABLE_H) hash-map.h $(GGC_H) is-a.h \
1b212562 2638 tree.def builtins.def internal-fn.def
6bac43d7
RS
2639build/gencfn-macros.o : gencfn-macros.c $(BCONFIG_H) $(SYSTEM_H) \
2640 coretypes.h errors.h $(HASH_TABLE_H) hash-set.h builtins.def internal-fn.def
e980df8e 2641
cbbbdc2c 2642# Compile the programs that generate insn-* from the machine description.
7980bfb8 2643# They are compiled with $(COMPILER_FOR_BUILD), and associated libraries,
cbbbdc2c
ZW
2644# since they need to run on this machine
2645# even if GCC is being compiled to run on some other machine.
1b0c37d7 2646
9b68b6ea 2647# All these programs use the RTL reader ($(BUILD_RTL)).
88a00ef7 2648genprogrtl = attr attr-common attrtab automata codes conditions config emit \
4bccb39e 2649 extract flags mddump opinit output peep preds recog target-def
9b68b6ea
RS
2650$(genprogrtl:%=build/gen%$(build_exeext)): $(BUILD_RTL)
2651
2652# All these programs use the MD reader ($(BUILD_MD)).
0fe60a1b 2653genprogmd = $(genprogrtl) mddeps constants enums
9b68b6ea
RS
2654$(genprogmd:%=build/gen%$(build_exeext)): $(BUILD_MD)
2655
6ddddaed 2656# All these programs need to report errors.
6bac43d7 2657genprogerr = $(genprogmd) genrtl modes gtype hooks cfn-macros
6ddddaed
RW
2658$(genprogerr:%=build/gen%$(build_exeext)): $(BUILD_ERRORS)
2659
2660# Remaining build programs.
3d2cf79f 2661genprog = $(genprogerr) check checksum condmd match
1c7352cd 2662
0b50988a 2663# These programs need libs over and above what they get from the above list.
8c94f366 2664build/genautomata$(build_exeext) : BUILD_LIBS += -lm
d5706a1e 2665
72d33bd3 2666build/genrecog$(build_exeext) : build/hash-table.o build/inchash.o
6bac43d7 2667build/gencfn-macros$(build_exeext) : build/hash-table.o build/ggc-none.o
72d33bd3 2668
1f59b315
RB
2669# For stage1 and when cross-compiling use the build libcpp which is
2670# built with NLS disabled. For stage2+ use the host library and
2671# its dependencies.
2672ifeq ($(build_objdir),$(build_libobjdir))
2673BUILD_CPPLIB = $(build_libobjdir)/libcpp/libcpp.a
2674else
2675BUILD_CPPLIB = $(CPPLIB) $(LIBIBERTY)
2676build/genmatch$(build_exeext): BUILD_LIBDEPS += $(LIBINTL_DEP) $(LIBICONV_DEP)
2677build/genmatch$(build_exeext): BUILD_LIBS += $(LIBINTL) $(LIBICONV)
2678endif
2679
929315a9 2680build/genmatch$(build_exeext) : $(BUILD_CPPLIB) \
3d2cf79f
RB
2681 $(BUILD_ERRORS) build/vec.o build/hash-table.o
2682
0458fe77 2683# These programs are not linked with the MD reader.
f8ed6dc5 2684build/gengtype$(build_exeext) : build/gengtype-lex.o build/gengtype-parse.o \
f142b5bc
RG
2685 build/gengtype-state.o build/version.o build/errors.o
2686
2687gengtype$(exeext) : gengtype.o gengtype-lex.o gengtype-parse.o \
2688 gengtype-state.o version.o errors.o $(LIBDEPS)
b6ee5bef
RO
2689 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
2690 $(filter-out ($LIBDEPS), $^) $(LIBS)
6ddddaed
RW
2691
2692# Rule for the generator programs:
2693$(genprog:%=build/gen%$(build_exeext)): build/gen%$(build_exeext): build/gen%.o $(BUILD_LIBDEPS)
a90163e9 2694 +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) -o $@ \
6ddddaed 2695 $(filter-out $(BUILD_LIBDEPS), $^) $(BUILD_LIBS)
e2500fed 2696
18406601
PB
2697# Generated source files for gengtype. Prepend inclusion of
2698# bconfig.h because AIX requires _LARGE_FILES to be defined before
2699# any system header is included.
03787dfd 2700gengtype-lex.c : gengtype-lex.l
8fb15466
PB
2701 -$(FLEX) $(FLEXFLAGS) -o$@ $< && { \
2702 echo '#include "bconfig.h"' > $@.tmp; \
2703 cat $@ >> $@.tmp; \
2704 mv $@.tmp $@; \
2705 }
fae15c93 2706
e980df8e
TT
2707#\f
2708# Remake internationalization support.
c5bc3df6 2709CFLAGS-intl.o += -DLOCALEDIR=\"$(localedir)\"
e980df8e 2710
544eb21e 2711#\f
52c0e446 2712# Remake cpp.
79d8453e 2713
d059a239
FF
2714PREPROCESSOR_DEFINES = \
2715 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
f686ec05 2716 -DFIXED_INCLUDE_DIR=\"$(libsubdir)/include-fixed\" \
d059a239 2717 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
17719d09 2718 -DGPLUSPLUS_INCLUDE_DIR_ADD_SYSROOT=$(gcc_gxx_include_dir_add_sysroot) \
caa55b1e 2719 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_noncanonical)\" \
98c2359b 2720 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
793e9558 2721 -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
4977bab6 2722 -DCROSS_INCLUDE_DIR=\"$(CROSS_SYSTEM_HEADER_DIR)\" \
047d636f 2723 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\" \
08b2bad2 2724 -DNATIVE_SYSTEM_HEADER_DIR=\"$(NATIVE_SYSTEM_HEADER_DIR)\" \
925af765
RS
2725 -DPREFIX=\"$(prefix)/\" \
2726 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc/\" \
047d636f 2727 @TARGET_SYSTEM_ROOT_DEFINE@
79d8453e 2728
c5bc3df6 2729CFLAGS-cppbuiltin.o += $(PREPROCESSOR_DEFINES) -DBASEVER=$(BASEVER_s)
2754b38f 2730cppbuiltin.o: $(BASEVER)
82a1c2fe 2731
c5bc3df6 2732CFLAGS-cppdefault.o += $(PREPROCESSOR_DEFINES)
e980df8e 2733
7bd95cc1
BK
2734# Note for the stamp targets, we run the program `true' instead of
2735# having an empty command (nothing following the semicolon).
2736
e980df8e
TT
2737# gcov-iov.c is run on the build machine to generate gcov-iov.h from version.c
2738build/gcov-iov.o: gcov-iov.c $(BCONFIG_H) coretypes.h $(GTM_H) \
2739 $(SYSTEM_H) coretypes.h $(TM_H)
2740
3b620440 2741build/gcov-iov$(build_exeext): build/gcov-iov.o
a90163e9 2742 +$(LINKER_FOR_BUILD) $(BUILD_LINKERFLAGS) $(BUILD_LDFLAGS) \
7980bfb8 2743 build/gcov-iov.o -o $@
3b620440 2744
28068c2c 2745gcov-iov.h: s-iov
a1286ef5
ZW
2746s-iov: build/gcov-iov$(build_exeext) $(BASEVER) $(DEVPHASE)
2747 build/gcov-iov$(build_exeext) '$(BASEVER_c)' '$(DEVPHASE_c)' \
2748 > tmp-gcov-iov.h
88e3a2a3 2749 $(SHELL) $(srcdir)/../move-if-change tmp-gcov-iov.h gcov-iov.h
28068c2c 2750 $(STAMP) s-iov
4977bab6 2751
2691e6d7 2752GCOV_OBJS = gcov.o
ab87f8c8 2753gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
2d44c7de 2754 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_OBJS) \
003f2d34 2755 hash-table.o ggc-none.o $(LIBS) -o $@
2691e6d7 2756GCOV_DUMP_OBJS = gcov-dump.o
4977bab6 2757gcov-dump$(exeext): $(GCOV_DUMP_OBJS) $(LIBDEPS)
a90163e9 2758 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_DUMP_OBJS) \
f17339ce 2759 hash-table.o ggc-none.o\
7980bfb8 2760 $(LIBS) -o $@
c77556a5
RX
2761
2762GCOV_TOOL_DEP_FILES = $(srcdir)/../libgcc/libgcov-util.c gcov-io.c $(GCOV_IO_H) \
2763 $(srcdir)/../libgcc/libgcov-driver.c $(srcdir)/../libgcc/libgcov-driver-system.c \
afe0c5ee 2764 $(srcdir)/../libgcc/libgcov-merge.c $(srcdir)/../libgcc/libgcov.h \
c77556a5
RX
2765 $(SYSTEM_H) coretypes.h $(TM_H) $(CONFIG_H) version.h intl.h $(DIAGNOSTIC_H)
2766libgcov-util.o: $(srcdir)/../libgcc/libgcov-util.c $(GCOV_TOOL_DEP_FILES)
2767 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -o $@ $<
2768libgcov-driver-tool.o: $(srcdir)/../libgcc/libgcov-driver.c $(GCOV_TOOL_DEP_FILES)
2769 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2770 -DIN_GCOV_TOOL=1 -o $@ $<
2771libgcov-merge-tool.o: $(srcdir)/../libgcc/libgcov-merge.c $(GCOV_TOOL_DEP_FILES)
2772 +$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2773 -DIN_GCOV_TOOL=1 -o $@ $<
2774GCOV_TOOL_OBJS = gcov-tool.o libgcov-util.o libgcov-driver-tool.o libgcov-merge-tool.o
2775gcov-tool$(exeext): $(GCOV_TOOL_OBJS) $(LIBDEPS)
2776 +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) $(GCOV_TOOL_OBJS) $(LIBS) -o $@
544eb21e 2777#\f
f686ec05 2778# Build the include directories. The stamp files are stmp-* rather than
e5e809f4 2779# s-* so that mostlyclean does not force the include directory to
ba1811f1
ILT
2780# be rebuilt.
2781
f686ec05 2782# Build the include directories.
201cdb74 2783stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) fixinc_list
ba1811f1 2784# Copy in the headers provided with gcc.
8294b6fe 2785#
ba1811f1
ILT
2786# The sed command gets just the last file name component;
2787# this is necessary because VPATH could add a dirname.
2788# Using basename would be simpler, but some systems don't have it.
8294b6fe 2789#
c85f7c16 2790# The touch command is here to workaround an AIX/Linux NFS bug.
8294b6fe
OH
2791#
2792# The move-if-change + cp -p twists for limits.h are intended to preserve
2793# the time stamp when we regenerate, to prevent pointless rebuilds during
2794# e.g. install-no-fixedincludes.
7bfe3c97 2795 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
f686ec05 2796 -if [ -d include-fixed ] ; then true; else mkdir include-fixed; chmod a+rx include-fixed; fi
d7371761
RK
2797 for file in .. $(USER_H); do \
2798 if [ X$$file != X.. ]; then \
2799 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
d9835ae8 2800 $(STAMP) include/$$realfile; \
ae678a13
JW
2801 rm -f include/$$realfile; \
2802 cp $$file include; \
2803 chmod a+r include/$$realfile; \
d7371761 2804 fi; \
ba1811f1 2805 done
9b91e436
KT
2806 for file in .. $(USER_H_INC_NEXT_PRE); do \
2807 if [ X$$file != X.. ]; then \
2808 mv include/$$file include/x_$$file; \
2809 echo "#include_next <$$file>" >include/$$file; \
2810 cat include/x_$$file >>include/$$file; \
2811 rm -f include/x_$$file; \
2812 chmod a+r include/$$file; \
2813 fi; \
2814 done
2815 for file in .. $(USER_H_INC_NEXT_POST); do \
2816 if [ X$$file != X.. ]; then \
2817 echo "#include_next <$$file>" >>include/$$file; \
2818 chmod a+r include/$$file; \
2819 fi; \
2820 done
207bf79d
JM
2821 rm -f include/stdint.h
2822 if [ $(USE_GCC_STDINT) = wrap ]; then \
2823 rm -f include/stdint-gcc.h; \
2824 cp $(srcdir)/ginclude/stdint-gcc.h include/stdint-gcc.h; \
1d9edd01 2825 chmod a+r include/stdint-gcc.h; \
207bf79d 2826 cp $(srcdir)/ginclude/stdint-wrap.h include/stdint.h; \
c8c520dd 2827 chmod a+r include/stdint.h; \
207bf79d
JM
2828 elif [ $(USE_GCC_STDINT) = provide ]; then \
2829 cp $(srcdir)/ginclude/stdint-gcc.h include/stdint.h; \
c8c520dd 2830 chmod a+r include/stdint.h; \
207bf79d 2831 fi
14da6073
JM
2832 set -e; for ml in `cat fixinc_list`; do \
2833 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
2834 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
2835 fix_dir=include-fixed$${multi_dir}; \
2836 if $(LIMITS_H_TEST) ; then \
2837 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
2838 else \
2839 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
2840 fi; \
2841 $(mkinstalldirs) $${fix_dir}; \
2842 chmod a+rx $${fix_dir} || true; \
8294b6fe
OH
2843 $(SHELL) $(srcdir)/../move-if-change \
2844 tmp-xlimits.h tmp-limits.h; \
14da6073 2845 rm -f $${fix_dir}/limits.h; \
8294b6fe 2846 cp -p tmp-limits.h $${fix_dir}/limits.h; \
14da6073
JM
2847 chmod a+r $${fix_dir}/limits.h; \
2848 done
e7f62ad3 2849# Install the README
f686ec05
JM
2850 rm -f include-fixed/README
2851 cp $(srcdir)/../fixincludes/README-fixinc include-fixed/README
2852 chmod a+r include-fixed/README
d9835ae8 2853 $(STAMP) $@
e7f62ad3 2854
4977bab6
ZW
2855.PHONY: install-gcc-tooldir
2856install-gcc-tooldir:
947c6b00 2857 $(mkinstalldirs) $(DESTDIR)$(gcc_tooldir)
4977bab6 2858
5cd37749 2859macro_list: s-macro_list; @true
15e3d4f1 2860s-macro_list : $(GCC_PASSES) cc1$(exeext)
53c7ffe7 2861 echo | $(GCC_FOR_TARGET) -E -dM - | \
8160ab35
MK
2862 sed -n -e 's/^#define \([^_][a-zA-Z0-9_]*\).*/\1/p' \
2863 -e 's/^#define \(_[^_A-Z][a-zA-Z0-9_]*\).*/\1/p' | \
5cd37749
JG
2864 sort -u > tmp-macro_list
2865 $(SHELL) $(srcdir)/../move-if-change tmp-macro_list macro_list
2866 $(STAMP) s-macro_list
53c7ffe7 2867
14da6073
JM
2868fixinc_list: s-fixinc_list; @true
2869s-fixinc_list : $(GCC_PASSES)
2870# Build up a list of multilib directories and corresponding sysroot
2871# suffixes, in form sysroot;multilib.
2872 if $(GCC_FOR_TARGET) -print-sysroot-headers-suffix > /dev/null 2>&1; then \
2873 set -e; for ml in `$(GCC_FOR_TARGET) -print-multi-lib`; do \
2874 multi_dir=`echo $${ml} | sed -e 's/;.*$$//'`; \
2875 flags=`echo $${ml} | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
2876 sfx=`$(GCC_FOR_TARGET) $${flags} -print-sysroot-headers-suffix`; \
2877 if [ "$${multi_dir}" = "." ]; \
2878 then multi_dir=""; \
2879 else \
2880 multi_dir=/$${multi_dir}; \
2881 fi; \
2882 echo "$${sfx};$${multi_dir}"; \
2883 done; \
2884 else \
2885 echo ";"; \
2886 fi > tmp-fixinc_list
2887 $(SHELL) $(srcdir)/../move-if-change tmp-fixinc_list fixinc_list
2888 $(STAMP) s-fixinc_list
2889
144023ad
AO
2890# The line below is supposed to avoid accidentally matching the
2891# built-in suffix rule `.o:' to build fixincl out of fixincl.o. You'd
2892# expect fixincl to be newer than fixincl.o, such that this situation
2893# would never come up. As it turns out, if you use ccache with
2894# CCACHE_HARDLINK enabled, the compiler doesn't embed the current
2895# working directory in object files (-g absent, or -fno-working-dir
2896# present), and build and host are the same, fixincl for the host will
2897# build after fixincl for the build machine, getting a cache hit,
a4d05547 2898# thereby updating the timestamp of fixincl.o in the host tree.
144023ad
AO
2899# Because of CCACHE_HARDLINK, this will also update the timestamp in
2900# the build tree, and so fixincl in the build tree will appear to be
2901# out of date. Yuck.
2902../$(build_subdir)/fixincludes/fixincl: ; @ :
2903
ba1811f1 2904# Build fixed copies of system files.
be448346
BS
2905# Abort if no system headers available, unless building a crosscompiler.
2906# FIXME: abort unless building --without-headers would be more accurate and less ugly
14da6073 2907stmp-fixinc: gsyslimits.h macro_list fixinc_list \
215c351a
PB
2908 $(build_objdir)/fixincludes/fixincl \
2909 $(build_objdir)/fixincludes/fixinc.sh
f686ec05
JM
2910 rm -rf include-fixed; mkdir include-fixed
2911 -chmod a+rx include-fixed
cc11cc9b
PB
2912 if [ -d ../prev-gcc ]; then \
2913 cd ../prev-gcc && \
9fb03bd8 2914 $(MAKE) real-$(INSTALL_HEADERS_DIR) DESTDIR=`pwd`/../gcc/ \
cc11cc9b 2915 libsubdir=. ; \
3dc4a939 2916 else \
14da6073
JM
2917 set -e; for ml in `cat fixinc_list`; do \
2918 sysroot_headers_suffix=`echo $${ml} | sed -e 's/;.*$$//'`; \
2919 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
2920 fix_dir=include-fixed$${multi_dir}; \
2921 if ! $(inhibit_libc) && test ! -d ${SYSTEM_HEADER_DIR}; then \
2922 echo The directory that should contain system headers does not exist: >&2 ; \
2923 echo " ${SYSTEM_HEADER_DIR}" >&2 ; \
2924 tooldir_sysinc=`echo "${gcc_tooldir}/sys-include" | sed -e :a -e "s,[^/]*/\.\.\/,," -e ta`; \
2925 if test "x${SYSTEM_HEADER_DIR}" = "x$${tooldir_sysinc}"; \
2926 then sleep 1; else exit 1; fi; \
2927 fi; \
2928 $(mkinstalldirs) $${fix_dir}; \
2929 chmod a+rx $${fix_dir} || true; \
2930 (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD_COMMAND}`; \
2931 SHELL='$(SHELL)'; MACRO_LIST=`${PWD_COMMAND}`/macro_list ; \
1d93c860 2932 gcc_dir=`${PWD_COMMAND}` ; \
14da6073
JM
2933 export TARGET_MACHINE srcdir SHELL MACRO_LIST && \
2934 cd $(build_objdir)/fixincludes && \
1d93c860 2935 $(SHELL) ./fixinc.sh "$${gcc_dir}/$${fix_dir}" \
14da6073
JM
2936 $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS) ); \
2937 rm -f $${fix_dir}/syslimits.h; \
2938 if [ -f $${fix_dir}/limits.h ]; then \
2939 mv $${fix_dir}/limits.h $${fix_dir}/syslimits.h; \
2940 else \
2941 cp $(srcdir)/gsyslimits.h $${fix_dir}/syslimits.h; \
2942 fi; \
2943 chmod a+r $${fix_dir}/syslimits.h; \
2944 done; \
53c7ffe7 2945 fi
d9835ae8 2946 $(STAMP) stmp-fixinc
544eb21e 2947#\f
8294b6fe
OH
2948
2949# Install with the gcc headers files, not the fixed include files, which we
2950# are typically not allowed to distribute. The general idea is to:
2951# - Get to "install" with a bare set of internal headers, not the
2952# fixed system ones,
2953# - Prevent rebuilds of what normally depends on the headers, which is
2954# useless for installation purposes and would rely on improper headers.
2955# - Restore as much of the original state as possible.
2956
2957.PHONY: install-no-fixedincludes
2958
2959install-no-fixedincludes:
2960 # Stash the current set of headers away, save stamps we're going to
2961 # alter explicitly, and arrange for fixincludes not to run next time
2962 # we trigger a headers rebuild.
2963 -rm -rf tmp-include
2964 -mv include tmp-include 2>/dev/null
2965 -mv include-fixed tmp-include-fixed 2>/dev/null
2966 -mv stmp-int-hdrs tmp-stmp-int-hdrs 2>/dev/null
2967 -mv stmp-fixinc tmp-stmp-fixinc 2>/dev/null
2968 -mkdir include
2969 -cp -p $(srcdir)/gsyslimits.h include/syslimits.h
2970 -touch stmp-fixinc
2971
2972 # Rebuild our internal headers, restore the original stamps so that
2973 # "install" doesn't trigger pointless rebuilds because of that update,
2974 # then do install
2975 $(MAKE) $(FLAGS_TO_PASS) stmp-int-hdrs
2976 -mv tmp-stmp-int-hdrs stmp-int-hdrs 2>/dev/null
2977 -mv tmp-stmp-fixinc stmp-fixinc 2>/dev/null
2978 $(MAKE) $(FLAGS_TO_PASS) install
2979
2980 # Restore the original set of maybe-fixed headers
2981 -rm -rf include; mv tmp-include include 2>/dev/null
2982 -rm -rf include-fixed; mv tmp-include-fixed include-fixed 2>/dev/null
2983
79d8453e
RS
2984# Remake the info files.
2985
fda9c731 2986doc: $(BUILD_INFO) $(GENERATED_MANPAGES)
a541f69d
KC
2987
2988INFOFILES = doc/cpp.info doc/gcc.info doc/gccint.info \
2989 doc/gccinstall.info doc/cppinternals.info
2990
2991info: $(INFOFILES) lang.info @GENINSRC@ srcinfo lang.srcinfo
2992
2993srcinfo: $(INFOFILES)
2994 -cp -p $^ $(srcdir)/doc
65455962 2995
a1286ef5
ZW
2996TEXI_CPP_FILES = cpp.texi fdl.texi cppenv.texi cppopts.texi \
2997 gcc-common.texi gcc-vers.texi
65455962 2998
a1286ef5
ZW
2999TEXI_GCC_FILES = gcc.texi gcc-common.texi gcc-vers.texi frontends.texi \
3000 standards.texi invoke.texi extend.texi md.texi objc.texi \
3001 gcov.texi trouble.texi bugreport.texi service.texi \
7f9766e4 3002 contribute.texi compat.texi funding.texi gnu.texi gpl_v3.texi \
04d170d2 3003 fdl.texi contrib.texi cppenv.texi cppopts.texi avr-mmcu.texi \
3f155273 3004 implement-c.texi implement-cxx.texi gcov-tool.texi
65455962 3005
c18a9bc4
JR
3006# we explicitly use $(srcdir)/doc/tm.texi here to avoid confusion with
3007# the generated tm.texi; the latter might have a more recent timestamp,
3008# but we don't want to rebuild the info files unless the contents of
3009# the *.texi files have changed.
a1286ef5
ZW
3010TEXI_GCCINT_FILES = gccint.texi gcc-common.texi gcc-vers.texi \
3011 contribute.texi makefile.texi configterms.texi options.texi \
c18a9bc4
JR
3012 portability.texi interface.texi passes.texi rtl.texi md.texi \
3013 $(srcdir)/doc/tm.texi hostconfig.texi fragments.texi \
a1286ef5 3014 configfiles.texi collect2.texi headerdirs.texi funding.texi \
7f9766e4 3015 gnu.texi gpl_v3.texi fdl.texi contrib.texi languages.texi \
01e0ef5a 3016 sourcebuild.texi gty.texi libgcc.texi cfg.texi tree-ssa.texi \
3d2cf79f
RB
3017 loop.texi generic.texi gimple.texi plugins.texi optinfo.texi \
3018 match-and-simplify.texi
65455962 3019
e5fc6da8 3020TEXI_GCCINSTALL_FILES = install.texi install-old.texi fdl.texi \
3b4ed48b 3021 gcc-common.texi gcc-vers.texi
65455962 3022
a1286ef5
ZW
3023TEXI_CPPINT_FILES = cppinternals.texi gcc-common.texi gcc-vers.texi
3024
3025# gcc-vers.texi is generated from the version files.
3026gcc-vers.texi: $(BASEVER) $(DEVPHASE)
3027 (echo "@set version-GCC $(BASEVER_c)"; \
3028 if [ "$(DEVPHASE_c)" = "experimental" ]; \
3029 then echo "@set DEVELOPMENT"; \
3030 else echo "@clear DEVELOPMENT"; \
3031 fi) > $@T
a0e527e3 3032 $(build_file_translate) echo @set srcdir $(abs_srcdir) >> $@T
2f41c1d6
PB
3033 if [ -n "$(PKGVERSION)" ]; then \
3034 echo "@set VERSION_PACKAGE $(PKGVERSION)" >> $@T; \
3035 fi
3036 echo "@set BUGURL $(BUGURL_TEXI)" >> $@T; \
a1286ef5
ZW
3037 mv -f $@T $@
3038
65455962 3039
b5422ad7 3040# The *.1, *.7, *.info, *.dvi, and *.pdf files are being generated from implicit
cb7c0b5a 3041# patterns. To use them, put each of the specific targets with its
65455962 3042# specific dependencies but no build commands.
e2500fed 3043
a541f69d
KC
3044doc/cpp.info: $(TEXI_CPP_FILES)
3045doc/gcc.info: $(TEXI_GCC_FILES)
3046doc/gccint.info: $(TEXI_GCCINT_FILES)
3047doc/cppinternals.info: $(TEXI_CPPINT_FILES)
d7f8491b 3048
a541f69d 3049doc/%.info: %.texi
1f9b3087 3050 if [ x$(BUILD_INFO) = xinfo ]; then \
ad3a7ce3
CD
3051 $(MAKEINFO) $(MAKEINFOFLAGS) -I . -I $(gcc_docdir) \
3052 -I $(gcc_docdir)/include -o $@ $<; \
1f9b3087 3053 fi
23de1fbf 3054
63069342 3055# Duplicate entry to handle renaming of gccinstall.info
a541f69d 3056doc/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
63069342 3057 if [ x$(BUILD_INFO) = xinfo ]; then \
ad3a7ce3
CD
3058 $(MAKEINFO) $(MAKEINFOFLAGS) -I $(gcc_docdir) \
3059 -I $(gcc_docdir)/include -o $@ $<; \
63069342
KC
3060 fi
3061
a541f69d
KC
3062doc/cpp.dvi: $(TEXI_CPP_FILES)
3063doc/gcc.dvi: $(TEXI_GCC_FILES)
3064doc/gccint.dvi: $(TEXI_GCCINT_FILES)
3065doc/cppinternals.dvi: $(TEXI_CPPINT_FILES)
63069342 3066
b5422ad7
BM
3067doc/cpp.pdf: $(TEXI_CPP_FILES)
3068doc/gcc.pdf: $(TEXI_GCC_FILES)
3069doc/gccint.pdf: $(TEXI_GCCINT_FILES)
3070doc/cppinternals.pdf: $(TEXI_CPPINT_FILES)
3071
22482f74
MS
3072$(build_htmldir)/cpp/index.html: $(TEXI_CPP_FILES)
3073$(build_htmldir)/gcc/index.html: $(TEXI_GCC_FILES)
3074$(build_htmldir)/gccint/index.html: $(TEXI_GCCINT_FILES)
3075$(build_htmldir)/cppinternals/index.html: $(TEXI_CPPINT_FILES)
9d65c5cb 3076
a541f69d 3077dvi:: doc/gcc.dvi doc/gccint.dvi doc/gccinstall.dvi doc/cpp.dvi \
dedfa466 3078 doc/cppinternals.dvi lang.dvi
8dbda01e 3079
a541f69d 3080doc/%.dvi: %.texi
a1286ef5 3081 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
95e30ecc 3082
63069342 3083# Duplicate entry to handle renaming of gccinstall.dvi
a541f69d 3084doc/gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
a1286ef5 3085 $(TEXI2DVI) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
d7f8491b 3086
bcc3d150
BM
3087PDFFILES = doc/gcc.pdf doc/gccint.pdf doc/gccinstall.pdf doc/cpp.pdf \
3088 doc/cppinternals.pdf
3089
3090pdf:: $(PDFFILES) lang.pdf
b5422ad7
BM
3091
3092doc/%.pdf: %.texi
3093 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3094
3095# Duplicate entry to handle renaming of gccinstall.pdf
3096doc/gccinstall.pdf: $(TEXI_GCCINSTALL_FILES)
3097 $(TEXI2PDF) -I . -I $(abs_docdir) -I $(abs_docdir)/include -o $@ $<
3098
9288b845
CD
3099# List the directories or single hmtl files which are installed by
3100# install-html. The lang.html file triggers language fragments to build
55bcd32b 3101# html documentation.
9288b845
CD
3102HTMLS_INSTALL=$(build_htmldir)/cpp $(build_htmldir)/gcc \
3103 $(build_htmldir)/gccinstall $(build_htmldir)/gccint \
3104 $(build_htmldir)/cppinternals
3105
3106# List the html file targets.
3107HTMLS_BUILD=$(build_htmldir)/cpp/index.html $(build_htmldir)/gcc/index.html \
22482f74
MS
3108 $(build_htmldir)/gccinstall/index.html $(build_htmldir)/gccint/index.html \
3109 $(build_htmldir)/cppinternals/index.html lang.html
9d65c5cb 3110
9288b845 3111html:: $(HTMLS_BUILD)
22482f74
MS
3112
3113$(build_htmldir)/%/index.html: %.texi
9d65c5cb
MS
3114 $(mkinstalldirs) $(@D)
3115 rm -f $(@D)/*
3116 $(TEXI2HTML) -I $(abs_docdir) -I $(abs_docdir)/include -o $(@D) $<
3117
3118# Duplicate entry to handle renaming of gccinstall
22482f74 3119$(build_htmldir)/gccinstall/index.html: $(TEXI_GCCINSTALL_FILES)
9d65c5cb
MS
3120 $(mkinstalldirs) $(@D)
3121 echo rm -f $(@D)/*
a1e6d1ce
MLI
3122 SOURCEDIR=$(abs_docdir) \
3123 DESTDIR=$(@D) \
3124 $(SHELL) $(srcdir)/doc/install.texi2html
9d65c5cb 3125
c77556a5
RX
3126MANFILES = doc/gcov.1 doc/cpp.1 doc/gcc.1 doc/gfdl.7 doc/gpl.7 \
3127 doc/fsf-funding.7 doc/gcov-tool.1
a541f69d 3128
5340bbea 3129generated-manpages: man
ce5c1cf3
KC
3130
3131man: $(MANFILES) lang.man @GENINSRC@ srcman lang.srcman
a541f69d
KC
3132
3133srcman: $(MANFILES)
3134 -cp -p $^ $(srcdir)/doc
c01a508e 3135
a541f69d 3136doc/%.1: %.pod
6280c439 3137 $(STAMP) $@
65455962 3138 -($(POD2MAN) --section=1 $< > $(@).T$$$$ && \
6280c439
MM
3139 mv -f $(@).T$$$$ $@) || \
3140 (rm -f $(@).T$$$$ && exit 1)
6280c439 3141
a541f69d 3142doc/%.7: %.pod
6280c439 3143 $(STAMP) $@
65455962 3144 -($(POD2MAN) --section=7 $< > $(@).T$$$$ && \
6280c439
MM
3145 mv -f $(@).T$$$$ $@) || \
3146 (rm -f $(@).T$$$$ && exit 1)
65455962
KC
3147
3148%.pod: %.texi
3149 $(STAMP) $@
2f41c1d6 3150 -$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" $< > $@
65455962 3151
27f40df4 3152.INTERMEDIATE: cpp.pod gcc.pod gfdl.pod fsf-funding.pod gpl.pod
65455962
KC
3153cpp.pod: cpp.texi cppenv.texi cppopts.texi
3154
3155# These next rules exist because the output name is not the same as
cb7c0b5a 3156# the input name, so our implicit %.pod rule will not work.
65455962 3157
4db19cc7 3158gcc.pod: invoke.texi cppenv.texi cppopts.texi gcc-vers.texi
65455962
KC
3159 $(STAMP) $@
3160 -$(TEXI2POD) $< > $@
3161gfdl.pod: fdl.texi
3162 $(STAMP) $@
3163 -$(TEXI2POD) $< > $@
3164fsf-funding.pod: funding.texi
3165 $(STAMP) $@
3166 -$(TEXI2POD) $< > $@
7f9766e4
JM
3167gpl.pod: gpl_v3.texi
3168 $(STAMP) $@
3169 -$(TEXI2POD) $< > $@
77bd67cb 3170
544eb21e 3171#\f
79d8453e
RS
3172# Deletion of files made during compilation.
3173# There are four levels of this:
f1908d70 3174# `mostlyclean', `clean', `distclean' and `maintainer-clean'.
79d8453e 3175# `mostlyclean' is useful while working on a particular type of machine.
2e494f70 3176# It deletes most, but not all, of the files made by compilation.
79d8453e 3177# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2e494f70 3178# `clean' deletes everything made by running `make all'.
47547081 3179# `distclean' also deletes the files made by config.
f1908d70 3180# `maintainer-clean' also deletes everything that could be regenerated
63d9b81c
RK
3181# automatically, except for `configure'.
3182# We remove as much from the language subdirectories as we can
013a2ee0 3183# (less duplicated code).
79d8453e 3184
6eb95e99 3185mostlyclean: lang.mostlyclean
8b1f719a 3186 -rm -f $(MOSTLYCLEANFILES)
9c0fed64 3187 -rm -f *$(objext) c-family/*$(objext)
22aa533e 3188 -rm -f *$(coverageexts)
3b620440
KC
3189# Delete build programs
3190 -rm -f build/*
26be549a 3191 -rm -f mddeps.mk
e5e809f4 3192# Delete other built files.
57dfdff0 3193 -rm -f specs.h options.c options.h options-save.c
e5e809f4
JL
3194# Delete the stamp and temporary files.
3195 -rm -f s-* tmp-* stamp-* stmp-*
013a2ee0 3196 -rm -f */stamp-* */tmp-*
2e494f70 3197# Delete debugging dump files.
61098249 3198 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
2e494f70 3199# Delete some files made during installation.
52c0e446 3200 -rm -f specs $(SPECS)
b548dffb 3201 -rm -f collect collect2 mips-tfile mips-tdump
2e494f70
RS
3202# Delete unwanted output files from TeX.
3203 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
013a2ee0 3204 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
47547081
RS
3205# Delete sorted indices we don't actually use.
3206 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2e494f70 3207# Delete core dumps.
013a2ee0 3208 -rm -f core */core
11a67599
ZW
3209# Delete file generated for gengtype
3210 -rm -f gtyp-input.list
92724e1d 3211# Delete files generated by gengtype
8ac9d31f
TJ
3212 -rm -f gtype-*
3213 -rm -f gt-*
92724e1d 3214 -rm -f gtype.state
3fd30b88
GK
3215# Delete genchecksum outputs
3216 -rm -f *-checksum.c
427b248d
JM
3217# Delete lock-and-run bits
3218 -rm -rf linkfe.lck lock-stamp.*
79d8453e 3219
47547081
RS
3220# Delete all files made by compilation
3221# that don't exist in the distribution.
6eb95e99 3222clean: mostlyclean lang.clean
23af32e6 3223 -rm -f libgcc.a libgcc_eh.a libgcov.a
3b415018 3224 -rm -f libgcc_s*
443728bb 3225 -rm -f libunwind*
852b75ed 3226 -rm -f config.h tconfig.h bconfig.h tm_p.h tm.h
776dc15d 3227 -rm -f options.c options.h optionlist
11642c3a 3228 -rm -f cs-*
a541f69d 3229 -rm -f doc/*.dvi
b5422ad7 3230 -rm -f doc/*.pdf
14da6073
JM
3231# Delete the include directories.
3232 -rm -rf include include-fixed
75ed5d8b 3233# Delete files used by the "multilib" facility (including libgcc subdirs).
f6cdc7ea 3234 -rm -f multilib.h tmpmultilib*
75ed5d8b
DE
3235 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
3236 rm -rf $(MULTILIB_DIRNAMES); \
3237 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
3238 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
3239 fi ; fi
79d8453e 3240
47547081
RS
3241# Delete all files that users would normally create
3242# while building and installing GCC.
6eb95e99 3243distclean: clean lang.distclean
11642c3a 3244 -rm -f auto-host.h auto-build.h
d1209685 3245 -rm -f cstamp-h
63d9b81c 3246 -rm -f config.status config.run config.cache config.bak
d232dfa4 3247 -rm -f Make-lang Make-hooks Make-host Make-target
ad854f24 3248 -rm -f Makefile *.oaux
f24af81b 3249 -rm -f gthr-default.h
27bf414c 3250 -rm -f TAGS */TAGS
338023d4 3251 -rm -f *.asm
a051ad3a 3252 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
ad854f24 3253 -rm -f testsuite/*.log testsuite/*.sum
1bb1f121 3254 -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c
4977bab6 3255 -cd testsuite && rm -f *.out *.gcov *$(coverageexts)
f362c762 3256 -rm -rf ${QMTEST_DIR} stamp-qmtest
06f0b04c 3257 -rm -f cxxmain.c
fda9c731 3258 -rm -f .gdbinit configargs.h
c01a508e 3259 -rm -f gcov.pod
ad854f24
ZW
3260# Delete po/*.gmo only if we are not building in the source directory.
3261 -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
4adbd5dd 3262 -rmdir ada cp f java objc intl po testsuite plugin 2>/dev/null
2e494f70 3263
63d9b81c 3264# Get rid of every file that's generated from some other file, except for `configure'.
79d8453e 3265# Most of these files ARE PRESENT in the GCC distribution.
63d9b81c
RK
3266maintainer-clean:
3267 @echo 'This command is intended for maintainers to use; it'
3268 @echo 'deletes files that may need special tools to rebuild.'
6eb95e99 3269 $(MAKE) lang.maintainer-clean distclean
17db6582
JM
3270 -rm -f cpp.??s cpp.*aux
3271 -rm -f gcc.??s gcc.*aux
b5422ad7 3272 -rm -f $(gcc_docdir)/*.info $(gcc_docdir)/*.1 $(gcc_docdir)/*.7 $(gcc_docdir)/*.dvi $(gcc_docdir)/*.pdf
544eb21e 3273#\f
455c8f48 3274# Entry points `install', `install-strip', and `uninstall'.
2e494f70 3275# Also use `install-collect2' to install collect2 when the config files don't.
79d8453e 3276
ba1811f1 3277# Copy the compiler files into directories where they will be run.
aab26e16
RK
3278# Install the driver last so that the window when things are
3279# broken is small.
fa958513 3280install: install-common $(INSTALL_HEADERS) \
6eb95e99 3281 install-cpp install-man install-info install-@POSUB@ \
b6b89215 3282 install-driver install-lto-wrapper install-gcc-ar
79d8453e 3283
bf016de8
RAE
3284ifeq ($(enable_plugin),yes)
3285install: install-plugin
3286endif
3287
455c8f48
RW
3288install-strip: override INSTALL_PROGRAM = $(INSTALL_STRIP_PROGRAM)
3289ifneq ($(STRIP),)
3290install-strip: STRIPPROG = $(STRIP)
3291export STRIPPROG
3292endif
3293install-strip: install
3294
587a4ba6 3295# Handle cpp installation.
47b528da 3296install-cpp: installdirs cpp$(exeext)
85c64bbe
BS
3297 -if test "$(enable_as_accelerator)" != "yes" ; then \
3298 rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
3299 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
3300 if [ x$(cpp_install_dir) != x ]; then \
3301 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3302 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3303 else true; fi; \
3304 fi
587a4ba6 3305
69cbb85a 3306# Create the installation directories.
a8ee6e2d 3307# $(libdir)/gcc/include isn't currently searched by cpp.
69cbb85a 3308installdirs:
947c6b00
NN
3309 $(mkinstalldirs) $(DESTDIR)$(libsubdir)
3310 $(mkinstalldirs) $(DESTDIR)$(libexecsubdir)
3311 $(mkinstalldirs) $(DESTDIR)$(bindir)
3312 $(mkinstalldirs) $(DESTDIR)$(includedir)
3313 $(mkinstalldirs) $(DESTDIR)$(infodir)
947c6b00
NN
3314 $(mkinstalldirs) $(DESTDIR)$(man1dir)
3315 $(mkinstalldirs) $(DESTDIR)$(man7dir)
79d8453e 3316
b71a6782
TV
3317params.list: s-params.list; @true
3318s-params.list: $(srcdir)/params-list.h $(srcdir)/params.def
3319 $(CPP) $(srcdir)/params-list.h | sed 's/^#.*//;/^$$/d' > tmp-params.list
3320 $(SHELL) $(srcdir)/../move-if-change tmp-params.list params.list
3321 $(STAMP) s-params.list
3322
bf016de8 3323PLUGIN_HEADERS = $(TREE_H) $(CONFIG_H) $(SYSTEM_H) coretypes.h $(TM_H) \
9f25a338 3324 toplev.h $(DIAGNOSTIC_CORE_H) $(BASIC_BLOCK_H) $(HASH_TABLE_H) \
2fb9a547
AM
3325 tree-ssa-alias.h $(INTERNAL_FN_H) gimple-fold.h tree-eh.h gimple-expr.h \
3326 gimple.h is-a.h $(TREE_PASS_H) $(GCC_PLUGIN_H) \
ee666c25 3327 $(GGC_H) $(TREE_DUMP_H) $(PRETTY_PRINT_H) $(OPTS_H) $(PARAMS_H) \
cac1b0ee
BS
3328 $(tm_file_list) $(tm_include_list) $(tm_p_file_list) $(tm_p_include_list) \
3329 $(host_xm_file_list) $(host_xm_include_list) $(xm_include_list) \
f895fc2a 3330 intl.h $(PLUGIN_VERSION_H) $(DIAGNOSTIC_H) ${C_TREE_H} \
61d3ce20 3331 $(C_COMMON_H) c-family/c-objc.h $(C_PRETTY_PRINT_H) \
7a300452 3332 tree-iterator.h $(PLUGIN_H) $(TREE_SSA_H) langhooks.h incpath.h debug.h \
3b06d379 3333 $(EXCEPT_H) tree-ssa-sccvn.h real.h output.h $(IPA_UTILS_H) \
33887751 3334 $(C_PRAGMA_H) $(CPPLIB_H) $(FUNCTION_H) \
d78182cc
TV
3335 cppdefault.h flags.h $(MD5_H) params.def params.h params-enum.h \
3336 prefix.h tree-inline.h $(GIMPLE_PRETTY_PRINT_H) realmpfr.h \
e60661f0 3337 $(IPA_PROP_H) $(TARGET_H) $(RTL_H) $(TM_P_H) $(CFGLOOP_H) $(EMIT_RTL_H) \
1aa26aac 3338 version.h stringpool.h gimplify.h gimple-iterator.h gimple-ssa.h \
5c1a2e63
RS
3339 fold-const.h fold-const-call.h tree-cfg.h tree-into-ssa.h tree-ssanames.h \
3340 print-tree.h varasm.h context.h tree-phinodes.h stor-layout.h \
3341 ssa-iterators.h $(RESOURCE_H) tree-cfgcleanup.h attribs.h calls.h \
3342 cfgexpand.h diagnostic-color.h gcc-symtab.h gimple-builder.h gimple-low.h \
4f0ddb6f
JJ
3343 gimple-walk.h gimplify-me.h pass_manager.h print-rtl.h stmt.h \
3344 tree-dfa.h tree-hasher.h tree-nested.h tree-object-size.h tree-outof-ssa.h \
3345 tree-parloops.h tree-ssa-address.h tree-ssa-coalesce.h tree-ssa-dom.h \
3346 tree-ssa-loop.h tree-ssa-loop-ivopts.h tree-ssa-loop-manip.h \
3347 tree-ssa-loop-niter.h tree-ssa-ter.h tree-ssa-threadedge.h \
b3ba5f84 3348 tree-ssa-threadupdate.h inchash.h wide-int.h signop.h hash-map.h \
6fb5f2f5 3349 hash-set.h dominance.h cfg.h cfgrtl.h cfganal.h cfgbuild.h cfgcleanup.h \
26fb38a1
DM
3350 lcm.h cfgloopmanip.h builtins.def chkp-builtins.def pass-instances.def \
3351 params.list
bf016de8 3352
090fa0ab
GF
3353# generate the 'build fragment' b-header-vars
3354s-header-vars: Makefile
3355 rm -f tmp-header-vars
af0a7a92
OH
3356# The first sed gets the list "header variables" as the list variables
3357# assigned in Makefile and having _H at the end of the name. "sed -n" proved
3358# more portable than a trailing "-e d" to filter out the uninteresting lines,
3359# in particular on ia64-hpux where "s/.../p" only prints if -n was requested
3360# as well.
3361 $(foreach header_var,$(shell sed < Makefile -n -e 's/^\([A-Z0-9_]*_H\)[ ]*=.*/\1/p'),echo $(header_var)=$(shell echo $($(header_var):$(srcdir)/%=.../%) | sed -e 's~\.\.\./config/~config/~' -e 's~\.\.\..*/~~') >> tmp-header-vars;) \
090fa0ab
GF
3362 $(SHELL) $(srcdir)/../move-if-change tmp-header-vars b-header-vars
3363 $(STAMP) s-header-vars
3364
f142b5bc
RG
3365# Install gengtype
3366install-gengtype: installdirs gengtype$(exeext) gtype.state
3367 $(mkinstalldirs) $(DESTDIR)$(plugin_resourcesdir)
3368 $(INSTALL_DATA) gtype.state $(DESTDIR)$(plugin_resourcesdir)/gtype.state
3369 $(mkinstalldirs) $(DESTDIR)$(plugin_bindir)
3370 $(INSTALL_PROGRAM) gengtype$(exeext) $(DESTDIR)$(plugin_bindir)/gengtype$(exeext)
3371
bf016de8 3372# Install the headers needed to build a plugin.
f142b5bc 3373install-plugin: installdirs lang.install-plugin s-header-vars install-gengtype
1baae426
RG
3374# We keep the directory structure for files in config or c-family and .def
3375# files. All other files are flattened to a single directory.
bf016de8 3376 $(mkinstalldirs) $(DESTDIR)$(plugin_includedir)
b626318e 3377 headers=`echo $(PLUGIN_HEADERS) $$(cd $(srcdir); echo *.h *.def) | tr ' ' '\012' | sort -u`; \
3b3e44eb 3378 srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`; \
bf016de8
RAE
3379 for file in $$headers; do \
3380 if [ -f $$file ] ; then \
3381 path=$$file; \
3382 elif [ -f $(srcdir)/$$file ]; then \
3383 path=$(srcdir)/$$file; \
3384 else continue; \
3385 fi; \
3386 case $$path in \
1baae426 3387 "$(srcdir)"/config/* | "$(srcdir)"/c-family/* | "$(srcdir)"/*.def ) \
9419a9fd 3388 base=`echo "$$path" | sed -e "s|$$srcdirstrip/||"`;; \
bf016de8
RAE
3389 *) base=`basename $$path` ;; \
3390 esac; \
3391 dest=$(plugin_includedir)/$$base; \
86e3c83a 3392 echo $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
bf016de8 3393 dir=`dirname $$dest`; \
86e3c83a
MK
3394 $(mkinstalldirs) $(DESTDIR)$$dir; \
3395 $(INSTALL_DATA) $$path $(DESTDIR)$$dest; \
bf016de8 3396 done
090fa0ab 3397 $(INSTALL_DATA) b-header-vars $(DESTDIR)$(plugin_includedir)/b-header-vars
bf016de8 3398
79d8453e 3399# Install the compiler executables built during cross compilation.
fa958513 3400install-common: native lang.install-common installdirs
79d8453e
RS
3401 for file in $(COMPILERS); do \
3402 if [ -f $$file ] ; then \
a8ee6e2d
GK
3403 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
3404 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
79d8453e
RS
3405 else true; \
3406 fi; \
3407 done
d82c57a8 3408 for file in $(EXTRA_PROGRAMS) $(COLLECT2) ..; do \
79d8453e 3409 if [ x"$$file" != x.. ]; then \
a8ee6e2d
GK
3410 rm -f $(DESTDIR)$(libexecsubdir)/$$file; \
3411 $(INSTALL_PROGRAM) $$file $(DESTDIR)$(libexecsubdir)/$$file; \
79d8453e
RS
3412 else true; fi; \
3413 done
e90f1b9d
MM
3414# We no longer install the specs file because its presence makes the
3415# driver slower, and because people who need it can recreate it by
3416# using -dumpspecs. We remove any old version because it would
3417# otherwise override the specs built into the driver.
8ff61ea7 3418 rm -f $(DESTDIR)$(libsubdir)/specs
ca363bb6 3419# Install gcov if it was compiled.
85c64bbe
BS
3420 -if test "$(enable_as_accelerator)" != "yes" ; then \
3421 if [ -f gcov$(exeext) ]; \
3422 then \
3743ea05 3423 rm -f $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
90961eff 3424 $(INSTALL_PROGRAM) gcov$(exeext) $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
85c64bbe 3425 fi; \
59a64126 3426 fi
c77556a5 3427# Install gcov-tool if it was compiled.
85c64bbe
BS
3428 -if test "$(enable_as_accelerator)" != "yes" ; then \
3429 if [ -f gcov-tool$(exeext) ]; \
3430 then \
c77556a5
RX
3431 rm -f $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \
3432 $(INSTALL_PROGRAM) \
3433 gcov-tool$(exeext) $(DESTDIR)$(bindir)/$(GCOV_TOOL_INSTALL_NAME)$(exeext); \
85c64bbe 3434 fi; \
c77556a5 3435 fi
aab26e16 3436
5340bbea 3437# Install the driver program as $(target_noncanonical)-gcc,
90ae7019 3438# $(target_noncanonical)-gcc-$(version), and also as gcc if native.
e658449e 3439install-driver: installdirs xgcc$(exeext)
439020ec
KC
3440 -rm -f $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3441 -$(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
85c64bbe
BS
3442 -if test "$(enable_as_accelerator)" != "yes" ; then \
3443 if [ "$(GCC_INSTALL_NAME)" != "$(target_noncanonical)-gcc-$(version)" ]; then \
3444 rm -f $(DESTDIR)$(bindir)/$(FULL_DRIVER_NAME); \
3445 ( cd $(DESTDIR)$(bindir) && \
3446 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(FULL_DRIVER_NAME) ); \
3447 fi; \
3448 if [ ! -f gcc-cross$(exeext) ] \
3449 && [ "$(GCC_INSTALL_NAME)" != "$(GCC_TARGET_INSTALL_NAME)" ]; then \
3450 rm -f $(DESTDIR)$(bindir)/$(target_noncanonical)-gcc-tmp$(exeext); \
3451 ( cd $(DESTDIR)$(bindir) && \
3452 $(LN) $(GCC_INSTALL_NAME)$(exeext) $(target_noncanonical)-gcc-tmp$(exeext) && \
3453 mv -f $(target_noncanonical)-gcc-tmp$(exeext) $(GCC_TARGET_INSTALL_NAME)$(exeext) ); \
3454 fi; \
79d8453e 3455 fi
79d8453e 3456
0b2fbcb2 3457# Install the info files.
feb9ea1a 3458# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
ee5b121e 3459# to do the install.
97ae108d
MM
3460install-info:: doc installdirs \
3461 $(DESTDIR)$(infodir)/cpp.info \
3462 $(DESTDIR)$(infodir)/gcc.info \
3463 $(DESTDIR)$(infodir)/cppinternals.info \
ee312cd0 3464 $(DESTDIR)$(infodir)/gccinstall.info \
dedfa466
PB
3465 $(DESTDIR)$(infodir)/gccint.info \
3466 lang.install-info
97ae108d 3467
a541f69d 3468$(DESTDIR)$(infodir)/%.info: doc/%.info installdirs
97ae108d
MM
3469 rm -f $@
3470 if [ -f $< ]; then \
3471 for f in $(<)*; do \
17db6582 3472 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
90961eff 3473 $(INSTALL_DATA) $$f $(DESTDIR)$(infodir)/$$realfile; \
3d56d025 3474 chmod a-x $(DESTDIR)$(infodir)/$$realfile; \
17db6582
JM
3475 done; \
3476 else true; fi
ee5b121e 3477 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
a89f5df3
JM
3478 if [ -f $@ ]; then \
3479 install-info --dir-file=$(DESTDIR)$(infodir)/dir $@; \
f8c86b58 3480 else true; fi; \
265ce5bb 3481 else true; fi;
0b2fbcb2 3482
bcc3d150
BM
3483pdf__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
3484
3485install-pdf: $(PDFFILES) lang.install-pdf
3486 @$(NORMAL_INSTALL)
3487 test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
3488 @list='$(PDFFILES)'; for p in $$list; do \
3489 if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
3490 f=$(pdf__strip_dir) \
3491 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
3492 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
3493 done
3494
9288b845 3495html__strip_dir = `echo $$p | sed -e 's|^.*/||'`;
d3dc619d 3496
55bcd32b 3497install-html: $(HTMLS_BUILD) lang.install-html
9288b845 3498 @$(NORMAL_INSTALL)
ab7efd91 3499 test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
9288b845
CD
3500 @list='$(HTMLS_INSTALL)'; for p in $$list; do \
3501 if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
3502 f=$(html__strip_dir) \
3503 if test -d "$$d$$p"; then \
ab7efd91
CD
3504 echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
3505 $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
9288b845
CD
3506 echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
3507 $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
3508 else \
3509 echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
3510 $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
3511 fi; \
3512 done
3513
79d8453e 3514# Install the man pages.
7bfb5ccc 3515install-man: lang.install-man \
a541f69d 3516 $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext) \
52ccb3d2
GK
3517 $(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext) \
3518 $(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext) \
a541f69d
KC
3519 $(DESTDIR)$(man7dir)/fsf-funding$(man7ext) \
3520 $(DESTDIR)$(man7dir)/gfdl$(man7ext) \
3521 $(DESTDIR)$(man7dir)/gpl$(man7ext)
3522
7bfb5ccc 3523$(DESTDIR)$(man7dir)/%$(man7ext): doc/%.7 installdirs
a541f69d
KC
3524 -rm -f $@
3525 -$(INSTALL_DATA) $< $@
3526 -chmod a-x $@
3527
7bfb5ccc 3528$(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext): doc/gcc.1 installdirs
a541f69d 3529 -rm -f $@
5340bbea 3530 -$(INSTALL_DATA) $< $@
a541f69d
KC
3531 -chmod a-x $@
3532
7bfb5ccc 3533$(DESTDIR)$(man1dir)/$(CPP_INSTALL_NAME)$(man1ext): doc/cpp.1 installdirs
52ccb3d2 3534 -rm -f $@
5340bbea 3535 -$(INSTALL_DATA) $< $@
52ccb3d2
GK
3536 -chmod a-x $@
3537
7bfb5ccc 3538$(DESTDIR)$(man1dir)/$(GCOV_INSTALL_NAME)$(man1ext): doc/gcov.1 installdirs
a541f69d 3539 -rm -f $@
5340bbea 3540 -$(INSTALL_DATA) $< $@
a541f69d 3541 -chmod a-x $@
79d8453e 3542
c77556a5
RX
3543$(DESTDIR)$(man1dir)/$(GCOV_TOOL_INSTALL_NAME)$(man1ext): doc/gcov-tool.1 installdirs
3544 -rm -f $@
3545 -$(INSTALL_DATA) $< $@
3546 -chmod a-x $@
3547
ba1811f1 3548# Install all the header files built in the include subdirectory.
fecd6201 3549install-headers: $(INSTALL_HEADERS_DIR)
ba1811f1
ILT
3550# Fix symlinks to absolute paths in the installed include directory to
3551# point to the installed directory, not the build directory.
ac64120e 3552# Don't need to use LN_S here since we really do need ln -s and no substitutes.
f686ec05 3553 -files=`cd $(DESTDIR)$(libsubdir)/include-fixed; find . -type l -print 2>/dev/null`; \
ba1811f1 3554 if [ $$? -eq 0 ]; then \
f686ec05 3555 dir=`cd include-fixed; ${PWD_COMMAND}`; \
ba1811f1 3556 for i in $$files; do \
f686ec05 3557 dest=`ls -ld $(DESTDIR)$(libsubdir)/include-fixed/$$i | sed -n 's/.*-> //p'`; \
ba1811f1 3558 if expr "$$dest" : "$$dir.*" > /dev/null; then \
f686ec05
JM
3559 rm -f $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
3560 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(DESTDIR)$(libsubdir)/include-fixed/$$i; \
ba1811f1
ILT
3561 fi; \
3562 done; \
3563 fi
79d8453e 3564
ba1811f1 3565# Create or recreate the gcc private include file directory.
69cbb85a 3566install-include-dir: installdirs
d3dc619d 3567 $(mkinstalldirs) $(DESTDIR)$(libsubdir)/include
f686ec05 3568 -rm -rf $(DESTDIR)$(libsubdir)/include-fixed
f686ec05 3569 mkdir $(DESTDIR)$(libsubdir)/include-fixed
f686ec05 3570 -chmod a+rx $(DESTDIR)$(libsubdir)/include-fixed
ba1811f1 3571
f08dd1f8
ZW
3572# Create or recreate the install-tools include file directory.
3573itoolsdir = $(libexecsubdir)/install-tools
3574itoolsdatadir = $(libsubdir)/install-tools
3575install-itoolsdirs: installdirs
3576 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include
3577 $(mkinstalldirs) $(DESTDIR)$(itoolsdir)
3578
ba1811f1 3579# Install the include directory using tar.
52c0e446 3580install-headers-tar: stmp-int-hdrs install-include-dir
965c3f43
AO
3581# We use `pwd`/include instead of just include to problems with CDPATH
3582# Unless a full pathname is provided, some shells would print the new CWD,
3583# found in CDPATH, corrupting the output. We could just redirect the
3584# output of `cd', but some shells lose on redirection within `()'s
8c90b13a 3585 (cd `${PWD_COMMAND}`/include ; \
90961eff 3586 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include; tar xpf - )
f686ec05
JM
3587 (cd `${PWD_COMMAND}`/include-fixed ; \
3588 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
e6431ec5
RS
3589# /bin/sh on some systems returns the status of the first tar,
3590# and that can lose with GNU tar which always writes a full block.
3591# So use `exit 0' to ignore its exit status.
ba1811f1
ILT
3592
3593# Install the include directory using cpio.
52c0e446 3594install-headers-cpio: stmp-int-hdrs install-include-dir
965c3f43 3595# See discussion about the use of `pwd` above
8c90b13a 3596 cd `${PWD_COMMAND}`/include ; \
90961eff 3597 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include
f686ec05
JM
3598 cd `${PWD_COMMAND}`/include-fixed ; \
3599 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
79d8453e 3600
ff3aaf17 3601# Install the include directory using cp.
52c0e446 3602install-headers-cp: stmp-int-hdrs install-include-dir
90961eff 3603 cp -p -r include $(DESTDIR)$(libsubdir)
f686ec05 3604 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
ff3aaf17 3605
9fb03bd8
DJ
3606# Targets without dependencies, for use in prev-gcc during bootstrap.
3607real-install-headers-tar:
f686ec05
JM
3608 (cd `${PWD_COMMAND}`/include-fixed ; \
3609 tar -cf - .; exit 0) | (cd $(DESTDIR)$(libsubdir)/include-fixed; tar xpf - )
9fb03bd8
DJ
3610
3611real-install-headers-cpio:
f686ec05
JM
3612 cd `${PWD_COMMAND}`/include-fixed ; \
3613 find . -print | cpio -pdum $(DESTDIR)$(libsubdir)/include-fixed
9fb03bd8
DJ
3614
3615real-install-headers-cp:
f686ec05 3616 cp -p -r include-fixed $(DESTDIR)$(libsubdir)
9fb03bd8 3617
53c7ffe7 3618# Install supporting files for fixincludes to be run later.
52c0e446 3619install-mkheaders: stmp-int-hdrs install-itoolsdirs \
14da6073 3620 macro_list fixinc_list
53c7ffe7
GK
3621 $(INSTALL_DATA) $(srcdir)/gsyslimits.h \
3622 $(DESTDIR)$(itoolsdatadir)/gsyslimits.h
3623 $(INSTALL_DATA) macro_list $(DESTDIR)$(itoolsdatadir)/macro_list
14da6073
JM
3624 $(INSTALL_DATA) fixinc_list $(DESTDIR)$(itoolsdatadir)/fixinc_list
3625 set -e; for ml in `cat fixinc_list`; do \
3626 multi_dir=`echo $${ml} | sed -e 's/^[^;]*;//'`; \
3627 $(mkinstalldirs) $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}; \
3628 $(INSTALL_DATA) include-fixed$${multidir}/limits.h $(DESTDIR)$(itoolsdatadir)/include$${multi_dir}/limits.h; \
3629 done
3630 $(INSTALL_SCRIPT) $(srcdir)/../mkinstalldirs \
90961eff 3631 $(DESTDIR)$(itoolsdir)/mkinstalldirs ; \
14da6073
JM
3632 sysroot_headers_suffix='$${sysroot_headers_suffix}'; \
3633 echo 'SYSTEM_HEADER_DIR="'"$(SYSTEM_HEADER_DIR)"'"' \
a8ee6e2d 3634 > $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
e34a3d31 3635 echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
a8ee6e2d 3636 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
a8ee6e2d
GK
3637 echo 'STMP_FIXINC="$(STMP_FIXINC)"' \
3638 >> $(DESTDIR)$(itoolsdatadir)/mkheaders.conf
e34a3d31 3639
10da1131 3640# Use this target to install the program `collect2' under the name `collect2'.
69cbb85a 3641install-collect2: collect2 installdirs
a8ee6e2d 3642 $(INSTALL_PROGRAM) collect2$(exeext) $(DESTDIR)$(libexecsubdir)/collect2$(exeext)
2e494f70 3643# Install the driver program as $(libsubdir)/gcc for collect2.
a8ee6e2d 3644 $(INSTALL_PROGRAM) xgcc$(exeext) $(DESTDIR)$(libexecsubdir)/gcc$(exeext)
2e494f70 3645
d7f09764
DN
3646# Install lto-wrapper.
3647install-lto-wrapper: lto-wrapper$(exeext)
3648 $(INSTALL_PROGRAM) lto-wrapper$(exeext) $(DESTDIR)$(libexecsubdir)/lto-wrapper$(exeext)
7ac8318c 3649
d6baa446 3650install-gcc-ar: installdirs gcc-ar$(exeext) gcc-nm$(exeext) gcc-ranlib$(exeext)
85c64bbe
BS
3651 if test "$(enable_as_accelerator)" != "yes" ; then \
3652 for i in gcc-ar gcc-nm gcc-ranlib; do \
3653 install_name=`echo $$i|sed '$(program_transform_name)'` ;\
3654 target_install_name=$(target_noncanonical)-`echo $$i|sed '$(program_transform_name)'` ; \
3655 rm -f $(DESTDIR)$(bindir)/$$install_name$(exeext) ; \
3656 $(INSTALL_PROGRAM) $$i$(exeext) $(DESTDIR)$(bindir)/$$install_name$(exeext) ;\
3657 if test -f gcc-cross$(exeext); then \
3658 :; \
3659 else \
3660 rm -f $(DESTDIR)$(bindir)/$$target_install_name$(exeext); \
3661 ( cd $(DESTDIR)$(bindir) && \
3662 $(LN) $$install_name$(exeext) $$target_install_name$(exeext) ) ; \
3663 fi ; \
3664 done; \
3665 fi
b6b89215 3666
79d8453e 3667# Cancel installation by deleting the installed files.
6eb95e99 3668uninstall: lang.uninstall
90961eff 3669 -rm -rf $(DESTDIR)$(libsubdir)
a8ee6e2d 3670 -rm -rf $(DESTDIR)$(libexecsubdir)
90961eff 3671 -rm -rf $(DESTDIR)$(bindir)/$(GCC_INSTALL_NAME)$(exeext)
90961eff 3672 -rm -f $(DESTDIR)$(bindir)/$(CPP_INSTALL_NAME)$(exeext)
1e730c5c 3673 -if [ x$(cpp_install_dir) != x ]; then \
90961eff 3674 rm -f $(DESTDIR)$(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
1e730c5c 3675 else true; fi
90961eff
AJ
3676 -rm -rf $(DESTDIR)$(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
3677 -rm -rf $(DESTDIR)$(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
90961eff 3678 -rm -rf $(DESTDIR)$(man1dir)/cpp$(man1ext)
90961eff
AJ
3679 -rm -f $(DESTDIR)$(infodir)/cpp.info* $(DESTDIR)$(infodir)/gcc.info*
3680 -rm -f $(DESTDIR)$(infodir)/cppinternals.info* $(DESTDIR)$(infodir)/gccint.info*
b6b89215
AK
3681 for i in ar nm ranlib ; do \
3682 install_name=`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ;\
3683 target_install_name=$(target_noncanonical)-`echo gcc-$$i|sed '$(program_transform_name)'`$(exeext) ; \
3684 rm -f $(DESTDIR)$(bindir)/$$install_name ; \
3685 rm -f $(DESTDIR)$(bindir)/$$target_install_name ; \
3686 done
544eb21e 3687#\f
4c457b6b 3688# These targets are for the dejagnu testsuites. The file site.exp
e933cbe0
JL
3689# contains global variables that all the testsuites will use.
3690
e933cbe0
JL
3691target_subdir = @target_subdir@
3692
3693site.exp: ./config.status Makefile
3694 @echo "Making a new config file..."
f103fa7a 3695 -@rm -f ./site.tmp
d9835ae8 3696 @$(STAMP) site.exp
e933cbe0 3697 -@mv site.exp site.bak
f103fa7a
RG
3698 @echo "## these variables are automatically generated by make ##" > ./site.tmp
3699 @echo "# Do not edit here. If you wish to override these values" >> ./site.tmp
3700 @echo "# add them to the last section" >> ./site.tmp
3701 @echo "set rootme \"`${PWD_COMMAND}`\"" >> ./site.tmp
3702 @echo "set srcdir \"`cd ${srcdir}; ${PWD_COMMAND}`\"" >> ./site.tmp
3703 @echo "set host_triplet $(host)" >> ./site.tmp
3704 @echo "set build_triplet $(build)" >> ./site.tmp
3705 @echo "set target_triplet $(target)" >> ./site.tmp
3706 @echo "set target_alias $(target_noncanonical)" >> ./site.tmp
3707 @echo "set libiconv \"$(LIBICONV)\"" >> ./site.tmp
e933cbe0 3708# CFLAGS is set even though it's empty to show we reserve the right to set it.
f103fa7a
RG
3709 @echo "set CFLAGS \"\"" >> ./site.tmp
3710 @echo "set CXXFLAGS \"\"" >> ./site.tmp
3711 @echo "set HOSTCC \"$(CC)\"" >> ./site.tmp
3712 @echo "set HOSTCFLAGS \"$(CFLAGS)\"" >> ./site.tmp
c875f596
DN
3713# TEST_ALWAYS_FLAGS are flags that should be passed to every compilation.
3714# They are passed first to allow individual tests to override them.
3715 @echo "set TEST_ALWAYS_FLAGS \"$(SYSROOT_CFLAGS_FOR_TARGET)\"" >> ./site.tmp
4d936aca
JJ
3716# When running the tests we set GCC_EXEC_PREFIX to the install tree so that
3717# files that have already been installed there will be found. The -B option
3718# overrides it, so use of GCC_EXEC_PREFIX will not result in using GCC files
3719# from the install tree.
f103fa7a
RG
3720 @echo "set TEST_GCC_EXEC_PREFIX \"$(libdir)/gcc/\"" >> ./site.tmp
3721 @echo "set TESTING_IN_BUILD_TREE 1" >> ./site.tmp
3722 @echo "set HAVE_LIBSTDCXX_V3 1" >> ./site.tmp
68a607d8 3723 @if test "@enable_plugin@" = "yes" ; then \
f103fa7a
RG
3724 echo "set ENABLE_PLUGIN 1" >> ./site.tmp; \
3725 echo "set PLUGINCC \"$(PLUGINCC)\"" >> ./site.tmp; \
3726 echo "set PLUGINCFLAGS \"$(PLUGINCFLAGS)\"" >> ./site.tmp; \
3727 echo "set GMPINC \"$(GMPINC)\"" >> ./site.tmp; \
68a607d8 3728 fi
1e050c90 3729 @echo "set ISLVER \"$(ISLVER)\"" >> ./site.tmp
e933cbe0
JL
3730# If newlib has been configured, we need to pass -B to gcc so it can find
3731# newlib's crt0.o if it exists. This will cause a "path prefix not used"
3732# message if it doesn't, but the testsuite is supposed to ignore the message -
3733# it's too difficult to tell when to and when not to pass -B (not all targets
3734# have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
3735# seems like too selective a test.
3736# ??? Another way to solve this might be to rely on linker scripts. Then
3737# theoretically the -B won't be needed.
3738# We also need to pass -L ../ld so that the linker can find ldscripts.
6a1b7268 3739 @if [ -d $(objdir)/../$(target_subdir)/newlib ] \
4665e56c 3740 && [ "${host}" != "${target}" ]; then \
f103fa7a
RG
3741 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)/newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./site.tmp; \
3742 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)/newlib/\"" >> ./site.tmp; \
3743 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \
3744 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./site.tmp; \
3745 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./site.tmp; \
e933cbe0
JL
3746 else true; \
3747 fi
3748 @if [ -d $(objdir)/../ld ] ; then \
f103fa7a 3749 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./site.tmp; \
e933cbe0
JL
3750 else true; \
3751 fi
f103fa7a
RG
3752 echo "set tmpdir $(objdir)/testsuite" >> ./site.tmp
3753 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./site.tmp
6ccfe27c 3754 @if [ "X$(ALT_CC_UNDER_TEST)" != "X" ] ; then \
f103fa7a 3755 echo "set ALT_CC_UNDER_TEST \"$(ALT_CC_UNDER_TEST)\"" >> ./site.tmp; \
6ccfe27c
JJ
3756 else true; \
3757 fi
fa870451 3758 @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
f103fa7a 3759 echo "set ALT_CXX_UNDER_TEST \"$(ALT_CXX_UNDER_TEST)\"" >> ./site.tmp; \
fa870451
JJ
3760 else true; \
3761 fi
3762 @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
f103fa7a 3763 echo "set COMPAT_OPTIONS \"$(COMPAT_OPTIONS)\"" >> ./site.tmp; \
fa870451
JJ
3764 else true; \
3765 fi
f103fa7a
RG
3766 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./site.tmp
3767 @cat ./site.tmp > site.exp
e933cbe0
JL
3768 @cat site.bak | sed \
3769 -e '1,/^## All variables above are.*##/ d' >> site.exp
f103fa7a 3770 -@rm -f ./site.tmp
e933cbe0 3771
d4a10d0a 3772CHECK_TARGETS = @check_languages@
cbc59f01 3773
e933cbe0
JL
3774check: $(CHECK_TARGETS)
3775
7134e605
JJ
3776check-subtargets: $(patsubst %,%-subtargets,$(CHECK_TARGETS))
3777
a738a85c 3778# The idea is to parallelize testing of multilibs, for example:
7dd232a8 3779# make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
a738a85c
AO
3780# will run 3 concurrent sessions of check-gcc, eventually testing
3781# all 10 combinations. GNU make is required, as is a shell that expands
3782# alternations within braces.
49a41726
JM
3783lang_checks_parallel = $(lang_checks:=//%)
3784$(lang_checks_parallel): site.exp
7dd232a8
AO
3785 target=`echo "$@" | sed 's,//.*,,'`; \
3786 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
a738a85c
AO
3787 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
3788 $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
8207e1fb 3789 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
a738a85c
AO
3790 "$$target"
3791
3792TESTSUITEDIR = testsuite
3793
3794$(TESTSUITEDIR)/site.exp: site.exp
577092ba 3795 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
a738a85c 3796 -rm -f $@
453897b4 3797 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)|' < site.exp > $@
a738a85c 3798
7134e605
JJ
3799# This is only used for check-% targets that aren't parallelized.
3800$(filter-out $(lang_checks_parallelized),$(lang_checks)): check-% : site.exp
4adbd5dd 3801 -test -d plugin || mkdir plugin
577092ba 3802 -test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
fea4cfe0 3803 test -d $(TESTSUITEDIR)/$* || mkdir $(TESTSUITEDIR)/$*
8c90b13a
L
3804 -(rootme=`${PWD_COMMAND}`; export rootme; \
3805 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
fea4cfe0
L
3806 cd $(TESTSUITEDIR)/$*; \
3807 rm -f tmp-site.exp; \
453897b4 3808 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$*|' \
fea4cfe0 3809 < ../../site.exp > tmp-site.exp; \
88405bd3 3810 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
d8bb17c8
OP
3811 EXPECT=${EXPECT} ; export EXPECT ; \
3812 if [ -f $${rootme}/../expect/expect ] ; then \
88405bd3 3813 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
d8bb17c8 3814 export TCL_LIBRARY ; fi ; \
4b09846b 3815 $(RUNTEST) --tool $* $(RUNTESTFLAGS))
d8bb17c8 3816
717c4789 3817$(patsubst %,%-subtargets,$(lang_checks)): check-%-subtargets:
7134e605
JJ
3818 @echo check-$*
3819
3820check_p_tool=$(firstword $(subst _, ,$*))
717c4789 3821check_p_count=$(check_$(check_p_tool)_parallelize)
7134e605 3822check_p_subno=$(word 2,$(subst _, ,$*))
717c4789
JJ
3823check_p_numbers0:=1 2 3 4 5 6 7 8 9
3824check_p_numbers1:=0 $(check_p_numbers0)
3825check_p_numbers2:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers1)))
3826check_p_numbers3:=$(addprefix 0,$(check_p_numbers1)) $(check_p_numbers2)
3827check_p_numbers4:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers3)))
3828check_p_numbers5:=$(addprefix 0,$(check_p_numbers3)) $(check_p_numbers4)
3829check_p_numbers6:=$(foreach i,$(check_p_numbers0),$(addprefix $(i),$(check_p_numbers5)))
3830check_p_numbers:=$(check_p_numbers0) $(check_p_numbers2) $(check_p_numbers4) $(check_p_numbers6)
7134e605 3831check_p_subdir=$(subst _,,$*)
717c4789
JJ
3832check_p_subdirs=$(wordlist 1,$(check_p_count),$(wordlist 1, \
3833 $(if $(GCC_TEST_PARALLEL_SLOTS),$(GCC_TEST_PARALLEL_SLOTS),128), \
3834 $(check_p_numbers)))
7134e605
JJ
3835
3836# For parallelized check-% targets, this decides whether parallelization
83022253
CL
3837# is desirable (if -jN is used). If desirable, recursive make is run with
3838# check-parallel-$lang{,1,2,3,4,5} etc. goals, which can be executed in
3839# parallel, as they are run in separate directories.
717c4789
JJ
3840# check-parallel-$lang{,1,2,3,4,5} etc. goals invoke runtest with
3841# GCC_RUNTEST_PARALLELIZE_DIR var in the environment and runtest_file_p
3842# dejaGNU procedure is overridden to additionally synchronize through
3843# a $lang-parallel directory which tests will be run by which runtest instance.
7134e605
JJ
3844# Afterwards contrib/dg-extract-results.sh is used to merge the sum and log
3845# files. If parallelization isn't desirable, only one recursive make
3846# is run with check-parallel-$lang goal and check_$lang_parallelize variable
3847# cleared to say that no additional arguments beyond $(RUNTESTFLAGS)
3848# should be passed to runtest.
3849#
3850# To parallelize some language check, add the corresponding check-$lang
3851# to lang_checks_parallelized variable and define check_$lang_parallelize
a95492ab
JW
3852# variable. This is the upper limit to which it is useful to parallelize the
3853# check-$lang target. It doesn't make sense to try e.g. 128 goals for small
3854# testsuites like objc or go.
7134e605 3855$(lang_checks_parallelized): check-% : site.exp
717c4789
JJ
3856 -rm -rf $(TESTSUITEDIR)/$*-parallel
3857 @if [ "$(filter -j, $(MFLAGS))" = "-j" ]; then \
3858 test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR) || true; \
3859 test -d $(TESTSUITEDIR)/$*-parallel || mkdir $(TESTSUITEDIR)/$*-parallel || true; \
3860 GCC_RUNTEST_PARALLELIZE_DIR=`${PWD_COMMAND}`/$(TESTSUITEDIR)/$(check_p_tool)-parallel ; \
3861 export GCC_RUNTEST_PARALLELIZE_DIR ; \
8207e1fb 3862 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
7134e605
JJ
3863 check-parallel-$* \
3864 $(patsubst %,check-parallel-$*_%, $(check_p_subdirs)); \
717c4789
JJ
3865 sums= ; logs= ; \
3866 for dir in $(TESTSUITEDIR)/$* \
3867 $(patsubst %,$(TESTSUITEDIR)/$*%,$(check_p_subdirs));\
7134e605 3868 do \
717c4789
JJ
3869 if [ -d $$dir ]; then \
3870 mv -f $$dir/$*.sum $$dir/$*.sum.sep; mv -f $$dir/$*.log $$dir/$*.log.sep; \
3871 sums="$$sums $$dir/$*.sum.sep"; logs="$$logs $$dir/$*.log.sep"; \
3872 fi; \
7134e605 3873 done; \
717c4789 3874 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh $$sums \
7134e605 3875 > $(TESTSUITEDIR)/$*/$*.sum; \
717c4789 3876 $(SHELL) $(srcdir)/../contrib/dg-extract-results.sh -L $$logs \
7134e605 3877 > $(TESTSUITEDIR)/$*/$*.log; \
717c4789 3878 rm -rf $(TESTSUITEDIR)/$*-parallel || true; \
7134e605 3879 else \
8207e1fb 3880 $(MAKE) TESTSUITEDIR="$(TESTSUITEDIR)" RUNTESTFLAGS="$(RUNTESTFLAGS)" \
7134e605
JJ
3881 check_$*_parallelize= check-parallel-$*; \
3882 fi
3883
7134e605 3884check-parallel-% : site.exp
2eac0853
JM
3885 -@test -d plugin || mkdir plugin
3886 -@test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
3887 @test -d $(TESTSUITEDIR)/$(check_p_subdir) || mkdir $(TESTSUITEDIR)/$(check_p_subdir)
3888 -$(if $(check_p_subno),@)(rootme=`${PWD_COMMAND}`; export rootme; \
7134e605 3889 srcdir=`cd ${srcdir}; ${PWD_COMMAND}` ; export srcdir ; \
717c4789
JJ
3890 if [ -n "$(check_p_subno)" ] \
3891 && [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] \
3892 && [ -f $(TESTSUITEDIR)/$(check_p_tool)-parallel/finished ]; then \
3893 rm -rf $(TESTSUITEDIR)/$(check_p_subdir); \
3894 else \
3895 cd $(TESTSUITEDIR)/$(check_p_subdir); \
3896 rm -f tmp-site.exp; \
3897 sed '/set tmpdir/ s|testsuite$$|$(TESTSUITEDIR)/$(check_p_subdir)|' \
7134e605 3898 < ../../site.exp > tmp-site.exp; \
717c4789
JJ
3899 $(SHELL) $${srcdir}/../move-if-change tmp-site.exp site.exp; \
3900 EXPECT=${EXPECT} ; export EXPECT ; \
3901 if [ -f $${rootme}/../expect/expect ] ; then \
3902 TCL_LIBRARY=`cd .. ; cd $${srcdir}/../tcl/library ; ${PWD_COMMAND}` ; \
3903 export TCL_LIBRARY ; \
3904 fi ; \
3905 $(RUNTEST) --tool $(check_p_tool) $(RUNTESTFLAGS); \
3906 if [ -n "$$GCC_RUNTEST_PARALLELIZE_DIR" ] ; then \
3907 touch $${rootme}/$(TESTSUITEDIR)/$(check_p_tool)-parallel/finished; \
3908 fi ; \
3909 fi )
7134e605 3910
f362c762
MM
3911# QMTest targets
3912
3913# The path to qmtest.
3914QMTEST_PATH=qmtest
3915
3916# The flags to pass to qmtest.
3917QMTESTFLAGS=
3918
3919# The flags to pass to "qmtest run".
d7068b3d 3920QMTESTRUNFLAGS=-f none --result-stream dejagnu_stream.DejaGNUStream
f362c762
MM
3921
3922# The command to use to invoke qmtest.
3923QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
3924
3925# The tests (or suites) to run.
d7068b3d 3926QMTEST_GPP_TESTS=g++
f362c762
MM
3927
3928# The subdirectory of the OBJDIR that will be used to store the QMTest
3929# test database configuration and that will be used for temporary
3930# scratch space during QMTest's execution.
62363d99 3931QMTEST_DIR=qmtestsuite
f362c762
MM
3932
3933# Create the QMTest database configuration.
3934${QMTEST_DIR} stamp-qmtest:
d7068b3d
MM
3935 ${QMTEST} -D ${QMTEST_DIR} create-tdb \
3936 -c gcc_database.GCCDatabase \
7134e605 3937 -a srcdir=`cd ${srcdir}/testsuite && ${PWD_COMMAND}` && \
d7068b3d 3938 $(STAMP) stamp-qmtest
f362c762
MM
3939
3940# Create the QMTest context file.
3941${QMTEST_DIR}/context: stamp-qmtest
d7068b3d
MM
3942 rm -f $@
3943 echo "CompilerTable.languages=c cplusplus" >> $@
3944 echo "CompilerTable.c_kind=GCC" >> $@
3945 echo "CompilerTable.c_path=${objdir}/xgcc" >> $@
3946 echo "CompilerTable.c_options=-B${objdir}/" >> $@
3947 echo "CompilerTable.cplusplus_kind=GCC" >> $@
5d99894e 3948 echo "CompilerTable.cplusplus_path=${objdir}/xg++" >> $@
d7068b3d 3949 echo "CompilerTable.cplusplus_options=-B${objdir}/" >> $@
caa55b1e 3950 echo "DejaGNUTest.target=${target_noncanonical}" >> $@
f362c762
MM
3951
3952# Run the G++ testsuite using QMTest.
d7068b3d 3953qmtest-g++: ${QMTEST_DIR}/context
f362c762 3954 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
d7068b3d 3955 -o g++.qmr ${QMTEST_GPP_TESTS}
f362c762
MM
3956
3957# Use the QMTest GUI.
3958qmtest-gui: ${QMTEST_DIR}/context
3959 cd ${QMTEST_DIR} && ${QMTEST} gui -C context
3960
f362c762
MM
3961.PHONY: qmtest-g++
3962
efdc7e19
RH
3963# Run Paranoia on real.c.
3964
40013784 3965paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) $(TREE_H)
3a6ebcdc 3966 g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $< $(OUTPUT_OPTION)
efdc7e19
RH
3967
3968paranoia: paranoia.o real.o $(LIBIBERTY)
3969 g++ -o $@ paranoia.o real.o $(LIBIBERTY)
3970
79d8453e
RS
3971# These exist for maintenance purposes.
3972
3973# Update the tags table.
65ebbf81 3974TAGS: lang.tags
7d60db05
JM
3975 (cd $(srcdir); \
3976 incs= ; \
3977 list='$(SUBDIRS)'; for dir in $$list; do \
3978 if test -f $$dir/TAGS; then \
3979 incs="$$incs --include $$dir/TAGS.sub"; \
3980 fi; \
3981 done; \
4e2b2eee 3982 etags -o TAGS.sub c-family/*.h c-family/*.c *.h *.c *.cc \
08585fba
JM
3983 ../include/*.h ../libiberty/*.c \
3984 ../libcpp/*.c ../libcpp/include/*.h \
4e2b2eee
AH
3985 --language=none --regex="/\(char\|unsigned int\|int\|bool\|void\|HOST_WIDE_INT\|enum [A-Za-z_0-9]+\) [*]?\([A-Za-z_0-9]+\)/\2/" common.opt \
3986 --language=none --regex="/\(DEF_RTL_EXPR\|DEFTREECODE\|DEFGSCODE\).*(\([A-Za-z_0-9]+\)/\2/" rtl.def tree.def gimple.def \
b67b29f6 3987 --language=none --regex="/DEFTIMEVAR (\([A-Za-z_0-9]+\)/\1/" timevar.def \
4e2b2eee 3988 ; \
7d60db05 3989 etags --include TAGS.sub $$incs)
79d8453e 3990
39e73137 3991# -----------------------------------------------------
5b7874aa
ZW
3992# Rules for generating translated message descriptions.
3993# Disabled by autoconf if the tools are not available.
39e73137 3994# -----------------------------------------------------
5b7874aa
ZW
3995
3996XGETTEXT = @XGETTEXT@
3997GMSGFMT = @GMSGFMT@
3998MSGMERGE = msgmerge
5c3c3683 3999CATALOGS = $(patsubst %,po/%,@CATALOGS@)
5b7874aa 4000
0f81faf6 4001.PHONY: build- install- build-po install-po update-po
5b7874aa
ZW
4002
4003# Dummy rules to deal with dependencies produced by use of
4004# "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
4005build-: ; @true
4006install-: ; @true
4007
4008build-po: $(CATALOGS)
4009
4010# This notation should be acceptable to all Make implementations used
4011# by people who are interested in updating .po files.
4012update-po: $(CATALOGS:.gmo=.pox)
4013
9f6682b7
ZW
4014# N.B. We do not attempt to copy these into $(srcdir). The snapshot
4015# script does that.
5b7874aa 4016.po.gmo:
fc0cd180 4017 $(mkinstalldirs) po
bc524dd0 4018 $(GMSGFMT) --statistics -o $@ $<
5b7874aa 4019
9f6682b7
ZW
4020# The new .po has to be gone over by hand, so we deposit it into
4021# build/po with a different extension.
a1286ef5 4022# If build/po/gcc.pot exists, use it (it was just created),
359cd11e 4023# else use the one in srcdir.
5b7874aa 4024.po.pox:
fc0cd180 4025 $(mkinstalldirs) po
a1286ef5
ZW
4026 $(MSGMERGE) $< `if test -f po/gcc.pot; \
4027 then echo po/gcc.pot; \
4028 else echo $(srcdir)/po/gcc.pot; fi` -o $@
5b7874aa 4029
9f6682b7
ZW
4030# This rule has to look for .gmo modules in both srcdir and
4031# the cwd, and has to check that we actually have a catalog
4032# for each language, in case they weren't built or included
4033# with the distribution.
5b7874aa 4034install-po:
947c6b00 4035 $(mkinstalldirs) $(DESTDIR)$(datadir)
318b7749 4036 cats="$(CATALOGS)"; for cat in $$cats; do \
9f6682b7
ZW
4037 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
4038 if [ -f $$cat ]; then :; \
4039 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
4040 else continue; \
4041 fi; \
5b7874aa 4042 dir=$(localedir)/$$lang/LC_MESSAGES; \
947c6b00
NN
4043 echo $(mkinstalldirs) $(DESTDIR)$$dir; \
4044 $(mkinstalldirs) $(DESTDIR)$$dir || exit 1; \
a1286ef5
ZW
4045 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
4046 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/gcc.mo; \
5b7874aa
ZW
4047 done
4048
4049# Rule for regenerating the message template (gcc.pot).
4050# Instead of forcing everyone to edit POTFILES.in, which proved impractical,
4051# this rule has no dependencies and always regenerates gcc.pot. This is
4052# relatively harmless since the .po files do not directly depend on it.
4053# Note that exgettext has an awk script embedded in it which requires a
4054# fairly modern (POSIX-compliant) awk.
359cd11e 4055# The .pot file is left in the build directory.
a1286ef5 4056gcc.pot: po/gcc.pot
fb72a0a3 4057po/gcc.pot: force
fc0cd180 4058 $(mkinstalldirs) po
02ba6b22 4059 $(MAKE) srcextra
5b7874aa 4060 AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
a1286ef5 4061 $(XGETTEXT) gcc $(srcdir)
eab34643 4062
043378c3
TT
4063#\f
4064
4065# Dependency information.
4066
eab34643
TT
4067# In order for parallel make to really start compiling the expensive
4068# objects from $(OBJS) as early as possible, build all their
4069# prerequisites strictly before all objects.
4070$(ALL_HOST_OBJS) : | $(generated_files)
043378c3
TT
4071
4072# Include the auto-generated dependencies for all host objects.
4073DEPFILES = \
4074 $(foreach obj,$(ALL_HOST_OBJS),\
4075 $(dir $(obj))$(DEPDIR)/$(patsubst %.o,%.Po,$(notdir $(obj))))
4076-include $(DEPFILES)
This page took 5.99328 seconds and 5 git commands to generate.