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