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