]> gcc.gnu.org Git - gcc.git/blame - gcc/Makefile.in
re PR target/8322 (SSE2 intrinsics broken?)
[gcc.git] / gcc / Makefile.in
CommitLineData
79d8453e 1# Makefile for GNU C compiler.
f0df8029
DR
2# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995, 1996, 1997
3# 1998, 1999, 2000, 2001, 2002 Free Software Foundation, Inc.
79d8453e 4
1322177d 5#This file is part of GCC.
79d8453e 6
1322177d 7#GCC is free software; you can redistribute it and/or modify
79d8453e
RS
8#it under the terms of the GNU General Public License as published by
9#the Free Software Foundation; either version 2, or (at your option)
10#any later version.
11
1322177d 12#GCC is distributed in the hope that it will be useful,
79d8453e
RS
13#but WITHOUT ANY WARRANTY; without even the implied warranty of
14#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15#GNU General Public License for more details.
16
17#You should have received a copy of the GNU General Public License
1322177d 18#along with GCC; see the file COPYING. If not, write to
940d9d63
RK
19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston MA 02111-1307, USA.
79d8453e
RS
21
22# The targets for external use include:
23# all, doc, proto, install, install-cross, install-cross-rest,
f1908d70 24# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
79d8453e
RS
25# stage1, stage2, stage3, stage4.
26
6c80a645
AO
27# This is the default target.
28all:
29
2e494f70
RS
30# Suppress smart makes who think they know how to automake Yacc files
31.y.c:
32
3c18ea24
RK
33# Directory where sources are, from where we are.
34srcdir = @srcdir@
35VPATH = @srcdir@
36
490cab72
GRK
37# Pointer to the GCC Project website
38website=http://gcc.gnu.org
39
79d8453e
RS
40# Variables that exist for you to override.
41# See below for how to change them for certain systems.
42
013a2ee0
DE
43# List of language subdirectories.
44# This is overridden by configure.
3c18ea24 45SUBDIRS =@subdirs@
013a2ee0 46
79d8453e 47# Selection of languages to be made.
013a2ee0 48# This is overridden by configure.
71205e0b 49CONFIG_LANGUAGES = @all_languages@
28fe2fb7 50LANGUAGES = c gcov$(exeext) $(CONFIG_LANGUAGES)
79d8453e 51
5e31e473
RK
52# Selection of languages to be made during stage1 build.
53# This is overridden by configure.
3c18ea24 54BOOT_LANGUAGES = c @all_boot_languages@
5e31e473 55
4c457b6b 56# Various ways of specifying flags for compilations:
78faa32d
FS
57# CFLAGS is for the user to override to, e.g., do a cross build with -O2.
58# For recursive bootstrap builds CFLAGS is used to pass in STAGE1_CFLAGS
59# or BOOT_CFLAGS
60# STAGE1_CFLAGS is set by configure on some targets or passed from toplevel
61# and sets the CFLAGS passed to stage1 of a bootstrap compilation.
62# BOOT_CFLAGS is the value of CFLAGS to pass to the stage2, stage3 and stage4
63# bootstrap compilations.
b8dad04b
ZW
64# XCFLAGS is used for most compilations but not when using the GCC just built.
65# TCFLAGS is used for compilations with the GCC just built.
b8dad04b
ZW
66XCFLAGS =
67TCFLAGS =
cbec6573
DB
68CFLAGS = -g
69STAGE1_CFLAGS = -g @stage1_cflags@
70BOOT_CFLAGS = -g -O2
b8dad04b 71
22aa533e
NS
72# Flags to determine code coverage. When coverage is disabled, this will
73# contain the optimization flags, as you normally want code coverage
74# without optimization. The -dumpbase $@ makes sure that the auxilary
75# files end up near the object files.
76COVERAGE_FLAGS = @coverage_flags@
77coverageexts = .{da,bb,bbg}
78
5b67ad6f
DA
79# The warning flags are separate from BOOT_CFLAGS because people tend to
80# override optimization flags and we'd like them to still have warnings
81# turned on. These flags are also used to pass other stage dependent
82# flags from configure. The user is free to explicitly turn these flags
83# off if they wish.
b8dad04b
ZW
84# LOOSE_WARN are the warning flags to use when compiling something
85# which is only compiled with gcc, such as libgcc and the frontends
86# other than C.
87# STRICT_WARN and STRICT2_WARN are the additional warning flags to
88# apply to the back end and the C front end, which may be compiled
89# with other compilers. This is partially controlled by configure in
90# stage1, as not all versions of gcc understand -Wno-long-long.
204250d2 91LOOSE_WARN = -W -Wall -Wwrite-strings -Wstrict-prototypes -Wmissing-prototypes
b8dad04b
ZW
92STRICT_WARN = -Wtraditional @strict1_warn@
93STRICT2_WARN = -Wtraditional -pedantic -Wno-long-long
94
204250d2
RH
95# This is set by --enable-checking. The idea is to catch forgotten
96# "extern" tags in header files.
97NOCOMMON_FLAG = @nocommon_flag@
98
b8dad04b
ZW
99# This is how we control whether or not the additional warnings are applied.
100.-warn = $(STRICT_WARN)
204250d2 101GCC_WARN_CFLAGS = $(LOOSE_WARN) $($(@D)-warn) $(NOCOMMON_FLAG)
b8dad04b
ZW
102
103# All warnings have to be shut off in stage1 if the compiler used then
104# isn't gcc; configure determines that. WARN_CFLAGS will be either
105# $(GCC_WARN_CFLAGS), or nothing.
106WARN_CFLAGS = @warn_cflags@
107
79d8453e
RS
108# These exists to be overridden by the x-* and t-* files, respectively.
109X_CFLAGS =
110T_CFLAGS =
111
112X_CPPFLAGS =
113T_CPPFLAGS =
114
7d600178 115ADAC = @ADAC@
ab87f8c8 116AWK = @AWK@
b614ee64 117CC = @CC@
1e608388 118BISON = @BISON@
0777e4c6 119BISONFLAGS =
1e608388
ZW
120FLEX = @FLEX@
121FLEXFLAGS =
79d8453e 122AR = ar
79d8453e 123AR_FLAGS = rc
b63b5db5 124DLLTOOL = dlltool
6822468a 125RANLIB = @RANLIB@
b41e09a7 126SHELL = @SHELL@
1e6347d8
RO
127# pwd command to use. Allow user to override default by setting PWDCMD in
128# the environment to account for automounters. The make variable must not
129# be called PWDCMD, otherwise the value set here is passed to make
130# subprocesses and overrides the setting from the user's environment.
131PWD = $${PWDCMD-pwd}
79d8453e 132# on sysV, define this as cp.
3c18ea24 133INSTALL = @INSTALL@
ac64120e
JW
134# Some systems may be missing symbolic links, regular links, or both.
135# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
136LN=@LN@
137LN_S=@LN_S@
79d8453e 138# These permit overriding just for certain files.
fca9d4b0
MH
139INSTALL_PROGRAM = @INSTALL_PROGRAM@
140INSTALL_DATA = @INSTALL_DATA@
7c1e8336 141INSTALL_SCRIPT = @INSTALL@
09fa0705 142MAKEINFO = @MAKEINFO@
3ef4c269 143MAKEINFOFLAGS =
d8984b6e 144TEXI2DVI = texi2dvi
fd939e46 145TEXI2POD = perl $(srcdir)/../contrib/texi2pod.pl
77bd67cb 146POD2MAN = pod2man --center="GNU" --release="gcc-$(version)"
013a2ee0
DE
147# For GNUmake: let us decide what gets passed to recursive makes.
148MAKEOVERRIDES =
3c18ea24 149@SET_MAKE@
b8dad04b
ZW
150# Some compilers can't handle cc -c blah.c -o foo/blah.o.
151# In stage2 and beyond, we force this to "-o $@" since we know we're using gcc.
152OUTPUT_OPTION = @OUTPUT_OPTION@
79d8453e 153
5262d6b6 154# Some versions of `touch' (such as the version on Solaris 2.8)
d9835ae8 155# do not correctly set the timestamp due to buggy versions of `utime'
5262d6b6 156# in the kernel. So, we use `echo' instead.
d9835ae8
MM
157STAMP = echo timestamp >
158
b8dad04b
ZW
159# This is where we get zlib from. zlibdir is -L../zlib and zlibinc is
160# -I../zlib, unless we were configured with --with-system-zlib, in which
161# case both are empty.
162ZLIB = @zlibdir@ -lz
163ZLIBINC = @zlibinc@
79d8453e 164
e256b8b6
DA
165# Substitution type for target's getgroups 2nd arg.
166TARGET_GETGROUPS_T = @TARGET_GETGROUPS_T@
167
ba1811f1 168# Target to use when installing include directory. Either
ff3aaf17 169# install-headers-tar, install-headers-cpio or install-headers-cp.
3c18ea24 170INSTALL_HEADERS_DIR = @build_install_headers_dir@
ba1811f1 171
d7371761
RK
172# Header files that are made available under the same name
173# to programs compiled with GCC.
d57a4b98
RH
174USER_H = $(srcdir)/ginclude/float.h \
175 $(srcdir)/ginclude/iso646.h \
176 $(srcdir)/ginclude/stdarg.h \
177 $(srcdir)/ginclude/stdbool.h \
178 $(srcdir)/ginclude/stddef.h \
179 $(srcdir)/ginclude/varargs.h \
180 $(EXTRA_HEADERS)
d7371761 181
39cef914 182# The GCC to use for compiling libgcc.a and crt*.o.
bf428f48 183# Usually the one we just built.
79d8453e 184# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
3fcd079e 185GCC_FOR_TARGET = $(STAGE_CC_WRAPPER) ./xgcc -B./ -B$(build_tooldir)/bin/ -isystem $(build_tooldir)/include -isystem $(build_tooldir)/sys-include
79d8453e
RS
186
187# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
188# It omits XCFLAGS, and specifies -B./.
3c9a2b55 189# It also specifies -isystem ./include to find, e.g., stddef.h.
b8dad04b 190GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_WARN) -isystem ./include $(TCFLAGS)
79d8453e 191
338023d4 192# Sed command to transform gcc to installed name. Overwritten by configure.
e6347456 193program_transform_name = @program_transform_name@
ef85603e 194program_transform_cross_name = s,^,$(target_alias)-,
338023d4 195
88111b26
JL
196build_canonical = @build_canonical@
197host_canonical = @host_canonical@
198
79d8453e
RS
199# Tools to use when building a cross-compiler.
200# These are used because `configure' appends `cross-make'
201# to the makefile when making a cross-compiler.
202
7e717196
JL
203# Use the tools from the build tree, if they are available.
204
205# objdir is set by configure.
206objdir = @objdir@
207
208AR_FOR_TARGET = ` \
209 if [ -f $(objdir)/../binutils/ar ] ; then \
210 echo $(objdir)/../binutils/ar ; \
211 else \
212 if [ "$(host_canonical)" = "$(target)" ] ; then \
213 echo ar; \
214 else \
35f86a50 215 t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
7e717196
JL
216 fi; \
217 fi`
5262d6b6 218AR_FLAGS_FOR_TARGET =
7bde2862
GK
219AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
220AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
7e717196
JL
221RANLIB_FOR_TARGET = ` \
222 if [ -f $(objdir)/../binutils/ranlib ] ; then \
223 echo $(objdir)/../binutils/ranlib ; \
224 else \
225 if [ "$(host_canonical)" = "$(target)" ] ; then \
226 echo ranlib; \
227 else \
35f86a50 228 t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
7e717196
JL
229 fi; \
230 fi`
231RANLIB_TEST_FOR_TARGET = \
232 [ -f $(RANLIB_FOR_TARGET) ] \
233 || ( [ "$(host_canonical)" = "$(target)" ] \
234 && [ -f /usr/bin/ranlib -o -f /bin/ranlib ] )
83dad10c 235NM_FOR_TARGET = ` \
d08d4a19
AO
236 if [ -f ./nm ] ; then \
237 echo ./nm ; \
238 elif [ -f $(objdir)/../binutils/nm-new ] ; then \
239 echo $(objdir)/../binutils/nm-new ; \
83dad10c
RH
240 else \
241 if [ "$(host_canonical)" = "$(target)" ] ; then \
242 echo nm; \
243 else \
244 t='$(program_transform_cross_name)'; echo nm | sed -e $$t ; \
245 fi; \
246 fi`
7e717196 247
4e872036
AS
248# Where to find some libiberty headers.
249HASHTAB_H = $(srcdir)/../include/hashtab.h
250OBSTACK_H = $(srcdir)/../include/obstack.h
5193cc6d 251SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
2a6f0eca 252FIBHEAP_H = $(srcdir)/../include/fibheap.h
4e872036 253
a078a589
ZW
254# Default native SYSTEM_HEADER_DIR, to be overridden by targets.
255NATIVE_SYSTEM_HEADER_DIR = /usr/include
512b62fb 256# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
f098ead2 257CROSS_SYSTEM_HEADER_DIR = $(build_tooldir)/sys-include
512b62fb 258
a078a589
ZW
259# autoconf sets SYSTEM_HEADER_DIR to one of the above.
260SYSTEM_HEADER_DIR = @SYSTEM_HEADER_DIR@
261
f95e46b9 262# Control whether to run fixproto and fixincludes.
0df47f66
AS
263STMP_FIXPROTO = @STMP_FIXPROTO@
264STMP_FIXINC = @STMP_FIXINC@
ac1284f9 265
40dc28fc
ILT
266# Test to see whether <limits.h> exists in the system header files.
267LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
268
3c18ea24 269target=@target@
cbec6573 270target_alias=@target_alias@
3c18ea24
RK
271xmake_file=@dep_host_xmake_file@
272tmake_file=@dep_tmake_file@
273out_file=$(srcdir)/config/@out_file@
274out_object_file=@out_object_file@
275md_file=$(srcdir)/config/@md_file@
d5355cb2 276tm_defines=@tm_defines@
11642c3a
ZW
277tm_p_file_list=@tm_p_file_list@
278tm_p_file=@tm_p_file@
279build_xm_file_list=@build_xm_file_list@
280build_xm_file=@build_xm_file@
281build_xm_defines=@build_xm_defines@
282host_xm_file_list=@host_xm_file_list@
283host_xm_file=@host_xm_file@
284host_xm_defines=@host_xm_defines@
285xm_file=@xm_file@
3d9d2476 286xm_defines=@xm_defines@
3c18ea24
RK
287lang_specs_files=@lang_specs_files@
288lang_options_files=@lang_options_files@
3103b7db 289lang_tree_files=@lang_tree_files@
11642c3a 290target_cpu_default=@target_cpu_default@
f25270fc 291GCC_THREAD_FILE=@thread_file@
d8bb17c8 292OBJC_BOEHM_GC=@objc_boehm_gc@
f24af81b 293GTHREAD_FLAGS=@gthread_flags@
f1943b77
MH
294# Be prepared for gcc2 merges.
295gcc_version=@gcc_version@
296gcc_version_trigger=@gcc_version_trigger@
297version=$(gcc_version)
4746ee26 298mainversion=`grep version_string $(srcdir)/version.c | sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/'`
79d8453e 299
79d8453e
RS
300# Common prefix for installation directories.
301# NOTE: This directory must exist when you start installation.
3c18ea24 302prefix = @prefix@
c844ddda
RS
303# Directory in which to put localized header files. On the systems with
304# gcc as the native cc, `local_prefix' may not be `prefix' which is
305# `/usr'.
0b2fbcb2 306# NOTE: local_prefix *should not* default from prefix.
3c18ea24 307local_prefix = @local_prefix@
2e494f70 308# Directory in which to put host dependent programs and libraries
3c18ea24 309exec_prefix = @exec_prefix@
79d8453e 310# Directory in which to put the executable for the command `gcc'
3c18ea24 311bindir = @bindir@
79d8453e 312# Directory in which to put the directories used by the compiler.
3c18ea24 313libdir = @libdir@
79d8453e 314# Directory in which the compiler finds executables, libraries, etc.
8b06b20a 315libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
91c7bd9b 316# Used to produce a relative $(gcc_tooldir) in gcc.o
1f72bfca 317unlibsubdir = ../../..
d062c304 318# Directory in which to find other cross-compilation tools and headers.
4c112cda 319dollar = @dollar@
d062c304
JL
320# Used in install-cross.
321gcc_tooldir = @gcc_tooldir@
2bbea3a6
RH
322# Used to install the shared libgcc.
323slibdir = @slibdir@
f098ead2 324# Since gcc_tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
d062c304 325build_tooldir = $(exec_prefix)/$(target_alias)
e2187d3b
BK
326# Directory in which the compiler finds target-independent g++ includes.
327gcc_gxx_include_dir = @gcc_gxx_include_dir@
49ba557e 328# Directory to search for site-specific includes.
793e9558
PB
329local_includedir = $(local_prefix)/include
330includedir = $(prefix)/include
0b2fbcb2 331# where the info files go
3c18ea24 332infodir = @infodir@
587a4ba6
L
333# Where cpp should go besides $prefix/bin if necessary
334cpp_install_dir = @cpp_install_dir@
ab87f8c8 335# where the locale files go
191bf464 336datadir = @datadir@
ab87f8c8 337localedir = $(datadir)/locale
79d8453e 338# Extension (if any) to put in installed man-page filename.
77bd67cb
JM
339man1ext = .1
340man7ext = .7
173712fb 341objext = .o
6e26218f
ILT
342exeext = @host_exeext@
343build_exeext = @build_exeext@
173712fb 344
79d8453e 345# Directory in which to put man pages.
a76b6b40
MH
346mandir = @mandir@
347man1dir = $(mandir)/man1
77bd67cb 348man7dir = $(mandir)/man7
62c13b81
RS
349# Dir for temp files.
350tmpdir = /tmp
79d8453e 351
ab87f8c8
JL
352# Top build directory, relative to here.
353top_builddir = .
354
355# Whether we were configured with NLS.
356USE_NLS = @USE_NLS@
357
358# Internationalization library.
359INTLLIBS = @INTLLIBS@
77c06844 360INTLDEPS = @INTLDEPS@
ab87f8c8 361
62c62a4f
RO
362# Character encoding conversion library.
363LIBICONV = @LIBICONV@
364
ab87f8c8 365# List of internationalization subdirectories.
5b7874aa 366INTL_SUBDIRS = intl
ab87f8c8 367
0a25f1f5 368# The GC method to be used on this system.
81bf3d9e 369GGC=@GGC@.o
0a25f1f5
RH
370
371# If a supplementary library is being used for the GC.
372GGC_LIB=
373
7857f134
ZW
374# libgcc.a may be built directly or via stmp-multilib,
375# and installed likewise. Overridden by t-fragment.
b583eed8 376LIBGCC = libgcc.a
b583eed8
DE
377INSTALL_LIBGCC = install-libgcc
378
79d8453e 379# Options to use when compiling libgcc2.a.
7337c67f 380#
2a4ea326 381LIBGCC2_DEBUG_CFLAGS = -g
4c457b6b 382LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED @inhibit_libc@
56f9206d
ILT
383
384# Additional options to use when compiling libgcc2.a.
3c9a2b55 385# Some targets override this to -isystem include
56f9206d
ILT
386LIBGCC2_INCLUDES =
387
7bb7f3df 388# Additional target-dependent options for compiling libgcc2.a.
4c457b6b 389TARGET_LIBGCC2_CFLAGS =
7bb7f3df 390
cea3bd3e
RH
391# Options to use when compiling crtbegin/end.
392CRTSTUFF_CFLAGS = -O2 $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
27b41650
KG
393 -finhibit-size-directive -fno-inline-functions -fno-exceptions \
394 -fno-zero-initialized-in-bss
cea3bd3e 395
52a11cbf
RH
396# Additional sources to handle exceptions; overridden on ia64.
397LIB2ADDEH = $(srcdir)/unwind-dw2.c $(srcdir)/unwind-dw2-fde.c \
398 $(srcdir)/unwind-sjlj.c
399LIB2ADDEHDEP = unwind.inc unwind-dw2-fde.h
ce152ef8 400
0ad7574f
DE
401# nm flags to list global symbols in libgcc object files.
402SHLIB_NM_FLAGS = -pg
403
79d8453e
RS
404# List of extra executables that should be compiled for this target machine
405# that are used for compiling from source code to object code.
406# The rules for compiling them should be in the t-* file for the machine.
3c18ea24 407EXTRA_PASSES =@extra_passes@
79d8453e 408
2e494f70 409# Like EXTRA_PASSES, but these are used when linking.
3c18ea24 410EXTRA_PROGRAMS = @extra_programs@
2e494f70
RS
411
412# List of extra object files that should be compiled for this target machine.
79d8453e 413# The rules for compiling them should be in the t-* file for the machine.
3c18ea24 414EXTRA_PARTS = @extra_parts@
79d8453e 415
2e494f70
RS
416# List of extra object files that should be compiled and linked with
417# compiler proper (cc1, cc1obj, cc1plus).
3c18ea24 418EXTRA_OBJS = @extra_objs@
2e494f70 419
43554690
RK
420# List of extra object files that should be compiled and linked with
421# the gcc driver.
3c18ea24 422EXTRA_GCC_OBJS =@host_extra_gcc_objs@
43554690 423
f780d21b
RS
424# List of additional header files to install.
425# Often this is edited directly by `configure'.
3c18ea24 426EXTRA_HEADERS =@extra_headers_list@
f780d21b 427
47547081
RS
428# It is convenient for configure to add the assignment at the beginning,
429# so don't override it here.
10da1131 430USE_COLLECT2 = collect2$(exeext)
47547081 431
fa9518de 432# List of extra C and assembler files to add to static and shared libgcc2.
79d8453e 433# Assembler files should have names ending in `.asm'.
4c457b6b 434LIB2FUNCS_EXTRA =
79d8453e 435
fa9518de
FS
436# List of extra C and assembler files to add to static libgcc2.
437# Assembler files should have names ending in `.asm'.
438LIB2FUNCS_STATIC_EXTRA =
439
79d8453e 440# Program to convert libraries.
4c457b6b 441LIBCONVERT =
79d8453e
RS
442
443# Control whether header files are installed.
e34a3d31 444INSTALL_HEADERS=install-headers install-mkheaders
79d8453e 445
09fa0705
ZW
446# Control whether Info documentation is built and installed.
447BUILD_INFO = @BUILD_INFO@
09fa0705 448
fd939e46
JM
449# Control whether manpages generated by texi2pod.pl can be rebuilt.
450GENERATED_MANPAGES = @GENERATED_MANPAGES@
451
66d7ffbf 452# Additional directories of header files to run fixincludes on.
4ab08223
RS
453# These should be directories searched automatically by default
454# just as /usr/include is.
4c457b6b 455# *Do not* use this for directories that happen to contain
4ab08223 456# header files, but are not searched automatically by default.
66d7ffbf
RS
457# On most systems, this is empty.
458OTHER_FIXINCLUDES_DIRS=
459
7c27f801
RK
460# A list of all the language-specific executables.
461# This is overridden by configure.
3379e8ef 462COMPILERS = cc1$(exeext) @all_compilers@
7c27f801 463
acbbf3d9 464# List of things which should already be built whenever we try to use xgcc
79d8453e 465# to compile anything (without linking).
aaf93206 466GCC_PASSES=xgcc$(exeext) cc1$(exeext) specs $(EXTRA_PASSES)
79d8453e 467
acbbf3d9 468# List of things which should already be built whenever we try to use xgcc
79d8453e 469# to link anything.
b583eed8 470GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
79d8453e 471
79d8453e
RS
472# Directory to link to, when using the target `maketest'.
473DIR = ../gcc
474
475# Flags to use when cross-building GCC.
476# Prefix to apply to names of object files when using them
477# to run on the machine we are compiling on.
5c35940c 478BUILD_PREFIX = @BUILD_PREFIX@
79d8453e
RS
479# Prefix to apply to names of object files when compiling them
480# to run on the machine we are compiling on.
4c457b6b 481# The default for this variable is chosen to keep these rules
79d8453e 482# out of the way of the other rules for compiling the same source files.
5c35940c 483BUILD_PREFIX_1 = @BUILD_PREFIX_1@
a078a589
ZW
484# Native compiler for the build machine and its switches.
485HOST_CC = @HOST_CC@
486HOST_CFLAGS= @HOST_CFLAGS@ -DGENERATOR_FILE
487
488# Native linker and preprocessor flags. For x-fragment overrides.
79d8453e
RS
489HOST_LDFLAGS=$(LDFLAGS)
490HOST_CPPFLAGS=$(ALL_CPPFLAGS)
491
338023d4 492# Actual name to use when installing a native compiler.
b21d216c
AF
493GCC_INSTALL_NAME = `echo gcc|sed '$(program_transform_name)'`
494GCC_TARGET_INSTALL_NAME = $(target_alias)-`echo gcc|sed '$(program_transform_name)'`
495CPP_INSTALL_NAME = `echo cpp|sed '$(program_transform_name)'`
496PROTOIZE_INSTALL_NAME = `echo protoize|sed '$(program_transform_name)'`
497UNPROTOIZE_INSTALL_NAME = `echo unprotoize|sed '$(program_transform_name)'`
498GCOV_INSTALL_NAME = `echo gcov|sed '$(program_transform_name)'`
499GCCBUG_INSTALL_NAME = `echo gccbug|sed '$(program_transform_name)'`
338023d4
DE
500
501# Actual name to use when installing a cross-compiler.
b21d216c
AF
502GCC_CROSS_NAME = `echo gcc|sed '$(program_transform_cross_name)'`
503CPP_CROSS_NAME = `echo cpp|sed '$(program_transform_cross_name)'`
504PROTOIZE_CROSS_NAME = `echo protoize|sed '$(program_transform_cross_name)'`
505UNPROTOIZE_CROSS_NAME = `echo unprotoize|sed '$(program_transform_cross_name)'`
338023d4 506
a078a589
ZW
507# Set by autoconf to "all.internal" for a native build, or
508# "all.cross" to build a cross compiler.
509ALL = @ALL@
ba1811f1 510
e933cbe0
JL
511# Setup the testing framework, if you have one
512EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
513 echo $${rootme}/../expect/expect ; \
514 else echo expect ; fi`
515
516RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
517 echo $${srcdir}/../dejagnu/runtest ; \
518 else echo runtest; fi`
519RUNTESTFLAGS =
520
aefc3801 521# Extra symbols for fixproto to define when parsing headers.
4c457b6b 522FIXPROTO_DEFINES =
aefc3801 523
68d69835 524# Extra flags to use when compiling crt{begin,end}.o.
4c457b6b 525CRTSTUFF_T_CFLAGS =
68d69835 526
522170ca 527# Extra flags to use when compiling [m]crt0.o.
4c457b6b 528CRT0STUFF_T_CFLAGS =
522170ca 529
e9a25f70
JL
530# "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
531T =
532
6c80a645
AO
533# Should T contain a `=', libgcc.mk will make T_TARGET, setting
534# $(T_TARGET) to the name of the actual target filename.
535T_TARGET =
536T_TARGET : $(T_TARGET)
537
79d8453e
RS
538# End of variables for you to override.
539
540# Definition of `all' is here so that new rules inserted by sed
541# do not specify the default target.
542# The real definition is under `all.internal' (for native compilers)
543# or `all.cross' (for cross compilers).
2e494f70 544all: all.indirect
79d8453e 545
be0d23ff
RS
546# This tells GNU Make version 3 not to put all variables in the environment.
547.NOEXPORT:
548
c4df8f8c 549# GCONFIG_H lists the config files that the generator files depend on, while
27d30956 550# CONFIG_H lists the ones ordinary gcc files depend on, which includes
1b0c37d7 551# several files generated by those generators.
c4df8f8c
KC
552GCONFIG_H = config.h $(host_xm_file_list)
553HCONFIG_H = hconfig.h $(build_xm_file_list)
e78d8e51 554CONFIG_H = $(GCONFIG_H) insn-constants.h insn-flags.h
1b0c37d7 555TCONFIG_H = tconfig.h $(xm_file_list)
672a6f42 556TARGET_H = target.h
e4ec2cac 557HOOKS_H = hooks.h
aea185b3 558LANGHOOKS_DEF_H = langhooks-def.h $(HOOKS_H)
e4ec2cac 559TARGET_DEF_H = target-def.h $(HOOKS_H)
1b0c37d7 560TM_P_H = tm_p.h $(tm_p_file_list) tm-preds.h
c4df8f8c 561
a5381466 562MACHMODE_H = machmode.h machmode.def @extra_modes_file@
c4df8f8c
KC
563RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
564RTL_H = $(RTL_BASE_H) genrtl.h
639bc36c 565PARAMS_H = params.h params.def
e6986399
GDR
566TREE_H = tree.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def \
567 location.h
c4df8f8c
KC
568BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h
569DEMANGLE_H = $(srcdir)/../include/demangle.h
570RECOG_H = recog.h
e78d8e51
ZW
571EXPR_H = expr.h
572OPTABS_H = optabs.h insn-codes.h
c4df8f8c
KC
573REGS_H = regs.h varray.h $(MACHMODE_H)
574INTEGRATE_H = integrate.h varray.h
575LOOP_H = loop.h varray.h bitmap.h
576GCC_H = gcc.h version.h
e2500fed 577GGC_H = ggc.h varray.h gtype-desc.h
c4df8f8c
KC
578TIMEVAR_H = timevar.h timevar.def
579INSN_ATTR_H = insn-attr.h $(srcdir)/insn-addr.h $(srcdir)/varray.h
81a75f0f 580C_COMMON_H = c-common.h $(SPLAY_TREE_H) $(CPPLIB_H)
c4df8f8c
KC
581C_TREE_H = c-tree.h $(C_COMMON_H)
582SYSTEM_H = system.h hwint.h $(srcdir)/../include/libiberty.h
4db384c9 583PREDICT_H = predict.h predict.def
ef6e958a 584CPPLIB_H = cpplib.h line-map.h
c4df8f8c 585
79d8453e 586# sed inserts variable overrides after the following line.
60d00117 587####target overrides
3c18ea24
RK
588@target_overrides@
589
60d00117 590####host overrides
3c18ea24 591@host_overrides@
544eb21e 592#\f
79d8453e
RS
593# Now figure out from those variables how to compile and link.
594
2e494f70
RS
595all.indirect: $(ALL)
596
a078a589
ZW
597# IN_GCC distinguishes between code compiled into GCC itself and other
598# programs built during a bootstrap.
599# autoconf inserts -DCROSS_COMPILE if we are building a cross compiler.
8733892f 600INTERNAL_CFLAGS = -DIN_GCC @CROSS@
79d8453e
RS
601
602# This is the variable actually used when we compile.
2df8df36
JW
603# If you change this line, you probably also need to change the definition
604# of HOST_CFLAGS in build-make to match.
22aa533e 605ALL_CFLAGS = $(X_CFLAGS) $(T_CFLAGS) \
8733892f 606 $(CFLAGS) $(INTERNAL_CFLAGS) $(COVERAGE_FLAGS) $(WARN_CFLAGS) $(XCFLAGS) @DEFS@
79d8453e
RS
607
608# Likewise.
609ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
610
06f0b04c
ZW
611# Build and host support libraries. FORBUILD is either
612# .. or ../$(build_alias) depending on whether host != build.
613LIBIBERTY = ../libiberty/libiberty.a
614BUILD_LIBIBERTY = @FORBUILD@/libiberty/libiberty.a
79d8453e 615
935bfb44
ZW
616# Dependencies on the intl and portability libraries.
617LIBDEPS= $(INTLDEPS) $(LIBIBERTY)
79d8453e
RS
618
619# Likewise, for use in the tools that must run on this machine
620# even if we are cross-building GCC.
06f0b04c 621HOST_LIBDEPS= $(BUILD_LIBIBERTY)
79d8453e
RS
622
623# How to link with both our special library facilities
624# and the system's installed libraries.
06f0b04c 625LIBS = $(INTLLIBS) @LIBS@ $(LIBIBERTY)
79d8453e 626
7d600178
RO
627# Any system libraries needed just for GNAT.
628SYSLIBS = @GNAT_LIBEXC@
629
79d8453e
RS
630# Likewise, for use in the tools that must run on this machine
631# even if we are cross-building GCC.
06f0b04c 632HOST_LIBS = $(BUILD_LIBIBERTY)
79d8453e 633
5c35940c 634HOST_RTL = $(BUILD_PREFIX)rtl.o read-rtl.o $(BUILD_PREFIX)bitmap.o \
2199e5fa
ZW
635 $(BUILD_PREFIX)ggc-none.o
636HOST_SUPPORT = gensupport.o insn-conditions.o
637HOST_EARLY_SUPPORT = gensupport.o dummy-conditions.o
c88c0d42 638
4d2d910c 639HOST_PRINT = print-rtl1.o
5c35940c
NN
640HOST_ERRORS = $(BUILD_PREFIX)errors.o
641HOST_VARRAY = $(BUILD_PREFIX)varray.o
79d8453e
RS
642
643# Specify the directories to be searched for header files.
644# Both . and srcdir are used, in that order,
eaf4e618 645# so that *config.h will be found in the compilation
79d8453e 646# subdirectory rather than in the source directory.
b8dad04b
ZW
647# -I$(@D) and -I$(srcdir)/$(@D) cause the subdirectory of the file
648# currently being compiled, in both source trees, to be examined as well.
649INCLUDES = -I. -I$(@D) -I$(srcdir) -I$(srcdir)/$(@D) \
650 -I$(srcdir)/config -I$(srcdir)/../include
79d8453e
RS
651
652# Always use -I$(srcdir)/config when compiling.
653.c.o:
b8dad04b 654 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
79d8453e
RS
655
656# This tells GNU make version 3 not to export all the variables
657# defined in this file into the environment.
658.NOEXPORT:
544eb21e 659#\f
013a2ee0
DE
660# Support for additional languages (other than c and objc).
661# ??? objc can be supported this way too (leave for later).
662
663# These next lines are overridden by configure.
3c18ea24
RK
664LANG_MAKEFILES = @all_lang_makefiles@
665LANG_STAGESTUFF = @all_stagestuff@
013a2ee0
DE
666
667# Flags to pass to recursive makes.
668# CC is set by configure. Hosts without symlinks need special handling
669# because we need CC="stage1/xgcc -Bstage1/" to work in the language
670# subdirectories.
671# ??? The choices here will need some experimenting with.
e6980e1b 672ORDINARY_FLAGS_TO_PASS = \
8f25d5cd 673 "AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
7bde2862
GK
674 "AR_CREATE_FOR_TARGET=$(AR_CREATE_FOR_TARGET)" \
675 "AR_EXTRACT_FOR_TARGET=$(AR_EXTRACT_FOR_TARGET)" \
013a2ee0
DE
676 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
677 "BISON=$(BISON)" \
678 "BISONFLAGS=$(BISONFLAGS)" \
5b67ad6f 679 "CFLAGS=$(CFLAGS) $(WARN_CFLAGS)" \
dc93cff0 680 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
013a2ee0 681 "LDFLAGS=$(LDFLAGS)" \
1e608388
ZW
682 "FLEX=$(FLEX)" \
683 "FLEXFLAGS=$(FLEXFLAGS)" \
ac64120e
JW
684 "LN=$(LN)" \
685 "LN_S=$(LN_S)" \
013a2ee0
DE
686 "MAKEINFO=$(MAKEINFO)" \
687 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
03bbd83f 688 "MAKEOVERRIDES=" \
013a2ee0
DE
689 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
690 "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
691 "SHELL=$(SHELL)" \
aab26e16 692 "exeext=$(exeext)" \
6e26218f 693 "build_exeext=$(build_exeext)" \
aab26e16 694 "objext=$(objext)" \
013a2ee0
DE
695 "exec_prefix=$(exec_prefix)" \
696 "prefix=$(prefix)" \
3bf810d8 697 "local_prefix=$(local_prefix)" \
8f8d3278 698 "gxx_include_dir=$(gcc_gxx_include_dir)" \
f098ead2 699 "build_tooldir=$(build_tooldir)" \
91c7bd9b 700 "gcc_tooldir=$(gcc_tooldir)" \
013a2ee0 701 "bindir=$(bindir)" \
ab87f8c8
JL
702 "libsubdir=$(libsubdir)" \
703 "datadir=$(datadir)" \
ab87f8c8 704 "localedir=$(localedir)"
04203c18
AC
705FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@" \
706 "STAGE_PREFIX=@stage_prefix_set_by_configure@"
ab87f8c8
JL
707PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
708 -e 's|^ *[^ /][^ /]*/|%&|' \
709 -e 's| -B| -B%|g' \
710 -e 's|% *[^- /]|%&|g' \
711 -e 's|%% *|../|g' \
712 -e 's|%||g'
713SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
04203c18 714 "CC=`echo @quoted_cc_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`" \
596151e1 715 "STAGE_PREFIX=`echo @quoted_stage_prefix_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`"
544eb21e 716#\f
79d8453e
RS
717# Lists of files for various purposes.
718
aac69a49
NC
719# Target specific, C specific object file
720C_TARGET_OBJS=@c_target_objs@
721
722# Target specific, C++ specific object file
723CXX_TARGET_OBJS=@cxx_target_objs@
724
3cb88565 725# Language-specific object files for C and Objective C.
aaed0206 726C_AND_OBJC_OBJS = attribs.o c-errors.o c-lex.o c-pragma.o c-decl.o c-typeck.o \
0b6f2917 727 c-convert.o c-aux-info.o c-common.o c-opts.o c-format.o c-semantics.o \
558ee214 728 c-objc-common.o c-dump.o libcpp.a $(C_TARGET_OBJS)
3cb88565 729
79d8453e 730# Language-specific object files for C.
61ccbcfd 731C_OBJS = c-parse.o c-lang.o c-pretty-print.o $(C_AND_OBJC_OBJS)
e8066a5d 732
79d8453e 733# Language-independent object files.
a36556a8 734
e2500fed
GK
735OBJS = alias.o bb-reorder.o bitmap.o builtins.o caller-save.o calls.o \
736 cfg.o cfganal.o cfgbuild.o cfgcleanup.o cfglayout.o cfgloop.o \
737 cfgrtl.o combine.o conflict.o convert.o cse.o cselib.o dbxout.o \
3df5d99e 738 debug.o df.o diagnostic.o doloop.o dominance.o \
e2500fed
GK
739 dwarf2asm.o dwarf2out.o dwarfout.o emit-rtl.o except.o explow.o \
740 expmed.o expr.o final.o flow.o fold-const.o function.o gcse.o \
741 genrtl.o ggc-common.o global.o graph.o gtype-desc.o \
742 haifa-sched.o hashtable.o hooks.o ifcvt.o insn-attrtab.o insn-emit.o \
743 insn-extract.o insn-opinit.o insn-output.o insn-peep.o insn-recog.o \
744 integrate.o intl.o jump.o langhooks.o lcm.o lists.o local-alloc.o \
745 loop.o mbchar.o optabs.o params.o predict.o print-rtl.o print-tree.o \
ed8d2920
MM
746 profile.o ra.o ra-build.o ra-colorize.o ra-debug.o ra-rewrite.o \
747 real.o recog.o reg-stack.o regclass.o regmove.o regrename.o \
e2500fed
GK
748 reload.o reload1.o reorg.o resource.o rtl.o rtlanal.o rtl-error.o \
749 sbitmap.o sched-deps.o sched-ebb.o sched-rgn.o sched-vis.o sdbout.o \
750 sibcall.o simplify-rtx.o ssa.o ssa-ccp.o ssa-dce.o stmt.o \
5c856b23 751 stor-layout.o stringpool.o timevar.o toplev.o tracer.o tree.o tree-dump.o \
7a0c8d71 752 tree-inline.o unroll.o varasm.o varray.o version.o vmsdbgout.o xcoffout.o \
355be0dc 753 et-forest.o $(GGC) $(out_object_file) $(EXTRA_OBJS)
79d8453e 754
aa5b94de 755BACKEND = main.o libbackend.a
a36556a8 756
79d8453e 757# Files to be copied away after each stage in building.
aab26e16 758STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
79d8453e 759 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
1b0c37d7 760 insn-attr.h insn-attrtab.c insn-opinit.c insn-constants.h tm-preds.h \
2199e5fa 761 tree-check.h insn-conditions.c \
3fd9d606 762 s-flags s-config s-codes s-mlib s-genrtl s-gtype gtyp-gen.h \
2199e5fa 763 s-output s-recog s-emit s-extract s-peep s-check s-conditions \
1b0c37d7 764 s-attr s-attrtab s-opinit s-preds s-constants s-crt0 \
6e26218f
ILT
765 genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
766 genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
767 genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
206ae7cf 768 genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
1b0c37d7 769 gencheck$(build_exeext) genpreds$(build_exeext) genconstants$(build_exeext) \
2199e5fa 770 gengtype$(build_exeext) genconditions$(build_exeext) \
ad854f24 771 genrtl.c genrtl.h gt-*.h gtype-*.h gtype-desc.c \
aaf93206 772 xgcc$(exeext) cpp$(exeext) cc1$(exeext) $(EXTRA_PASSES) \
86702e31 773 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) cc1obj$(exeext) \
39cef914 774 protoize$(exeext) unprotoize$(exeext) \
3fd9d606 775 specs collect2$(exeext) $(USE_COLLECT2) \
4993ddc1 776 gcov$(exeext) *.[0-9][0-9].* *.[si] libcpp.a libbackend.a libgcc.mk \
013a2ee0 777 $(LANG_STAGESTUFF)
79d8453e 778
79d8453e 779# Library members defined in libgcc2.c.
f0df8029
DR
780# Variable length limited to 255 charactes when passed to a shell script.
781LIB2FUNCS_1 = _muldi3 _negdi2 _lshrdi3 _ashldi3 _ashrdi3 _ffsdi2 _clz \
fc6aa0a9 782 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf _fixunsdfsi _fixunssfsi \
f0df8029
DR
783 _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi _fixxfdi _fixunsxfdi
784
785LIB2FUNCS_2 = _floatdixf _fixunsxfsi _fixtfdi _fixunstfdi _floatditf \
786 _clear_cache _trampoline __main _exit _absvsi2 _absvdi2 _addvsi3 \
787 _addvdi3 _subvsi3 _subvdi3 _mulvsi3 _mulvdi3 _negvsi2 _negvdi2 _ctors
624a8b3a 788
3fe68d0a 789# Defined in libgcc2.c, included only in the static library.
a4d3961a 790LIB2FUNCS_ST = _eprintf _bb __gcc_bcmp
3fe68d0a 791
5198352e
JL
792FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
793 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
1eb8759b 794 _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
dfaf3cdb 795 _sf_to_df _thenan_sf _sf_to_usi _usi_to_sf
5198352e
JL
796
797DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
798 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
1eb8759b 799 _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
dfaf3cdb 800 _df_to_sf _thenan_df _df_to_usi _usi_to_df
5198352e 801
fc6aa0a9
AH
802# These might cause a divide overflow trap and so are compiled with
803# unwinder info.
804LIB2_DIVMOD_FUNCS = _divdi3 _moddi3 _udivdi3 _umoddi3 _udiv_w_sdiv _udivmoddi4
805
7d600178
RO
806# The only suffixes we want for implicit rules are .c and .o, so clear
807# the list and add them. This speeds up GNU Make, and allows -r to work.
808# For i18n support, we also need .gmo, .po, .pox.
809# This must come before the language makefile fragments to allow them to
810# add suffixes and rules of their own.
811.SUFFIXES:
0f81faf6 812.SUFFIXES: .c .o .po .pox .gmo
7d600178 813
544eb21e 814#\f
013a2ee0
DE
815# Language makefile fragments.
816
817# The following targets define the interface between us and the languages.
818#
a078a589 819# all.cross, start.encap, rest.encap,
013a2ee0
DE
820# info, dvi,
821# install-normal, install-common, install-info, install-man,
436a88a6 822# uninstall,
f1908d70 823# mostlyclean, clean, distclean, extraclean, maintainer-clean,
013a2ee0
DE
824# stage1, stage2, stage3, stage4
825#
826# Each language is linked in with a series of hooks (since we can't use `::'
827# targets). The name of each hooked is "lang.${target_name}" (eg: lang.info).
828# Configure computes and adds these here.
829
830####language hooks
3c18ea24 831@language_hooks@
013a2ee0
DE
832
833# sed inserts language fragments after the following line.
834####language fragments
3c18ea24 835@language_fragments@
013a2ee0
DE
836
837# End of language makefile fragments.
544eb21e 838#\f
79d8453e 839
7c0ae5f1 840Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
d232dfa4
DE
841 $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
842 $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
843 "$(xmake_file)" "$(tmake_file)"
173712fb 844 cp config.status config.run
71205e0b 845 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.run
da0d7cb1 846 rm -f config.run
79d8453e 847
11642c3a
ZW
848config.h: cs-config.h ; @true
849hconfig.h: cs-hconfig.h ; @true
850tconfig.h: cs-tconfig.h ; @true
851tm_p.h: cs-tm_p.h ; @true
852
853cs-config.h: Makefile
d5355cb2
JDA
854 TM_DEFINES="$(tm_defines)" \
855 HEADERS="$(host_xm_file)" XM_DEFINES="$(host_xm_defines)" \
11642c3a
ZW
856 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
857 $(SHELL) $(srcdir)/mkconfig.sh config.h
858
859cs-hconfig.h: Makefile
d5355cb2
JDA
860 TM_DEFINES="$(tm_defines)" \
861 HEADERS="$(build_xm_file)" XM_DEFINES="$(build_xm_defines)" \
11642c3a
ZW
862 TARGET_CPU_DEFAULT="$(target_cpu_default)" \
863 $(SHELL) $(srcdir)/mkconfig.sh hconfig.h
864
0d24f4d1 865cs-tconfig.h: Makefile
d5355cb2
JDA
866 TM_DEFINES="$(tm_defines)" \
867 HEADERS="$(xm_file)" XM_DEFINES="$(xm_defines)" \
3d9d2476 868 TARGET_CPU_DEFAULT="" \
11642c3a
ZW
869 $(SHELL) $(srcdir)/mkconfig.sh tconfig.h
870
871cs-tm_p.h: Makefile
d5355cb2
JDA
872 TM_DEFINES="" \
873 HEADERS="$(tm_p_file)" XM_DEFINES="" TARGET_CPU_DEFAULT="" \
11642c3a
ZW
874 $(SHELL) $(srcdir)/mkconfig.sh tm_p.h
875
e7f62dcf
NC
876# Don't automatically run autoconf, since configure.in might be accidentally
877# newer than configure. Also, this writes into the source directory which
878# might be on a read-only file system. If configured for maintainer mode
879# then do allow autoconf to be run.
880
881$(srcdir)/configure: @MAINT@ $(srcdir)/configure.in
b8dad04b 882 (cd $(srcdir) && autoconf)
3c18ea24 883
501a4819 884gccbug: $(srcdir)/gccbug.in
5262d6b6 885 CONFIG_FILES=gccbug CONFIG_HEADERS= ./config.status
501a4819 886
3ec83fc2 887mklibgcc: $(srcdir)/mklibgcc.in
5262d6b6 888 CONFIG_FILES=mklibgcc CONFIG_HEADERS= ./config.status
3ec83fc2 889
e34a3d31
GK
890mkheaders: $(srcdir)/mkheaders.in
891 CONFIG_FILES=mkheaders CONFIG_HEADERS= ./config.status
892
da7ece9a 893# cstamp-h.in controls rebuilding of config.in.
7c0ae5f1
DE
894# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
895# delete it. A stamp file is needed as autoheader won't update the file if
896# nothing has changed.
da7ece9a
DE
897# It remains in the source directory and is part of the distribution.
898# This follows what is done in shellutils, fileutils, etc.
5408f8d0
DE
899# "echo timestamp" is used instead of touch to be consistent with other
900# packages that use autoconf (??? perhaps also to avoid problems with patch?).
da7ece9a 901# ??? Newer versions have a maintainer mode that may be useful here.
e7f62dcf
NC
902
903# Don't run autoheader automatically either.
904# Only run it if maintainer mode is enabled.
905@MAINT@ $(srcdir)/config.in: $(srcdir)/cstamp-h.in
906@MAINT@ $(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
907@MAINT@ (cd $(srcdir) && autoheader)
908@MAINT@ @rm -f $(srcdir)/cstamp-h.in
909@MAINT@ echo timestamp > $(srcdir)/cstamp-h.in
b7cb92ad 910auto-host.h: cstamp-h ; @true
da7ece9a 911cstamp-h: config.in config.status
71205e0b 912 CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
d68b51ef 913
7c0ae5f1
DE
914# Really, really stupid make features, such as SUN's KEEP_STATE, may force
915# a target to build even if it is up-to-date. So we must verify that
916# config.status does not exist before failing.
61ed06c3 917config.status: $(srcdir)/configure $(srcdir)/config.gcc version.c
7c0ae5f1 918 @if [ ! -f config.status ] ; then \
436a88a6 919 echo You must configure gcc. Look at http://gcc.gnu.org/install/ for details.; \
7c0ae5f1
DE
920 false; \
921 else \
71205e0b 922 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
7c0ae5f1
DE
923 fi
924
43297964 925all.internal: start.encap rest.encap doc
79d8453e 926# This is what to compile if making a cross-compiler.
4871239e 927all.cross: native gcc-cross cpp$(exeext) specs \
7857f134 928 $(LIBGCC) $(EXTRA_PARTS) lang.all.cross doc
79d8453e 929# This is what must be made before installing GCC and converting libraries.
4871239e 930start.encap: native xgcc$(exeext) cpp$(exeext) specs \
922cf99e 931 xlimits.h lang.start.encap
eea77e5f 932# These can't be made until after GCC can run.
f95e46b9 933rest.encap: $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
79d8453e
RS
934# This is what is made with the host's compiler
935# whether making a cross compiler or not.
5b7874aa 936native: config.status auto-host.h intl.all build-@POSUB@ $(LANGUAGES) \
88393a07 937 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
79d8453e
RS
938
939# Define the names for selecting languages in LANGUAGES.
353a10d0 940C c: cc1$(exeext)
79d8453e
RS
941PROTO: proto
942
bff3fc41 943# Tell GNU make these are phony targets.
3379e8ef 944.PHONY: C c PROTO proto
bff3fc41 945
3aa072f2
RS
946# On the target machine, finish building a cross compiler.
947# This does the things that can't be done on the host machine.
027ea2a7 948rest.cross: $(LIBGCC) specs
3aa072f2 949
3aa072f2
RS
950# Recompile all the language-independent object files.
951# This is used only if the user explicitly asks for it.
a36556a8 952compilations: $(BACKEND)
79d8453e 953
a36556a8
ZW
954# Like libcpp.a, this archive is strictly for the host.
955libbackend.a: $(OBJS)
956 -rm -rf libbackend.a
957 $(AR) $(AR_FLAGS) libbackend.a $(OBJS)
6822468a 958 -$(RANLIB) libbackend.a
6c1cc7fa 959
acbbf3d9
RS
960# We call this executable `xgcc' rather than `gcc'
961# to avoid confusion if the current directory is in the path
962# and CC is `gcc'. It is renamed to `gcc' when it is installed.
08dc830e 963xgcc$(exeext): gcc.o gccspec.o version.o intl.o prefix.o \
917acb0e 964 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
08dc830e
ZW
965 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o gccspec.o intl.o \
966 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
3aa072f2 967
4871239e 968# cpp is to cpp0 as gcc is to cc1.
922cf99e
ZW
969# The only difference from xgcc is that it's linked with cppspec.o
970# instead of gccspec.o.
4871239e 971cpp$(exeext): gcc.o cppspec.o version.o intl.o prefix.o \
922cf99e
ZW
972 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
973 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o cppspec.o intl.o \
974 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
975
3aa072f2 976# Dump a specs file to make -B./ read these specs over installed ones.
e09e14e9 977specs: xgcc$(exeext)
d521a023
RK
978 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
979 mv tmp-specs specs
79d8453e 980
acbbf3d9 981# We do want to create an executable named `xgcc', so we can use it to
79d8453e
RS
982# compile libgcc2.a.
983# Also create gcc-cross, so that install-common will install properly.
e09e14e9 984gcc-cross: xgcc$(exeext)
aab26e16 985 cp xgcc$(exeext) gcc-cross$(exeext)
79d8453e 986
b8dad04b 987cc1$(exeext): $(C_OBJS) $(BACKEND) $(LIBDEPS)
a36556a8
ZW
988 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1$(exeext) \
989 $(C_OBJS) $(BACKEND) $(LIBS)
79d8453e 990
1402d22c
RS
991# Build the version of limits.h that we will install.
992xlimits.h: glimits.h limitx.h limity.h
40dc28fc 993 if $(LIMITS_H_TEST) ; then \
d521a023 994 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
1402d22c 995 else \
d521a023 996 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
1402d22c 997 fi
d521a023 998 mv tmp-xlimits.h xlimits.h
544eb21e 999#\f
79d8453e 1000# Build libgcc.a.
a2ab7f2b 1001
52a11cbf 1002LIB2ADD = $(LIB2FUNCS_EXTRA)
fa9518de 1003LIB2ADD_ST = $(LIB2FUNCS_STATIC_EXTRA)
3ec83fc2 1004
556b821e 1005libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) $(LIB2ADD_ST) xgcc$(exeext) specs
3ec83fc2 1006 objext='$(objext)' \
3ec83fc2 1007 LIB1ASMFUNCS='$(LIB1ASMFUNCS)' \
f0df8029
DR
1008 LIB2FUNCS_1='$(LIB2FUNCS_1)' \
1009 LIB2FUNCS_2='$(LIB2FUNCS_2)' \
3fe68d0a 1010 LIB2FUNCS_ST='$(LIB2FUNCS_ST)' \
3ec83fc2 1011 LIB2ADD='$(LIB2ADD)' \
fa9518de 1012 LIB2ADD_ST='$(LIB2ADD_ST)' \
52a11cbf
RH
1013 LIB2ADDEH='$(LIB2ADDEH)' \
1014 LIB2ADDEHDEP='$(LIB2ADDEHDEP)' \
3ec83fc2
RH
1015 FPBIT='$(FPBIT)' \
1016 FPBIT_FUNCS='$(FPBIT_FUNCS)' \
fc6aa0a9 1017 LIB2_DIVMOD_FUNCS='$(LIB2_DIVMOD_FUNCS)' \
3ec83fc2
RH
1018 DPBIT='$(DPBIT)' \
1019 DPBIT_FUNCS='$(DPBIT_FUNCS)' \
1020 MULTILIBS=`$(GCC_FOR_TARGET) --print-multi-lib` \
1021 EXTRA_MULTILIB_PARTS='$(EXTRA_MULTILIB_PARTS)' \
50503ac8 1022 SHLIB_LINK='$(SHLIB_LINK)' \
2bbea3a6 1023 SHLIB_INSTALL='$(SHLIB_INSTALL)' \
aefa45d3 1024 SHLIB_EXT='$(SHLIB_EXT)' \
50503ac8 1025 SHLIB_MULTILIB='$(SHLIB_MULTILIB)' \
83dad10c 1026 SHLIB_MKMAP='$(SHLIB_MKMAP)' \
bac015e7 1027 SHLIB_MKMAP_OPTS='$(SHLIB_MKMAP_OPTS)' \
83dad10c 1028 SHLIB_MAPFILES='$(SHLIB_MAPFILES)' \
0ad7574f 1029 SHLIB_NM_FLAGS='$(SHLIB_NM_FLAGS)' \
5bbcd587 1030 MULTILIB_OSDIRNAMES='$(MULTILIB_OSDIRNAMES)' \
ef1f96f0 1031 mkinstalldirs='$(SHELL) $(srcdir)/mkinstalldirs' \
3ec83fc2 1032 $(SHELL) mklibgcc > tmp-libgcc.mk
2aceb30d
JM
1033 mv tmp-libgcc.mk libgcc.mk
1034
1035# All the things that might cause us to want to recompile bits of libgcc.
1036LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) stmp-int-hdrs $(STMP_FIXPROTO) \
7857f134 1037 libgcc.mk $(srcdir)/libgcc2.c $(TCONFIG_H) \
52a11cbf 1038 $(MACHMODE_H) longlong.h gbl-ctors.h config.status stmp-int-hdrs \
fa9518de 1039 tsystem.h $(FPBIT) $(DPBIT) $(LIB2ADD) $(LIB2ADD_ST) $(LIB2ADDEH) \
1032f705 1040 $(LIB2ADDEHDEP) $(EXTRA_PARTS) $(srcdir)/config/$(LIB1ASMSRC)
3ec83fc2 1041
2aceb30d 1042libgcc.a: $(LIBGCC_DEPS)
3ec83fc2 1043 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
5c35940c 1044 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
3ec83fc2
RH
1045 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1046 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
1047 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
5b67ad6f 1048 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3ec83fc2
RH
1049 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1050 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
83dad10c 1051 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3ec83fc2 1052 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
2cc07db4 1053 INCLUDES="$(INCLUDES)" \
11642c3a 1054 CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
d34cba2b 1055 LIB1ASMSRC='$(LIB1ASMSRC)' \
03bbd83f 1056 MAKEOVERRIDES= \
3ec83fc2 1057 -f libgcc.mk all
79d8453e 1058
f6cdc7ea
DE
1059# Use the genmultilib shell script to generate the information the gcc
1060# driver program needs to select the library directory based on the
1061# switches.
e5e809f4
JL
1062multilib.h: s-mlib; @true
1063s-mlib: $(srcdir)/genmultilib Makefile
c49d2df6
JJ
1064 if test @enable_multilib@ = yes \
1065 || test -n "$(MULTILIB_OSDIRNAMES)"; then \
4d2fb38b
JJ
1066 $(SHELL) $(srcdir)/genmultilib \
1067 "$(MULTILIB_OPTIONS)" \
1068 "$(MULTILIB_DIRNAMES)" \
1069 "$(MULTILIB_MATCHES)" \
1070 "$(MULTILIB_EXCEPTIONS)" \
1071 "$(MULTILIB_EXTRA_OPTS)" \
1072 "$(MULTILIB_EXCLUSIONS)" \
5bbcd587 1073 "$(MULTILIB_OSDIRNAMES)" \
c49d2df6 1074 "@enable_multilib@" \
4d2fb38b
JJ
1075 > tmp-mlib.h; \
1076 else \
c49d2df6
JJ
1077 $(SHELL) $(srcdir)/genmultilib '' '' '' '' '' '' '' no \
1078 > tmp-mlib.h; \
4d2fb38b 1079 fi
84c81320 1080 $(SHELL) $(srcdir)/move-if-change tmp-mlib.h multilib.h
d9835ae8 1081 $(STAMP) s-mlib
f6cdc7ea
DE
1082
1083# Build multiple copies of libgcc.a, one for each target switch.
2aceb30d 1084stmp-multilib: $(LIBGCC_DEPS)
ad3a9224 1085 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
5c35940c 1086 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
8f25d5cd 1087 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
7bde2862 1088 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
8f25d5cd 1089 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
5b67ad6f 1090 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
3ec83fc2
RH
1091 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1092 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
83dad10c 1093 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
3ec83fc2 1094 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
2cc07db4 1095 INCLUDES="$(INCLUDES)" \
3ec83fc2 1096 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
00447f7d 1097 LIB1ASMSRC='$(LIB1ASMSRC)' \
03bbd83f 1098 MAKEOVERRIDES= \
3ec83fc2 1099 -f libgcc.mk all
d9835ae8 1100 $(STAMP) stmp-multilib
ad3a9224 1101
79d8453e 1102# Compile two additional files that are linked with every program
32988c4a
RM
1103# linked using GCC on systems using COFF or ELF, for the sake of C++
1104# constructors.
11642c3a 1105$(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
52a11cbf 1106 gbl-ctors.h stmp-int-hdrs tsystem.h
cea3bd3e
RH
1107 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1108 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN \
1109 -o $(T)crtbegin$(objext)
47a22692 1110
11642c3a 1111$(T)crtend.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
52a11cbf 1112 gbl-ctors.h stmp-int-hdrs tsystem.h
cea3bd3e
RH
1113 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1114 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END \
1115 -o $(T)crtend$(objext)
32988c4a 1116
a9e6777f 1117# These are versions of crtbegin and crtend for shared libraries.
11642c3a 1118$(T)crtbeginS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
52a11cbf 1119 gbl-ctors.h stmp-int-hdrs tsystem.h
cea3bd3e
RH
1120 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1121 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O \
a9e6777f 1122 -o $(T)crtbeginS$(objext)
32988c4a 1123
11642c3a 1124$(T)crtendS.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
52a11cbf 1125 gbl-ctors.h stmp-int-hdrs tsystem.h
cea3bd3e
RH
1126 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS_S) \
1127 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_END -DCRTSTUFFS_O \
a9e6777f 1128 -o $(T)crtendS$(objext)
522170ca 1129
275b60d6
JJ
1130# This is a version of crtbegin for -static links.
1131$(T)crtbeginT.o: crtstuff.c $(GCC_PASSES) $(TCONFIG_H) auto-host.h \
1132 gbl-ctors.h stmp-int-hdrs tsystem.h
cea3bd3e
RH
1133 $(GCC_FOR_TARGET) $(CRTSTUFF_CFLAGS) $(CRTSTUFF_T_CFLAGS) \
1134 @inhibit_libc@ -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFT_O \
275b60d6
JJ
1135 -o $(T)crtbeginT$(objext)
1136
3ec83fc2
RH
1137# Compile the start modules crt0.o and mcrt0.o that are linked with
1138# every program
e5e809f4
JL
1139crt0.o: s-crt0 ; @true
1140mcrt0.o: s-crt0; @true
522170ca 1141
e5e809f4 1142s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
522170ca
RK
1143 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1144 -o crt0.o -c $(CRT0_S)
1145 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1146 -o mcrt0.o -c $(MCRT0_S)
d9835ae8 1147 $(STAMP) s-crt0
544eb21e 1148#\f
79d8453e
RS
1149# Compiling object files from source files.
1150
1151# Note that dependencies on obstack.h are not written
1152# because that file is not part of GCC.
79d8453e
RS
1153
1154# C language specific files.
1155
911e6107 1156c-errors.o: c-errors.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) flags.h \
11642c3a 1157 diagnostic.h $(TM_P_H)
81a75f0f 1158c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) $(GGC_H) intl.h \
e2500fed
GK
1159 $(C_TREE_H) input.h flags.h $(SYSTEM_H) toplev.h output.h $(CPPLIB_H) \
1160 gt-c-parse.h
96a9c44f
DR
1161 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1162 -c $(srcdir)/c-parse.c $(OUTPUT_OPTION)
0e5921e8 1163
c09cda19 1164$(srcdir)/c-parse.c: $(srcdir)/c-parse.y
b88c0704
JM
1165 cd $(srcdir) && \
1166 if $(BISON) $(BISONFLAGS) -o c-p$$$$.c c-parse.y; then \
1167 test -f c-p$$$$.output && mv -f c-p$$$$.output c-parse.output ; \
1168 mv -f c-p$$$$.c c-parse.c ; \
1169 else \
1170 rm -f c-p$$$$.* ; \
1171 false ; \
1172 fi
1173
c09cda19 1174$(srcdir)/c-parse.y: c-parse.in
49381011 1175 echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1c48d17e
RS
1176 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1177 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
49381011 1178 $(srcdir)/c-parse.in >>tmp-c-parse.y
84c81320 1179 $(SHELL) $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
1c48d17e 1180
911e6107 1181c-decl.o : c-decl.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) $(C_TREE_H) \
81a75f0f 1182 $(GGC_H) $(TARGET_H) flags.h function.h output.h $(EXPR_H) \
e2500fed
GK
1183 debug.h toplev.h intl.h $(TM_P_H) tree-inline.h $(TIMEVAR_H) c-pragma.h \
1184 gt-c-decl.h
911e6107 1185c-typeck.o : c-typeck.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
672a6f42 1186 $(TARGET_H) flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h $(TM_P_H)
911e6107 1187c-lang.o : c-lang.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
e2500fed 1188 $(GGC_H) langhooks.h $(LANGHOOKS_DEF_H) c-common.h gtype-c.h
81a75f0f 1189c-lex.o : c-lex.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) \
11ad4784 1190 debug.h $(C_TREE_H) c-common.h real.h \
8f17b5c5 1191 c-pragma.h input.h intl.h flags.h toplev.h output.h \
ef6e958a 1192 mbchar.h $(CPPLIB_H) $(EXPR_H) $(TM_P_H)
98741ec3
NB
1193c-objc-common.o : c-objc-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) \
1194 $(C_TREE_H) $(RTL_H) insn-config.h integrate.h $(EXPR_H) $(C_TREE_H) \
3b27886e 1195 flags.h toplev.h tree-inline.h diagnostic.h integrate.h $(VARRAY_H) \
38ec83b1 1196 langhooks.h $(GGC_H) gt-c-objc-common.h $(TARGET_H)
911e6107 1197c-aux-info.o : c-aux-info.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
8f17b5c5 1198 flags.h toplev.h
2e04a694 1199c-convert.o : c-convert.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h toplev.h \
a40179bd 1200 $(C_COMMON_H)
911e6107 1201c-pragma.o: c-pragma.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) function.h \
e2500fed 1202 c-pragma.h toplev.h output.h $(GGC_H) $(TM_P_H) $(C_COMMON_H) gt-c-pragma.h
911e6107
KG
1203mbchar.o: mbchar.c $(CONFIG_H) $(SYSTEM_H) mbchar.h
1204graph.o: graph.c $(CONFIG_H) $(SYSTEM_H) toplev.h flags.h output.h $(RTL_H) \
6a2cc2ac 1205 function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h
911e6107 1206sbitmap.o: sbitmap.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h hard-reg-set.h \
cbec6573 1207 $(BASIC_BLOCK_H)
79d8453e 1208
3fd9d606 1209COLLECT2_OBJS = collect2.o tlink.o intl.o version.o
4e70264f 1210COLLECT2_LIBS = @COLLECT2_LIBS@
a2d25763 1211collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
057f494b 1212# Don't try modifying collect2 (aka ld) in place--it might be linking this.
ff0a63e8 1213 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o T$@ \
4e70264f 1214 $(COLLECT2_OBJS) $(LIBS) $(COLLECT2_LIBS)
ff0a63e8 1215 mv -f T$@ $@
79d8453e 1216
911e6107 1217collect2.o : collect2.c $(CONFIG_H) $(SYSTEM_H) gstab.h intl.h \
4e872036 1218 $(OBSTACK_H) $(DEMANGLE_H) collect2.h version.h
b7b08dcd 1219 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2cc07db4 1220 -DTARGET_MACHINE=\"$(target_alias)\" \
96a9c44f 1221 -c $(srcdir)/collect2.c $(OUTPUT_OPTION)
79d8453e 1222
e2500fed
GK
1223tlink.o: tlink.c $(DEMANGLE_H) $(HASHTAB_H) $(CONFIG_H) $(SYSTEM_H) \
1224 $(OBSTACK_H) collect2.h intl.h
eaa41c8d 1225
79d8453e
RS
1226# A file used by all variants of C.
1227
911e6107 1228c-common.o : c-common.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \
8f17b5c5 1229 $(C_COMMON_H) flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
fcff1fb2 1230 $(EXPR_H) $(TM_P_H) builtin-types.def builtin-attrs.def $(TARGET_H) \
0b6f2917 1231 diagnostic.h except.h gt-c-common.h real.h langhooks.h
61ccbcfd
GDR
1232c-pretty-print.o : c-pretty-print.c c-pretty-print.h pretty-print.h \
1233 $(C_COMMON_H) $(CONFIG_H) $(SYSTEM_H) real.h
1312c143 1234
0b6f2917 1235c-opts.o : c-opts.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_COMMON_H) \
4b7091eb
NB
1236 c-pragma.h flags.h toplev.h langhooks.h tree-inline.h diagnostic.h \
1237 intl.h
0b6f2917 1238
aaed0206
RK
1239# A file used by all variants of C and some other languages.
1240
a43c8986 1241attribs.o : attribs.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h \
aaed0206 1242 toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) $(EXPR_H) $(TM_P_H) \
7ffb4fd2 1243 builtin-types.def $(TARGET_H) langhooks.h
aaed0206 1244
ab393bf1 1245c-format.o : c-format.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) langhooks.h \
1312c143 1246 $(C_COMMON_H) flags.h toplev.h intl.h diagnostic.h
79d8453e 1247
911e6107 1248c-semantics.o : c-semantics.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
81a75f0f 1249 flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
3ae9b379 1250 $(EXPR_H) $(PREDICT_H)
f2c5f623 1251
558ee214
JM
1252c-dump.o : c-dump.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) tree-dump.h
1253
79d8453e
RS
1254# Language-independent files.
1255
610c62ac 1256DRIVER_DEFINES = \
0deb20df 1257 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
2e494f70 1258 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
964ceda1 1259 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
8b06b20a 1260 -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
0deb20df 1261 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
9db0819e 1262 -DTOOLDIR_BASE_PREFIX=\"$(unlibsubdir)/../\" \
db3f0336
HPN
1263 `test "X$${SHLIB_LINK}" = "X" || test "@enable_shared@" != "yes" || echo "-DENABLE_SHARED_LIBGCC"` \
1264 `test "X$${SHLIB_MULTILIB}" = "X" || echo "-DNO_SHARED_LIBGCC_MULTILIB"`
9db0819e 1265
911e6107 1266gcc.o: gcc.c $(CONFIG_H) $(SYSTEM_H) intl.h multilib.h \
a693284d 1267 Makefile $(lang_specs_files) specs.h prefix.h $(GCC_H)
8c310e3f
MM
1268 (SHLIB_LINK='$(SHLIB_LINK)' \
1269 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
610c62ac
BK
1270 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1271 $(DRIVER_DEFINES) \
96a9c44f 1272 -c $(srcdir)/gcc.c $(OUTPUT_OPTION))
79d8453e 1273
911e6107 1274gccspec.o: gccspec.c $(CONFIG_H) $(SYSTEM_H) $(GCC_H)
38935c21
FS
1275 (SHLIB_LINK='$(SHLIB_LINK)' \
1276 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
1277 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1278 $(DRIVER_DEFINES) \
96a9c44f 1279 -c $(srcdir)/gccspec.c $(OUTPUT_OPTION))
38935c21 1280
911e6107 1281cppspec.o: cppspec.c $(CONFIG_H) $(SYSTEM_H) $(GCC_H)
08dc830e 1282
12b195d9 1283tree-check.h: s-check ; @true
193ad8c6
LB
1284s-check : gencheck$(build_exeext) $(srcdir)/move-if-change
1285 ./gencheck$(build_exeext) > tmp-check.h
84c81320 1286 $(SHELL) $(srcdir)/move-if-change tmp-check.h tree-check.h
d9835ae8 1287 $(STAMP) s-check
12b195d9 1288
193ad8c6 1289gencheck$(build_exeext) : gencheck.o $(HOST_LIBDEPS)
12b195d9
ML
1290 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1291 gencheck.o $(HOST_LIBS)
1292
911e6107 1293gencheck.o : gencheck.c gencheck.h tree.def $(HCONFIG_H) $(SYSTEM_H) \
5262d6b6 1294 $(lang_tree_files)
ab87f8c8 1295 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
96a9c44f 1296 $(srcdir)/gencheck.c $(OUTPUT_OPTION)
1a4bf22f 1297
0d24f4d1
ZW
1298gencheck.h : s-gencheck ; @true
1299s-gencheck : Makefile
766c7ad1
ZW
1300 ltf="$(lang_tree_files)"; for f in $$ltf; do \
1301 echo "#include \"$$f\""; \
0d24f4d1
ZW
1302 done | sed 's|$(srcdir)/||' > tmp-gencheck.h
1303 $(SHELL) $(srcdir)/move-if-change tmp-gencheck.h gencheck.h
1304 $(STAMP) s-gencheck
1305
1306options.h : s-options ; @true
1307s-options : Makefile
766c7ad1
ZW
1308 lof="$(lang_options_files)"; for f in $$lof; do \
1309 echo "#include \"$$f\""; \
0d24f4d1
ZW
1310 done | sed 's|$(srcdir)/||' > tmp-options.h
1311 $(SHELL) $(srcdir)/move-if-change tmp-options.h options.h
1312 $(STAMP) s-options
1313
1314specs.h : s-specs ; @true
1315s-specs : Makefile
766c7ad1
ZW
1316 lsf="$(lang_specs_files)"; for f in $$lsf; do \
1317 echo "#include \"$$f\""; \
0d24f4d1
ZW
1318 done | sed 's|$(srcdir)/||' > tmp-specs.h
1319 $(SHELL) $(srcdir)/move-if-change tmp-specs.h specs.h
1320 $(STAMP) s-specs
1321
79d8453e
RS
1322dumpvers: dumpvers.c
1323
4746ee26 1324version.o: version.c version.h
0a25f1f5 1325
e2500fed
GK
1326gtype-desc.o: gtype-desc.c $(CONFIG_H) $(SYSTEM_H) varray.h $(HASHTAB_H) \
1327 $(TREE_H) $(RTL_H) function.h insn-config.h $(EXPR_H) $(OPTABS_H) \
1328 libfuncs.h debug.h $(GGC_H) bitmap.h $(BASIC_BLOCK_H) hard-reg-set.h \
1329 ssa.h cselib.h insn-addr.h
1330
2a3e8203 1331ggc-common.o: ggc-common.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) \
e2500fed 1332 flags.h $(GGC_H) varray.h $(HASHTAB_H) $(TM_P_H) langhooks.h
b49a6a90 1333
2a3e8203 1334ggc-simple.o: ggc-simple.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
11642c3a 1335 $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H)
0a25f1f5 1336
2a3e8203
KG
1337ggc-page.o: ggc-page.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
1338 toplev.h $(GGC_H) varray.h $(TIMEVAR_H) $(TM_P_H)
21341cfd 1339
911e6107 1340stringpool.o: stringpool.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(OBSTACK_H) \
e2500fed 1341 flags.h toplev.h $(GGC_H)
520a57c8 1342
2a967f3d
NB
1343hashtable.o: hashtable.c hashtable.h $(CONFIG_H) $(SYSTEM_H) $(OBSTACK_H)
1344
fde84349 1345line-map.o: line-map.c line-map.h intl.h $(CONFIG_H) $(SYSTEM_H)
d82fc108 1346
2a3e8203 1347ggc-none.o: ggc-none.c $(GCONFIG_H) $(SYSTEM_H) $(GGC_H)
9196ece5 1348 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
0a25f1f5 1349
911e6107 1350prefix.o: prefix.c $(CONFIG_H) $(SYSTEM_H) Makefile prefix.h
e9a25f70
JL
1351 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1352 -DPREFIX=\"$(prefix)\" \
96a9c44f 1353 -c $(srcdir)/prefix.c $(OUTPUT_OPTION)
79d8453e 1354
b0c48229
NB
1355convert.o: convert.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h convert.h \
1356 toplev.h langhooks.h
c5d3565c 1357
69dcadff 1358langhooks.o : langhooks.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) toplev.h \
667ada9b 1359 tree-inline.h $(RTL_H) insn-config.h integrate.h langhooks.h \
e5f3b786 1360 $(LANGHOOKS_DEF_H) flags.h
911e6107 1361tree.o : tree.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h function.h toplev.h \
e2500fed
GK
1362 $(GGC_H) $(HASHTAB_H) $(TARGET_H) output.h $(TM_P_H) langhooks.h \
1363 real.h gt-tree.h
89d684bb
BM
1364tree-dump.o: tree-dump.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(C_TREE_H) \
1365 flags.h langhooks.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1366 $(EXPR_H) $(SPLAY_TREE_H) tree-dump.h
d4e4baa9
AO
1367tree-inline.o : tree-inline.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) \
1368 expr.h flags.h params.h input.h insn-config.h $(INTEGRATE_H) \
d23c55c2 1369 $(VARRAY_H) $(HASHTAB_H) $(SPLAY_TREE_H) toplev.h langhooks.h \
d4e4baa9 1370 $(C_COMMON_H) tree-inline.h
5d69f816 1371print-tree.o : print-tree.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(GGC_H) \
11ad4784 1372 langhooks.h real.h
911e6107 1373stor-layout.o : stor-layout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h \
43577e6b
NB
1374 function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H) $(TM_P_H) $(TARGET_H) \
1375 langhooks.h
11ad4784 1376fold-const.o : fold-const.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) flags.h real.h \
43577e6b 1377 toplev.h $(HASHTAB_H) $(EXPR_H) $(RTL_H) $(GGC_H) $(TM_P_H) langhooks.h
c895acf2
GDR
1378diagnostic.o : diagnostic.c diagnostic.h real.h diagnostic.def \
1379 $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_P_H) flags.h $(GGC_H) \
e5f3b786 1380 input.h toplev.h intl.h langhooks.h $(LANGHOOKS_DEF_H)
911e6107 1381toplev.o : toplev.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) function.h \
440aabf8 1382 flags.h xcoffout.h input.h $(INSN_ATTR_H) output.h diagnostic.h \
2b85879e 1383 debug.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h \
efc9bd41 1384 dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
c6d9a88c 1385 graph.h $(LOOP_H) except.h $(REGS_H) $(TIMEVAR_H) $(lang_options_files) \
0f81faf6 1386 ssa.h $(PARAMS_H) $(TM_P_H) reload.h dwarf2asm.h $(TARGET_H) \
907aee69 1387 langhooks.h insn-flags.h options.h cfglayout.h real.h
2cc07db4 1388 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
8b06b20a 1389 -DTARGET_NAME=\"$(target_alias)\" \
96a9c44f 1390 -c $(srcdir)/toplev.c $(OUTPUT_OPTION)
107c13a1 1391main.o : main.c $(CONFIG_H) $(SYSTEM_H) toplev.h
79d8453e 1392
c895acf2 1393rtl-error.o: rtl-error.c system.h $(RTL_H) $(INSN_ATTR_H) insn-config.h \
478c61b7 1394 input.h toplev.h intl.h diagnostic.h $(CONFIG_H)
c895acf2 1395
1f3b37a3 1396rtl.o : rtl.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) real.h $(GGC_H) errors.h
9196ece5 1397 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
79d8453e 1398
e0073fa8 1399print-rtl.o : print-rtl.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) \
907aee69 1400 hard-reg-set.h $(BASIC_BLOCK_H) real.h
bc204393 1401rtlanal.o : rtlanal.c $(CONFIG_H) $(SYSTEM_H) toplev.h $(RTL_H) \
52bfebf0 1402 hard-reg-set.h $(TM_P_H) insn-config.h $(RECOG_H) real.h flags.h
bc204393 1403
911e6107 1404errors.o : errors.c $(GCONFIG_H) $(SYSTEM_H) errors.h
9196ece5 1405 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
79d8453e 1406
911e6107 1407varasm.o : varasm.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) flags.h \
e2500fed 1408 function.h $(EXPR_H) hard-reg-set.h $(REGS_H) \
440aabf8 1409 output.h c-pragma.h toplev.h xcoffout.h debug.h $(GGC_H) $(TM_P_H) \
907aee69 1410 $(HASHTAB_H) $(TARGET_H) langhooks.h gt-varasm.h real.h
911e6107 1411function.o : function.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
da920570 1412 function.h $(EXPR_H) libfuncs.h $(REGS_H) hard-reg-set.h \
e2500fed
GK
1413 insn-config.h $(RECOG_H) output.h toplev.h except.h $(HASHTAB_H) $(GGC_H) \
1414 $(TM_P_H) langhooks.h gt-function.h
911e6107 1415stmt.o : stmt.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h function.h \
ad82abb8 1416 insn-config.h hard-reg-set.h $(EXPR_H) libfuncs.h except.h \
43577e6b 1417 $(LOOP_H) $(RECOG_H) toplev.h output.h varray.h $(GGC_H) $(TM_P_H) \
e2500fed 1418 langhooks.h $(PREDICT_H) gt-stmt.h
911e6107 1419except.o : except.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
f1e639b1 1420 except.h function.h $(EXPR_H) libfuncs.h integrate.h langhooks.h \
52a11cbf 1421 insn-config.h hard-reg-set.h $(BASIC_BLOCK_H) output.h \
e2500fed
GK
1422 dwarf2asm.h dwarf2out.h toplev.h $(HASHTAB_H) intl.h $(GGC_H) \
1423 gt-except.h
911e6107 1424expr.o : expr.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h function.h \
34e81b5a
RK
1425 $(REGS_H) $(EXPR_H) $(OPTABS_H) libfuncs.h insn-attr.h insn-config.h \
1426 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
11ad4784 1427 except.h reload.h $(GGC_H) langhooks.h intl.h $(TM_P_H) real.h
911e6107 1428builtins.o : builtins.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
e78d8e51 1429 $(TARGET_H) function.h $(REGS_H) $(EXPR_H) $(OPTABS_H) insn-config.h \
28f4ec01 1430 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
a77a9a18 1431 except.h $(TM_P_H) $(PREDICT_H) libfuncs.h real.h langhooks.h
b0c48229 1432calls.o : calls.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
23626154 1433 $(EXPR_H) langhooks.h $(TARGET_H) \
e78d8e51 1434 libfuncs.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H) $(TM_P_H)
911e6107 1435expmed.o : expmed.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
e78d8e51 1436 insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) real.h \
b0c48229 1437 toplev.h $(TM_P_H) langhooks.h
911e6107 1438explow.o : explow.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
e78d8e51 1439 hard-reg-set.h insn-config.h $(EXPR_H) $(OPTABS_H) $(RECOG_H) \
e2500fed 1440 toplev.h function.h ggc.h $(TM_P_H) gt-explow.h
911e6107 1441optabs.o : optabs.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
e78d8e51 1442 insn-config.h $(EXPR_H) $(OPTABS_H) libfuncs.h $(RECOG_H) reload.h \
e2500fed 1443 toplev.h $(GGC_H) real.h $(TM_P_H) except.h gt-optabs.h
a51d908e 1444dbxout.o : dbxout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) flags.h \
3ac88239 1445 $(REGS_H) debug.h $(TM_P_H) $(TARGET_H) function.h langhooks.h \
a51d908e 1446 insn-config.h reload.h gstab.h xcoffout.h output.h dbxout.h toplev.h
54b6670a 1447debug.o : debug.c debug.h $(CONFIG_H) $(SYSTEM_H)
a51d908e 1448sdbout.o : sdbout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) flags.h \
c913b6f1 1449 function.h $(EXPR_H) output.h hard-reg-set.h $(REGS_H) real.h \
6d9f628e 1450 insn-config.h xcoffout.h c-pragma.h ggc.h \
e2500fed 1451 sdbout.h toplev.h $(TM_P_H) except.h debug.h langhooks.h gt-sdbout.h
911e6107 1452dwarfout.o : dwarfout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) dwarf.h \
2b85879e 1453 flags.h insn-config.h reload.h output.h toplev.h $(TM_P_H) \
3ac88239 1454 debug.h langhooks.h
911e6107 1455dwarf2out.o : dwarf2out.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) dwarf2.h \
11ad4784 1456 debug.h flags.h insn-config.h reload.h output.h diagnostic.h real.h \
e78d8e51 1457 hard-reg-set.h $(REGS_H) $(EXPR_H) libfuncs.h toplev.h dwarf2out.h varray.h \
cc0017a9 1458 $(GGC_H) except.h dwarf2asm.h $(TM_P_H) langhooks.h $(HASHTAB_H) gt-dwarf2out.h
b161c505 1459dwarf2asm.o : dwarf2asm.c $(CONFIG_H) $(SYSTEM_H) flags.h $(RTL_H) $(TREE_H) \
e2500fed 1460 output.h dwarf2asm.h $(TM_P_H) $(GGC_H)
7a0c8d71 1461vmsdbgout.o : vmsdbgout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) flags.h \
dd86aabf 1462 output.h vmsdbg.h debug.h langhooks.h function.h
911e6107 1463xcoffout.o : xcoffout.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(RTL_H) xcoffout.h \
772c5265 1464 flags.h toplev.h output.h dbxout.h $(GGC_H) $(TARGET_H)
911e6107 1465emit-rtl.o : emit-rtl.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
bedda2da 1466 function.h $(REGS_H) insn-config.h $(RECOG_H) real.h $(GGC_H) \
c13e8210 1467 $(EXPR_H) $(srcdir)/../include/obstack.h hard-reg-set.h bitmap.h toplev.h \
d23c55c2 1468 $(HASHTAB_H) $(TM_P_H) debug.h langhooks.h
911e6107
KG
1469real.o : real.c $(CONFIG_H) $(SYSTEM_H) $(TREE_H) toplev.h $(TM_P_H)
1470integrate.o : integrate.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
135d50f1 1471 debug.h $(INTEGRATE_H) insn-config.h $(EXPR_H) real.h $(REGS_H) \
c6d9a88c 1472 intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H) \
e2500fed 1473 $(PARAMS_H) $(TM_P_H) $(TARGET_H) langhooks.h gt-integrate.h
911e6107 1474jump.o : jump.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h hard-reg-set.h $(REGS_H) \
5e7f4a4a 1475 insn-config.h $(RECOG_H) $(EXPR_H) real.h except.h function.h \
4db384c9 1476 toplev.h $(INSN_ATTR_H) $(TM_P_H) reload.h $(PREDICT_H)
79d8453e 1477
911e6107 1478simplify-rtx.o : simplify-rtx.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) \
fa49fd0f 1479 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
efdc7e19 1480 output.h function.h $(GGC_H) $(OBSTACK_H) $(TM_P_H) $(TREE_H)
911e6107 1481cselib.o : cselib.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) \
0cedb36c 1482 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
e2500fed 1483 output.h function.h cselib.h $(GGC_H) $(TM_P_H) gt-cselib.h
911e6107 1484cse.o : cse.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
630c79be 1485 real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h output.h function.h \
3dec4024 1486 $(BASIC_BLOCK_H) $(GGC_H) $(TM_P_H) $(TIMEVAR_H)
911e6107 1487gcse.o : gcse.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) hard-reg-set.h \
fb0c0a12 1488 flags.h real.h insn-config.h ggc.h $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) \
e2500fed 1489 function.h output.h toplev.h $(TM_P_H) $(PARAMS_H) except.h gt-gcse.h
911e6107 1490sibcall.o : sibcall.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) function.h \
0a1c58a2 1491 hard-reg-set.h flags.h insn-config.h $(RECOG_H) $(BASIC_BLOCK_H)
911e6107 1492resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h $(SYSTEM_H) \
7bdb32b9 1493 $(BASIC_BLOCK_H) $(REGS_H) flags.h output.h resource.h function.h toplev.h \
639bc36c 1494 $(INSN_ATTR_H) except.h $(PARAMS_H) $(TM_P_H)
911e6107 1495lcm.o : lcm.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
11642c3a 1496 real.h insn-config.h $(INSN_ATTR_H) $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) \
517b711f 1497 $(TM_P_H) df.h
8dc58484 1498ssa.o : ssa.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) varray.h $(EXPR_H) \
b53978a3
JO
1499 hard-reg-set.h flags.h function.h real.h insn-config.h $(RECOG_H) \
1500 $(BASIC_BLOCK_H) output.h ssa.h
0b47e4c1
JL
1501ssa-dce.o : ssa-dce.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h \
1502 $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h
1503ssa-ccp.o : ssa-ccp.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h \
1504 $(BASIC_BLOCK_H) ssa.h insn-config.h $(RECOG_H) output.h \
1505 errors.h $(GGC_H) df.h function.h
10c4b247 1506df.o : df.c $(CONFIG_H) system.h $(RTL_H) insn-config.h $(RECOG_H) \
2a6f0eca
DB
1507 function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h \
1508 $(FIBHEAP_H)
911e6107 1509conflict.o : conflict.c $(CONFIG_H) $(SYSTEM_H) $(OBSTACK_H) $(HASHTAB_H) \
efc9bd41 1510 $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H)
911e6107 1511profile.o : profile.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
ef89d648 1512 insn-config.h output.h $(REGS_H) $(EXPR_H) function.h \
43577e6b 1513 gcov-io.h toplev.h $(GGC_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TARGET_H) \
e2500fed 1514 langhooks.h profile.h libfuncs.h gt-profile.h
e78d8e51
ZW
1515loop.o : loop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h $(LOOP_H) \
1516 insn-config.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) \
ef89d648 1517 real.h $(PREDICT_H) $(BASIC_BLOCK_H) function.h \
11303d15 1518 toplev.h varray.h except.h cselib.h $(OPTABS_H) $(TM_P_H)
911e6107 1519doloop.o : doloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h $(LOOP_H) \
ef89d648 1520 $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) $(TM_P_H) toplev.h
911e6107 1521unroll.o : unroll.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) insn-config.h function.h \
a6873608 1522 $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
03e9dbc9 1523 hard-reg-set.h varray.h $(BASIC_BLOCK_H) $(TM_P_H) $(PREDICT_H) $(PARAMS_H)
911e6107 1524flow.o : flow.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h insn-config.h \
43849fa9 1525 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
5e7f4a4a 1526 function.h except.h $(EXPR_H) ssa.h $(GGC_H) $(TM_P_H)
402209ff
JH
1527cfg.o : cfg.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h insn-config.h \
1528 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
3d9339a9 1529 function.h except.h $(GGC_H) $(TM_P_H)
ca6c03ca
JH
1530cfgrtl.o : cfgrtl.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h insn-config.h \
1531 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
0a2ed1f1 1532 function.h except.h $(GGC_H) $(TM_P_H) insn-config.h
b6878a45
RH
1533cfganal.o : cfganal.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(BASIC_BLOCK_H) \
1534 hard-reg-set.h insn-config.h $(RECOG_H) $(GGC_H) $(TM_P_H)
402209ff
JH
1535cfgbuild.o : cfgbuild.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h insn-config.h \
1536 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
0f81faf6 1537 function.h except.h $(GGC_H)
b932f770 1538cfgcleanup.o : cfgcleanup.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TIMEVAR_H)\
9df9b76e 1539 $(BASIC_BLOCK_H) hard-reg-set.h output.h flags.h $(RECOG_H) toplev.h \
e4ec2cac 1540 $(GGC_H) insn-config.h cselib.h $(TARGET_H) $(TM_P_H)
402209ff
JH
1541cfgloop.o : cfgloop.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) \
1542 $(BASIC_BLOCK_H) hard-reg-set.h
911e6107 1543dominance.o : dominance.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h \
355be0dc
JH
1544 $(BASIC_BLOCK_H) et-forest.h
1545et-forest.o : et-forest.c $(CONFIG_H) $(SYSTEM_H) et-forest.h
911e6107 1546combine.o : combine.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h function.h \
da920570 1547 insn-config.h $(INSN_ATTR_H) $(REGS_H) $(EXPR_H) \
11642c3a 1548 $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h $(TM_P_H)
911e6107 1549regclass.o : regclass.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) hard-reg-set.h flags.h \
49ad7cfa 1550 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h real.h \
0829d244 1551 toplev.h function.h output.h $(GGC_H) $(TM_P_H) $(EXPR_H)
911e6107 1552local-alloc.o : local-alloc.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h \
49ad7cfa 1553 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
a4d3961a 1554 output.h function.h $(INSN_ATTR_H) toplev.h except.h $(TM_P_H)
e2500fed
GK
1555bitmap.o : bitmap.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h \
1556 $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
9196ece5 1557 $(CC) -c $(ALL_CFLAGS) -DGENERATOR_FILE $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
911e6107 1558global.o : global.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h reload.h function.h \
11642c3a
ZW
1559 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h toplev.h \
1560 $(TM_P_H)
e2500fed 1561varray.o : varray.c $(CONFIG_H) $(SYSTEM_H) varray.h $(GGC_H) errors.h
ed8d2920
MM
1562ra.o : ra.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_P_H) insn-config.h \
1563 $(RECOG_H) integrate.h function.h $(REGS_H) $(OBSTACK_H) hard-reg-set.h \
1564 $(BASIC_BLOCK_H) df.h expr.h output.h toplev.h flags.h reload.h ra.h
1565ra-build.o : ra-build.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_P_H) \
1566 insn-config.h $(RECOG_H) function.h $(REGS_H) hard-reg-set.h \
54b2a7f8 1567 $(BASIC_BLOCK_H) df.h output.h ggc.h ra.h gt-ra-build.h reload.h
ed8d2920
MM
1568ra-colorize.o : ra-colorize.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_P_H) \
1569 function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h ra.h
1570ra-debug.o : ra-debug.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) insn-config.h \
a6be5aee
KG
1571 $(RECOG_H) function.h hard-reg-set.h $(BASIC_BLOCK_H) df.h output.h ra.h \
1572 $(TM_P_H)
ed8d2920
MM
1573ra-rewrite.o : ra-rewrite.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TM_P_H) \
1574 function.h $(REGS_H) hard-reg-set.h $(BASIC_BLOCK_H) df.h expr.h \
54b2a7f8 1575 output.h except.h ra.h reload.h insn-config.h
e78d8e51
ZW
1576reload.o : reload.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h output.h \
1577 $(EXPR_H) $(OPTABS_H) reload.h $(RECOG_H) hard-reg-set.h insn-config.h \
1578 $(REGS_H) function.h real.h toplev.h $(TM_P_H)
1579reload1.o : reload1.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) real.h flags.h \
1580 $(EXPR_H) $(OPTABS_H) reload.h $(REGS_H) hard-reg-set.h insn-config.h \
39f95a2c 1581 $(BASIC_BLOCK_H) $(RECOG_H) output.h function.h toplev.h cselib.h $(TM_P_H) \
a20fd5ac 1582 except.h $(TREE_H)
911e6107 1583caller-save.o : caller-save.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h \
49ad7cfa 1584 $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \
830a47ec 1585 $(RECOG_H) reload.h $(EXPR_H) toplev.h $(TM_P_H)
911e6107 1586reorg.o : reorg.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) conditions.h hard-reg-set.h \
78b41166 1587 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(INSN_ATTR_H) except.h \
639bc36c 1588 $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h $(PARAMS_H) $(TM_P_H)
911e6107 1589alias.o : alias.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) flags.h hard-reg-set.h \
5e7f4a4a 1590 $(BASIC_BLOCK_H) $(REGS_H) toplev.h output.h $(EXPR_H) \
e2500fed
GK
1591 $(GGC_H) function.h cselib.h $(TREE_H) $(TM_P_H) langhooks.h $(TARGET_H) \
1592 gt-alias.h
911e6107 1593regmove.o : regmove.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) insn-config.h \
4b983fdc 1594 $(RECOG_H) output.h $(REGS_H) hard-reg-set.h flags.h function.h \
8461e984 1595 $(EXPR_H) $(BASIC_BLOCK_H) toplev.h $(TM_P_H) except.h reload.h
911e6107 1596haifa-sched.o : haifa-sched.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) sched-int.h \
49ad7cfa 1597 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
c237e94a 1598 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
911e6107 1599sched-deps.o : sched-deps.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) sched-int.h \
16f6ece6 1600 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
4b6c5340 1601 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h cselib.h $(PARAMS_H) $(TM_P_H)
911e6107 1602sched-rgn.o : sched-rgn.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) sched-int.h \
b4ead7d4 1603 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
fae15c93 1604 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H) $(TARGET_H)
911e6107 1605sched-ebb.o : sched-ebb.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) sched-int.h \
18e720b3 1606 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
11642c3a 1607 $(INSN_ATTR_H) toplev.h $(RECOG_H) except.h $(TM_P_H)
911e6107 1608sched-vis.o : sched-vis.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) sched-int.h \
fae15c93 1609 hard-reg-set.h $(BASIC_BLOCK_H) $(INSN_ATTR_H) $(REGS_H) $(TM_P_H) \
b3ae1ccd 1610 $(TARGET_H) real.h
911e6107 1611final.o : final.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h intl.h \
9d98a694 1612 $(REGS_H) $(RECOG_H) conditions.h insn-config.h $(INSN_ATTR_H) function.h \
b7c9bf28 1613 real.h output.h hard-reg-set.h except.h debug.h xcoffout.h profile.h \
49d801d3 1614 toplev.h reload.h dwarf2out.h $(BASIC_BLOCK_H) $(TM_P_H) $(TARGET_H) $(EXPR_H)
911e6107 1615recog.o : recog.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) function.h $(BASIC_BLOCK_H) \
f1ec5147 1616 $(REGS_H) $(RECOG_H) $(EXPR_H) hard-reg-set.h flags.h insn-config.h \
da920570 1617 $(INSN_ATTR_H) real.h toplev.h output.h reload.h $(TM_P_H)
911e6107 1618reg-stack.o : reg-stack.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) $(RECOG_H) \
2840aebf 1619 $(REGS_H) hard-reg-set.h flags.h insn-config.h toplev.h reload.h \
e2500fed 1620 varray.h function.h $(TM_P_H) $(GGC_H) gt-reg-stack.h
911e6107 1621predict.o: predict.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) flags.h \
f1ebdfc5 1622 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
194734e9
JH
1623 $(RECOG_H) function.h except.h $(EXPR_H) $(TM_P_H) $(PREDICT_H) real.h \
1624 $(PARAMS_H) $(TARGET_H)
911e6107 1625lists.o: lists.c $(CONFIG_H) $(SYSTEM_H) toplev.h $(RTL_H) $(GGC_H)
e4ec2cac
AO
1626bb-reorder.o : bb-reorder.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) \
1627 flags.h $(BASIC_BLOCK_H) hard-reg-set.h output.h cfglayout.h $(TARGET_H)
5c856b23
JH
1628tracer.o : tracer.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) \
1629 $(BASIC_BLOCK_H) hard-reg-set.h output.h cfglayout.h flags.h \
1630 $(PARAMS_H) profile.h
d56a8211
JH
1631cfglayout.o : cfglayout.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(TREE_H) \
1632 insn-config.h $(BASIC_BLOCK_H) hard-reg-set.h output.h function.h \
1633 cfglayout.h
911e6107
KG
1634timevar.o : timevar.c $(CONFIG_H) $(SYSTEM_H) $(TIMEVAR_H) flags.h intl.h
1635regrename.o : regrename.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) insn-config.h \
541f7d56 1636 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h $(RECOG_H) function.h \
11642c3a 1637 resource.h $(OBSTACK_H) flags.h $(TM_P_H)
d6684bc8 1638ifcvt.o : ifcvt.c $(CONFIG_H) $(SYSTEM_H) $(RTL_H) $(REGS_H) toplev.h \
9ec6d7ab 1639 flags.h insn-config.h function.h $(RECOG_H) $(BASIC_BLOCK_H) $(EXPR_H) \
907aee69 1640 output.h except.h $(TM_P_H) real.h
639bc36c 1641params.o : params.c $(CONFIG_H) $(SYSTEM_H) $(PARAMS_H) toplev.h
e4ec2cac 1642hooks.o: hooks.c $(CONFIG_H) $(SYSTEM_H) $(HOOKS_H)
d061bc1e 1643
bedda2da 1644$(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) $(GGC_H) \
6feacd09 1645 $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \
e78d8e51 1646 output.h $(INSN_ATTR_H) $(SYSTEM_H) toplev.h $(TARGET_H) libfuncs.h \
3ac88239
NB
1647 $(TARGET_DEF_H) function.h sched-int.h $(TM_P_H) $(EXPR_H) $(OPTABS_H) \
1648 langhooks.h
b8dad04b
ZW
1649 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1650 $(out_file) $(OUTPUT_OPTION)
79d8453e 1651
4e0db2ce
RK
1652# Build auxiliary files that support ecoff format.
1653mips-tfile: mips-tfile.o version.o $(LIBDEPS)
aab26e16 1654 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
4e0db2ce 1655
911e6107 1656mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) version.h
4e0db2ce
RK
1657
1658mips-tdump: mips-tdump.o version.o $(LIBDEPS)
aab26e16 1659 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
4e0db2ce 1660
911e6107 1661mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H)
4e0db2ce 1662
544eb21e 1663#\f
4c457b6b 1664# Generate header and source files from the machine description,
79d8453e
RS
1665# and compile them.
1666
1b0c37d7 1667.PRECIOUS: insn-config.h insn-flags.h insn-codes.h insn-constants.h \
79d8453e
RS
1668 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1669 insn-attr.h insn-attrtab.c
1670
1671# The following pair of rules has this effect:
1672# genconfig is run only if the md has changed since genconfig was last run;
1673# but the file insn-config.h is touched only when its contents actually change.
1674
1675# Each of the other insn-* files is handled by a similar pair of rules.
1676
1402d22c 1677# This causes an anomaly in the results of make -n
e5e809f4 1678# because insn-* is older than s-*
1402d22c
RS
1679# and thus make -n thinks that insn-* will be updated
1680# and force recompilation of things that depend on it.
424aa086 1681# We use move-if-change precisely to avoid such recompilation.
1402d22c
RS
1682# But there is no way to teach make -n that it will be avoided.
1683
79d8453e
RS
1684# Each of the insn-*.[ch] rules has a semicolon at the end,
1685# for otherwise the system Make on SunOS 4.1 never tries
7bd95cc1
BK
1686# to recompile insn-*.o. To avoid problems and extra noise from
1687# versions of make which don't like empty commands (nothing after the
1688# trailing `;'), we call true for each.
79d8453e 1689
e5e809f4 1690insn-config.h: s-config ; @true
193ad8c6
LB
1691s-config : $(md_file) genconfig$(build_exeext) $(srcdir)/move-if-change
1692 ./genconfig$(build_exeext) $(md_file) > tmp-config.h
84c81320 1693 $(SHELL) $(srcdir)/move-if-change tmp-config.h insn-config.h
d9835ae8 1694 $(STAMP) s-config
79d8453e 1695
2199e5fa
ZW
1696insn-conditions.c: s-conditions ; @true
1697s-conditions : $(md_file) genconditions$(build_exeext) $(srcdir)/move-if-change
1698 ./genconditions$(build_exeext) $(md_file) > tmp-conditions.c
1699 $(SHELL) $(srcdir)/move-if-change tmp-conditions.c insn-conditions.c
1700 $(STAMP) s-conditions
1701
1702insn-conditions.o : insn-conditions.c $(GCONFIG_H) $(SYSTEM_H) $(RTL_H) \
1703 $(TM_P_H) $(REGS_H) function.h $(RECOG_H) real.h output.h flags.h \
1704 hard-reg-set.h resource.h toplev.h reload.h gensupport.h insn-constants.h
1705 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) insn-conditions.c
1706
2631af95 1707dummy-conditions.o : dummy-conditions.c $(HCONFIG_H) $(SYSTEM_H) gensupport.h
2199e5fa
ZW
1708 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1709 $(srcdir)/dummy-conditions.c $(OUTPUT_OPTION)
1710
e5e809f4 1711insn-flags.h: s-flags ; @true
193ad8c6
LB
1712s-flags : $(md_file) genflags$(build_exeext) $(srcdir)/move-if-change
1713 ./genflags$(build_exeext) $(md_file) > tmp-flags.h
84c81320 1714 $(SHELL) $(srcdir)/move-if-change tmp-flags.h insn-flags.h
d9835ae8 1715 $(STAMP) s-flags
79d8453e 1716
e5e809f4 1717insn-codes.h: s-codes ; @true
193ad8c6
LB
1718s-codes : $(md_file) gencodes$(build_exeext) $(srcdir)/move-if-change
1719 ./gencodes$(build_exeext) $(md_file) > tmp-codes.h
84c81320 1720 $(SHELL) $(srcdir)/move-if-change tmp-codes.h insn-codes.h
d9835ae8 1721 $(STAMP) s-codes
79d8453e 1722
1b0c37d7
ZW
1723insn-constants.h: s-constants ; @true
1724s-constants : $(md_file) genconstants$(build_exeext) $(srcdir)/move-if-change
1725 ./genconstants$(build_exeext) $(md_file) > tmp-constants.h
1726 $(SHELL) $(srcdir)/move-if-change tmp-constants.h insn-constants.h
1727 $(STAMP) s-constants
1728
50793ea3 1729insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) $(EXPR_H) real.h output.h \
e78d8e51 1730 insn-config.h $(OPTABS_H) $(SYSTEM_H) reload.h $(RECOG_H) toplev.h \
11642c3a 1731 function.h flags.h hard-reg-set.h resource.h $(TM_P_H)
96a9c44f
DR
1732 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c \
1733 $(OUTPUT_OPTION)
79d8453e 1734
e5e809f4 1735insn-emit.c: s-emit ; @true
193ad8c6
LB
1736s-emit : $(md_file) genemit$(build_exeext) $(srcdir)/move-if-change
1737 ./genemit$(build_exeext) $(md_file) > tmp-emit.c
84c81320 1738 $(SHELL) $(srcdir)/move-if-change tmp-emit.c insn-emit.c
d9835ae8 1739 $(STAMP) s-emit
79d8453e 1740
956d6950 1741insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \
911e6107 1742 real.h output.h flags.h $(SYSTEM_H) function.h hard-reg-set.h resource.h \
5b7c7046 1743 $(TM_P_H) toplev.h reload.h
96a9c44f
DR
1744 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c \
1745 $(OUTPUT_OPTION)
79d8453e 1746
e5e809f4 1747insn-recog.c: s-recog ; @true
193ad8c6
LB
1748s-recog : $(md_file) genrecog$(build_exeext) $(srcdir)/move-if-change
1749 ./genrecog$(build_exeext) $(md_file) > tmp-recog.c
84c81320 1750 $(SHELL) $(srcdir)/move-if-change tmp-recog.c insn-recog.c
d9835ae8 1751 $(STAMP) s-recog
79d8453e 1752
5e7f4a4a 1753insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) \
e78d8e51 1754 insn-config.h flags.h $(RECOG_H) $(EXPR_H) $(OPTABS_H) reload.h $(SYSTEM_H)
96a9c44f
DR
1755 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c \
1756 $(OUTPUT_OPTION)
118bdbf8 1757
e5e809f4 1758insn-opinit.c: s-opinit ; @true
193ad8c6
LB
1759s-opinit : $(md_file) genopinit$(build_exeext) $(srcdir)/move-if-change
1760 ./genopinit$(build_exeext) $(md_file) > tmp-opinit.c
84c81320 1761 $(SHELL) $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
d9835ae8 1762 $(STAMP) s-opinit
118bdbf8 1763
911e6107 1764insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) toplev.h \
43849fa9 1765 insn-config.h $(RECOG_H)
96a9c44f
DR
1766 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c \
1767 $(OUTPUT_OPTION)
79d8453e 1768
e5e809f4 1769insn-extract.c: s-extract ; @true
193ad8c6
LB
1770s-extract : $(md_file) genextract$(build_exeext) $(srcdir)/move-if-change
1771 ./genextract$(build_exeext) $(md_file) > tmp-extract.c
84c81320 1772 $(SHELL) $(srcdir)/move-if-change tmp-extract.c insn-extract.c
d9835ae8 1773 $(STAMP) s-extract
79d8453e 1774
7f7f8214 1775insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) $(REGS_H) output.h real.h \
911e6107 1776 $(SYSTEM_H) insn-config.h $(RECOG_H) except.h function.h $(TM_P_H)
96a9c44f
DR
1777 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c \
1778 $(OUTPUT_OPTION)
79d8453e 1779
e5e809f4 1780insn-peep.c: s-peep ; @true
193ad8c6
LB
1781s-peep : $(md_file) genpeep$(build_exeext) $(srcdir)/move-if-change
1782 ./genpeep$(build_exeext) $(md_file) > tmp-peep.c
84c81320 1783 $(SHELL) $(srcdir)/move-if-change tmp-peep.c insn-peep.c
d9835ae8 1784 $(STAMP) s-peep
79d8453e 1785
114791ea 1786insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) $(REGS_H) real.h \
2840aebf
KG
1787 output.h $(INSN_ATTR_H) insn-config.h $(SYSTEM_H) toplev.h $(RECOG_H) \
1788 $(TM_P_H) flags.h
96a9c44f
DR
1789 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c \
1790 $(OUTPUT_OPTION)
79d8453e 1791
e5e809f4 1792insn-attr.h: s-attr ; @true
193ad8c6
LB
1793s-attr : $(md_file) genattr$(build_exeext) $(srcdir)/move-if-change
1794 ./genattr$(build_exeext) $(md_file) > tmp-attr.h
84c81320 1795 $(SHELL) $(srcdir)/move-if-change tmp-attr.h insn-attr.h
d9835ae8 1796 $(STAMP) s-attr
79d8453e 1797
e5e809f4 1798insn-attrtab.c: s-attrtab ; @true
193ad8c6
LB
1799s-attrtab : $(md_file) genattrtab$(build_exeext) $(srcdir)/move-if-change
1800 ./genattrtab$(build_exeext) $(md_file) > tmp-attrtab.c
84c81320 1801 $(SHELL) $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
d9835ae8 1802 $(STAMP) s-attrtab
79d8453e 1803
bedda2da 1804insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) $(GGC_H) $(REGS_H) real.h \
f3a8030a 1805 conditions.h hard-reg-set.h insn-config.h $(INSN_ATTR_H) $(EXPR_H) \
911e6107 1806 output.h $(RECOG_H) function.h $(SYSTEM_H) toplev.h flags.h \
298d914f 1807 insn-codes.h $(TM_P_H)
96a9c44f
DR
1808 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c \
1809 $(OUTPUT_OPTION)
79d8453e 1810
e5e809f4 1811insn-output.c: s-output ; @true
193ad8c6
LB
1812s-output : $(md_file) genoutput$(build_exeext) $(srcdir)/move-if-change
1813 ./genoutput$(build_exeext) $(md_file) > tmp-output.c
84c81320 1814 $(SHELL) $(srcdir)/move-if-change tmp-output.c insn-output.c
d9835ae8 1815 $(STAMP) s-output
3b80f6ca 1816
911e6107 1817genrtl.o : genrtl.c $(CONFIG_H) $(RTL_H) $(SYSTEM_H) $(GGC_H)
e5e809f4 1818genrtl.c genrtl.h : s-genrtl
a3f80023
AS
1819 @true # force gnu make to recheck modification times.
1820
193ad8c6 1821s-genrtl: gengenrtl$(build_exeext) $(srcdir)/move-if-change $(RTL_BASE_H)
1b0c37d7 1822 ./gengenrtl$(build_exeext) -h > tmp-genrtl.h
84c81320 1823 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
1b0c37d7 1824 ./gengenrtl$(build_exeext) > tmp-genrtl.c
84c81320 1825 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
d9835ae8 1826 $(STAMP) s-genrtl
1b0c37d7
ZW
1827
1828tm-preds.h: s-preds; @true
1829
1830s-preds: genpreds$(build_exeext) $(srcdir)/move-if-change
1831 ./genpreds$(build_exeext) > tmp-preds.h
1832 $(SHELL) $(srcdir)/move-if-change tmp-preds.h tm-preds.h
1833 $(STAMP) s-preds
1834
e6986399 1835GTFILES = $(GCONFIG_H) $(srcdir)/location.h \
e2500fed
GK
1836 $(HASHTAB_H) \
1837 $(srcdir)/bitmap.h $(srcdir)/function.h $(srcdir)/rtl.h $(srcdir)/optabs.h \
1838 $(srcdir)/tree.h $(srcdir)/libfuncs.h $(srcdir)/hashtable.h $(srcdir)/real.h \
1839 $(srcdir)/varray.h $(srcdir)/ssa.h $(srcdir)/insn-addr.h $(srcdir)/cselib.h \
1840 $(srcdir)/c-common.h $(srcdir)/c-tree.h \
a8106207 1841 $(srcdir)/basic-block.h \
e2500fed 1842 $(srcdir)/alias.c $(srcdir)/bitmap.c $(srcdir)/cselib.c \
3df5d99e 1843 $(srcdir)/dwarf2out.c $(srcdir)/emit-rtl.c \
e2500fed
GK
1844 $(srcdir)/except.c $(srcdir)/explow.c $(srcdir)/expr.c \
1845 $(srcdir)/fold-const.c $(srcdir)/function.c \
1846 $(srcdir)/gcse.c $(srcdir)/integrate.c $(srcdir)/lists.c $(srcdir)/optabs.c \
ed8d2920
MM
1847 $(srcdir)/profile.c $(srcdir)/ra-build.c $(srcdir)/regclass.c \
1848 $(srcdir)/reg-stack.c \
e2500fed
GK
1849 $(srcdir)/sdbout.c $(srcdir)/stmt.c $(srcdir)/stor-layout.c \
1850 $(srcdir)/tree.c $(srcdir)/varasm.c \
e2500fed 1851 $(out_file) \
e2500fed
GK
1852 @all_gtfiles@
1853
8ac9d31f
TJ
1854GTFILES_FILES_LANGS = @all_gtfiles_files_langs@
1855GTFILES_FILES_FILES = @all_gtfiles_files_files@
1856GTFILES_LANG_DIR_NAMES = @subdirs@
1857GTFILES_SRCDIR = @srcdir@
1858
e2500fed
GK
1859gtype-desc.h gtype-desc.c gt-except.h gt-function.h : s-gtype; @true
1860gt-integrate.h gt-stmt.h gt-tree.h gt-varasm.h gt-emit-rtl.h : s-gtype; @true
1861gt-explow.h gt-stor-layout.h gt-regclass.h gt-lists.h : s-gtype; @true
1862gt-alias.h gt-cselib.h gt-fold-const.h gt-gcse.h gt-profile.h : s-gtype; @true
1863gt-expr.h gt-sdbout.h gt-optabs.h gt-bitmap.h gt-dwarf2out.h : s-gtype ; @true
3df5d99e 1864gt-ra-build.h gt-reg-stack.h : s-gtype ; @true
e2500fed 1865gt-c-common.h gt-c-decl.h gt-c-parse.h gt-c-pragma.h : s-gtype; @true
e6986399 1866gt-c-objc-common.h gtype-c.h gt-location.h : s-gtype ; @true
e2500fed 1867
8ac9d31f
TJ
1868gtyp-gen.h: Makefile
1869 echo "/* This file is machine generated. Do not edit. */" > tmp-gtyp.h
1870 echo "static const char *srcdir = " >> tmp-gtyp.h
1871 echo "\"$(GTFILES_SRCDIR)\"" >> tmp-gtyp.h
1872 echo ";" >> tmp-gtyp.h
1873 echo "static const char *lang_files[] = {" >> tmp-gtyp.h
1874 ll="$(GTFILES_FILES_FILES)"; \
1875 for f in $$ll; do \
1876 echo "\"$$f\", "; done >> tmp-gtyp.h
1877 echo "NULL};" >> tmp-gtyp.h
1878 echo "static const char *langs_for_lang_files[] = {" >> tmp-gtyp.h
1879 ff="$(GTFILES_FILES_LANGS)"; \
1880 for f in $$ff; do \
1881 echo "\"$$f\", " ; done >> tmp-gtyp.h
1882 echo "NULL};" >> tmp-gtyp.h
1883 echo "static const char *all_files[] = {" >> tmp-gtyp.h
1884 gf="$(GTFILES)"; \
1885 for f in $$gf; do \
1886 echo "\"$$f\", "; done >> tmp-gtyp.h
1887 echo " NULL};" >> tmp-gtyp.h
1888 echo "static const char *lang_dir_names[] = { \"c\", " >> tmp-gtyp.h
1889 gf="$(GTFILES_LANG_DIR_NAMES)"; \
1890 for l in $$gf; do \
1891 echo "\"$$l\", "; done >> tmp-gtyp.h
1892 echo "NULL};" >> tmp-gtyp.h
1893 $(SHELL) $(srcdir)/move-if-change tmp-gtyp.h gtyp-gen.h
1894
b835f6f1 1895s-gtype: gengtype$(build_exeext) $(GTFILES)
8ac9d31f 1896 ./gengtype
e2500fed
GK
1897 $(STAMP) s-gtype
1898
544eb21e 1899#\f
79d8453e
RS
1900# Compile the programs that generate insn-* from the machine description.
1901# They are compiled with $(HOST_CC), and associated libraries,
1902# since they need to run on this machine
1903# even if GCC is being compiled to run on some other machine.
1904
1905# $(CONFIG_H) is omitted from the deps of the gen*.o
4c457b6b 1906# because these programs don't really depend on anything
79d8453e
RS
1907# about the target machine. They do depend on config.h itself,
1908# since that describes the host machine.
1909
0f40f9f7
ZW
1910read-rtl.o: read-rtl.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \
1911 $(OBSTACK_H) $(HASHTAB_H)
96a9c44f 1912 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/read-rtl.c $(OUTPUT_OPTION)
0f40f9f7 1913
911e6107 1914gensupport.o: gensupport.c $(RTL_H) $(OBSTACK_H) $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1915 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c $(OUTPUT_OPTION)
3916d6d8 1916
2199e5fa
ZW
1917genconfig$(build_exeext) : genconfig.o $(HOST_RTL) $(HOST_SUPPORT) \
1918 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1919 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1920 genconfig.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1921 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1922
11642c3a 1923genconfig.o : genconfig.c $(RTL_H) $(HCONFIG_H) \
911e6107 1924 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1925 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c $(OUTPUT_OPTION)
79d8453e 1926
2199e5fa
ZW
1927genflags$(build_exeext) : genflags.o $(HOST_RTL) $(HOST_SUPPORT) \
1928 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1929 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1930 genflags.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1931 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1932
11642c3a 1933genflags.o : genflags.c $(RTL_H) $(OBSTACK_H) $(HCONFIG_H) \
911e6107 1934 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1935 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c $(OUTPUT_OPTION)
79d8453e 1936
2199e5fa
ZW
1937gencodes$(build_exeext) : gencodes.o $(HOST_RTL) $(HOST_SUPPORT) \
1938 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1939 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1940 gencodes.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1941 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1942
11642c3a 1943gencodes.o : gencodes.c $(RTL_H) $(HCONFIG_H) \
911e6107 1944 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1945 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c $(OUTPUT_OPTION)
79d8453e 1946
2199e5fa
ZW
1947genconstants$(build_exeext) : genconstants.o $(HOST_RTL) $(HOST_EARLY_SUPPORT) \
1948 $(HOST_ERRORS) $(HOST_LIBDEPS)
1b0c37d7 1949 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1950 genconstants.o $(HOST_EARLY_SUPPORT) $(HOST_RTL) \
1951 $(HOST_ERRORS) $(HOST_LIBS)
1b0c37d7
ZW
1952
1953genconstants.o : genconstants.c $(RTL_H) $(HCONFIG_H) $(SYSTEM_H) errors.h
96a9c44f 1954 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconstants.c $(OUTPUT_OPTION)
1b0c37d7 1955
2199e5fa
ZW
1956genemit$(build_exeext) : genemit.o $(HOST_RTL) $(HOST_SUPPORT) \
1957 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1958 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1959 genemit.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1960 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1961
911e6107 1962genemit.o : genemit.c $(RTL_H) $(HCONFIG_H) $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1963 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c $(OUTPUT_OPTION)
79d8453e 1964
2199e5fa
ZW
1965genopinit$(build_exeext) : genopinit.o $(HOST_RTL) $(HOST_SUPPORT) \
1966 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1967 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1968 genopinit.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1969 $(HOST_ERRORS) $(HOST_LIBS)
118bdbf8 1970
11642c3a 1971genopinit.o : genopinit.c $(RTL_H) $(HCONFIG_H) \
911e6107 1972 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1973 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c $(OUTPUT_OPTION)
118bdbf8 1974
2199e5fa
ZW
1975genrecog$(build_exeext) : genrecog.o $(HOST_RTL) $(HOST_SUPPORT) \
1976 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1977 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1978 genrecog.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1979 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1980
11642c3a 1981genrecog.o : genrecog.c $(RTL_H) $(HCONFIG_H) \
911e6107 1982 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 1983 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c $(OUTPUT_OPTION)
193ad8c6 1984
2199e5fa
ZW
1985genextract$(build_exeext) : genextract.o $(HOST_RTL) $(HOST_SUPPORT) \
1986 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1987 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1988 genextract.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1989 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1990
11642c3a 1991genextract.o : genextract.c $(RTL_H) $(HCONFIG_H) \
911e6107 1992 $(SYSTEM_H) insn-config.h errors.h gensupport.h
96a9c44f 1993 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c $(OUTPUT_OPTION)
79d8453e 1994
2199e5fa
ZW
1995genpeep$(build_exeext) : genpeep.o $(HOST_RTL) $(HOST_SUPPORT) \
1996 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1997 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
1998 genpeep.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
1999 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 2000
911e6107 2001genpeep.o : genpeep.c $(RTL_H) $(HCONFIG_H) $(SYSTEM_H) errors.h gensupport.h
96a9c44f 2002 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c $(OUTPUT_OPTION)
79d8453e 2003
2199e5fa
ZW
2004genattr$(build_exeext) : genattr.o $(HOST_RTL) $(HOST_SUPPORT) \
2005 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 2006 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
2007 genattr.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
2008 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 2009
911e6107 2010genattr.o : genattr.c $(RTL_H) $(HCONFIG_H) $(SYSTEM_H) errors.h gensupport.h
96a9c44f 2011 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c $(OUTPUT_OPTION)
79d8453e 2012
935bfb44 2013genattrtab$(build_exeext) : genattrtab.o genautomata.o \
2199e5fa
ZW
2014 $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_VARRAY) \
2015 $(HOST_LIBDEPS)
aab26e16 2016 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
935bfb44 2017 genattrtab.o genautomata.o \
2199e5fa
ZW
2018 $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) $(HOST_ERRORS) \
2019 $(HOST_VARRAY) $(HOST_LIBS) -lm
79d8453e 2020
11642c3a 2021genattrtab.o : genattrtab.c $(RTL_H) $(OBSTACK_H) $(HCONFIG_H) \
fae15c93 2022 $(SYSTEM_H) errors.h $(GGC_H) gensupport.h genattrtab.h
96a9c44f 2023 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c $(OUTPUT_OPTION)
79d8453e 2024
fae15c93 2025genautomata.o : genautomata.c $(RTL_H) $(OBSTACK_H) $(HCONFIG_H) \
e2500fed 2026 $(SYSTEM_H) errors.h varray.h genattrtab.h $(HASHTAB_H)
fae15c93
VM
2027 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genautomata.c $(OUTPUT_OPTION)
2028
2199e5fa
ZW
2029genoutput$(build_exeext) : genoutput.o $(HOST_RTL) $(HOST_SUPPORT) \
2030 $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 2031 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2199e5fa
ZW
2032 genoutput.o $(HOST_RTL) $(HOST_SUPPORT) $(HOST_PRINT) \
2033 $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 2034
11642c3a 2035genoutput.o : genoutput.c $(RTL_H) $(HCONFIG_H) \
911e6107 2036 $(SYSTEM_H) errors.h gensupport.h
96a9c44f 2037 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c $(OUTPUT_OPTION)
3b80f6ca 2038
193ad8c6 2039gengenrtl$(build_exeext) : gengenrtl.o $(HOST_LIBDEPS)
3b80f6ca
RH
2040 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2041 gengenrtl.o $(HOST_LIBS)
2042
911e6107 2043gengenrtl.o : gengenrtl.c $(RTL_BASE_H) $(HCONFIG_H) $(SYSTEM_H) real.h
96a9c44f 2044 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c $(OUTPUT_OPTION)
1b0c37d7
ZW
2045
2046genpreds$(build_exeext) : genpreds.o $(HOST_LIBDEPS)
2047 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2048 genpreds.o $(HOST_LIBS)
2049
2050genpreds.o : genpreds.c $(RTL_BASE_H) $(HCONFIG_H) $(SYSTEM_H)
96a9c44f 2051 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpreds.c $(OUTPUT_OPTION)
1b0c37d7 2052
e2500fed
GK
2053gengtype$(build_exeext) : gengtype.o gengtype-lex.o gengtype-yacc.o \
2054 $(HOST_LIBDEPS)
2055 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2056 gengtype.o gengtype-lex.o gengtype-yacc.o $(HOST_LIBS)
2057
36a5eadd
GK
2058gengtype.o : gengtype.c gengtype.h $(HCONFIG_H) $(SYSTEM_H) real.h rtl.def \
2059 gtyp-gen.h
e2500fed
GK
2060 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
2061 $(srcdir)/gengtype.c $(OUTPUT_OPTION)
2062
ba462c8e 2063gengtype-lex.o : $(srcdir)/gengtype-lex.c gengtype.h $(srcdir)/gengtype-yacc.c \
e2500fed
GK
2064 $(HCONFIG_H) $(SYSTEM_H)
2065 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
2066 $(srcdir)/gengtype-lex.c $(OUTPUT_OPTION)
2067
ba462c8e 2068gengtype-yacc.o : $(srcdir)/gengtype-yacc.c gengtype.h $(HCONFIG_H) $(SYSTEM_H)
e2500fed
GK
2069 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
2070 $(srcdir)/gengtype-yacc.c $(OUTPUT_OPTION)
2071
e66f55b8 2072# The sed command works around a bug in flex-2.5.4.
e2500fed 2073$(srcdir)/gengtype-lex.c : $(srcdir)/gengtype-lex.l
e66f55b8 2074 cd $(srcdir) && \
6fd327e9 2075 $(FLEX) $(FLEXFLAGS) -t -o$@ gengtype-lex.l | \
e66f55b8
KG
2076 sed 's/^\(char msg\[\];\)/yyconst \1/' > g-$$$$ ; \
2077 if test $$? -eq 0 ; then \
2078 mv -f g-$$$$ gengtype-lex.c ; \
2079 else \
2080 rm -f g-$$$$.* ; \
2081 false ; \
2082 fi
e2500fed
GK
2083
2084$(srcdir)/gengtype-yacc.c: $(srcdir)/gengtype-yacc.y
2085 (cd $(srcdir) && \
2086 $(BISON) $(BISONFLAGS) -d -o gengtype-yacc.c gengtype-yacc.y || \
2087 ( rm -f $@ && false ) )
2088
2199e5fa
ZW
2089genconditions$(build_exeext) : genconditions.o $(HOST_EARLY_SUPPORT) \
2090 $(HOST_RTL) $(HOST_ERRORS) $(HOST_LIBDEPS)
2091 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
2092 genconditions.o $(HOST_EARLY_SUPPORT) $(HOST_RTL) \
2093 $(HOST_ERRORS) $(HOST_LIBS)
2094
2095genconditions.o : genconditions.c $(RTL_H) $(HCONFIG_H) $(SYSTEM_H) errors.h
2096 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
2097 $(srcdir)/genconditions.c $(OUTPUT_OPTION)
2098
544eb21e 2099#\f
79d8453e
RS
2100# Compile the libraries to be used by gen*.
2101# If we are not cross-building, gen* use the same .o's that cc1 will use,
5c35940c 2102# and BUILD_PREFIX_1 is `loser-', just to ensure these rules don't conflict
b548dffb 2103# with the rules for rtl.o, etc.
5c35940c 2104$(BUILD_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(HCONFIG_H) $(SYSTEM_H) $(RTL_H) \
66e918e5 2105 real.h $(GGC_H) errors.h
5c35940c
NN
2106 rm -f $(BUILD_PREFIX)rtl.c
2107 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(BUILD_PREFIX)rtl.c
2108 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)rtl.c $(OUTPUT_OPTION)
79d8453e 2109
4d2d910c 2110print-rtl1.o: $(srcdir)/print-rtl.c $(HCONFIG_H) \
66e918e5 2111 $(RTL_H) $(TREE_H) hard-reg-set.h $(BASIC_BLOCK_H)
4d2d910c
RH
2112 rm -f print-rtl1.c
2113 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > print-rtl1.c
2114 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) print-rtl1.c $(OUTPUT_OPTION)
d3614a37 2115
e2500fed
GK
2116$(BUILD_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(HCONFIG_H) $(SYSTEM_H) \
2117 $(RTL_H) flags.h $(BASIC_BLOCK_H) $(REGS_H) $(GGC_H)
5c35940c
NN
2118 rm -f $(BUILD_PREFIX)bitmap.c
2119 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(BUILD_PREFIX)bitmap.c
2120 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)bitmap.c $(OUTPUT_OPTION)
0dfa1860 2121
5c35940c
NN
2122$(BUILD_PREFIX_1)errors.o: errors.c $(HCONFIG_H) $(SYSTEM_H) errors.h
2123 rm -f $(BUILD_PREFIX)errors.c
2124 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/errors.c > $(BUILD_PREFIX)errors.c
2125 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)errors.c $(OUTPUT_OPTION)
f8b6598e 2126
fde59d4b
AO
2127$(BUILD_PREFIX_1)varray.o: varray.c $(HCONFIG_H) $(SYSTEM_H) varray.h \
2128 $(RTL_H) $(GGC_H) $(TREE_H) bitmap.h errors.h
5c35940c 2129 rm -f $(BUILD_PREFIX)varray.c
935bfb44 2130 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/varray.c > \
5c35940c 2131 $(BUILD_PREFIX)varray.c
935bfb44 2132 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
5c35940c 2133 $(BUILD_PREFIX)varray.c $(OUTPUT_OPTION)
fae15c93 2134
77ca7b2e 2135$(BUILD_PREFIX_1)ggc-none.o: ggc-none.c $(HCONFIG_H) $(SYSTEM_H) $(GGC_H)
5c35940c
NN
2136 rm -f $(BUILD_PREFIX)ggc-none.c
2137 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/ggc-none.c > $(BUILD_PREFIX)ggc-none.c
2138 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(BUILD_PREFIX)ggc-none.c $(OUTPUT_OPTION)
d7160de9 2139
ab87f8c8
JL
2140#\f
2141# Remake internationalization support.
191bf464 2142intl.o: intl.c $(CONFIG_H) system.h intl.h Makefile
ab87f8c8
JL
2143 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2144 -DLOCALEDIR=\"$(localedir)\" \
96a9c44f 2145 -c $(srcdir)/intl.c $(OUTPUT_OPTION)
ab87f8c8 2146
c4c37359 2147$(top_builddir)/intl/libintl.a: intl.all
ab87f8c8 2148
436a88a6 2149intl.all intl.install intl.uninstall \
ab87f8c8
JL
2150 intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
2151 @for d in $(INTL_SUBDIRS); do \
2152 target=`expr $@ : 'intl.\(.*\)'` && \
2153 echo "(cd $$d && $(MAKE) $$target)" && \
2154 (cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
031926e2 2155 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
ab87f8c8
JL
2156 done
2157
5b7874aa
ZW
2158# intl.all and intl.install need config.h to exist, and the files it includes.
2159# (FIXME: intl/*.c shouldn't need to see insn-foo.h!)
2160intl.all intl.install: config.h insn-flags.h insn-constants.h
2161
2162# Make-lang.in should add dependencies of po-generated on any generated
2163# files which need to be scanned by gettext (usually Yacc-generated parsers).
353a10d0 2164po-generated: c-parse.c
5b7874aa 2165
544eb21e 2166#\f
79d8453e
RS
2167# Remake cpp and protoize.
2168
d059a239
FF
2169PREPROCESSOR_DEFINES = \
2170 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
2171 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
3e897b66 2172 -DGPLUSPLUS_TOOL_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/$(target_alias)\" \
98c2359b 2173 -DGPLUSPLUS_BACKWARD_INCLUDE_DIR=\"$(gcc_gxx_include_dir)/backward\" \
793e9558 2174 -DLOCAL_INCLUDE_DIR=\"$(local_includedir)\" \
d059a239
FF
2175 -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \
2176 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\"
79d8453e 2177
004cb263 2178LIBCPP_OBJS = cpplib.o cpplex.o cppmacro.o cppexp.o cppfiles.o cpptrad.o \
aaf93206 2179 cpphash.o cpperror.o cppinit.o cppdefault.o cppmain.o \
5a9ee623 2180 hashtable.o line-map.o mkdeps.o prefix.o mbchar.o
19283265 2181
ef6e958a 2182LIBCPP_DEPS = $(CPPLIB_H) cpphash.h line-map.h hashtable.h intl.h \
d82fc108 2183 $(OBSTACK_H) $(SYSTEM_H)
8ebb00d5 2184
a36556a8
ZW
2185# Most of the other archives built/used by this makefile are for
2186# targets. This one is strictly for the host.
19283265 2187libcpp.a: $(LIBCPP_OBJS)
b8d12d79 2188 -rm -rf libcpp.a
8f25d5cd 2189 $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
6822468a 2190 -$(RANLIB) libcpp.a
19283265 2191
1a76916c 2192cppmain.o: cppmain.c $(CONFIG_H) $(LIBCPP_DEPS)
66334b64 2193
8ebb00d5 2194cpperror.o: cpperror.c $(CONFIG_H) $(LIBCPP_DEPS)
c913b6f1 2195cppexp.o: cppexp.c $(CONFIG_H) $(LIBCPP_DEPS)
c8a96070 2196cpplex.o: cpplex.c $(CONFIG_H) $(LIBCPP_DEPS) mbchar.h
711b8824 2197cppmacro.o: cppmacro.c $(CONFIG_H) $(LIBCPP_DEPS)
2a967f3d
NB
2198cpplib.o: cpplib.c $(CONFIG_H) $(LIBCPP_DEPS)
2199cpphash.o: cpphash.c $(CONFIG_H) $(LIBCPP_DEPS)
004cb263 2200cpptrad.o: cpptrad.c $(CONFIG_H) $(LIBCPP_DEPS)
5193cc6d 2201cppfiles.o: cppfiles.c $(CONFIG_H) $(LIBCPP_DEPS) $(SPLAY_TREE_H) mkdeps.h
60893f43 2202cppinit.o: cppinit.c $(CONFIG_H) $(LIBCPP_DEPS) cppdefault.h \
f4ff5a69 2203 mkdeps.h prefix.h
e915b770 2204
911e6107 2205cppdefault.o: cppdefault.c $(CONFIG_H) $(SYSTEM_H) cppdefault.h Makefile
59949f60 2206 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
d059a239 2207 $(PREPROCESSOR_DEFINES) \
96a9c44f 2208 -c $(srcdir)/cppdefault.c $(OUTPUT_OPTION)
5538ada6 2209
911e6107 2210mkdeps.o: mkdeps.c $(CONFIG_H) $(SYSTEM_H) mkdeps.h
49e6c08e 2211
7bd95cc1
BK
2212# Note for the stamp targets, we run the program `true' instead of
2213# having an empty command (nothing following the semicolon).
2214
e09e14e9 2215proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
79d8453e 2216
75a65e46 2217PROTO_OBJS = intl.o version.o cppdefault.o
ab87f8c8
JL
2218
2219protoize$(exeext): protoize.o $(PROTO_OBJS) $(LIBDEPS)
2220 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ protoize.o $(PROTO_OBJS) $(LIBS)
2e0b13db 2221
ab87f8c8
JL
2222unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS)
2223 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ unprotoize.o $(PROTO_OBJS) $(LIBS)
2e0b13db 2224
911e6107 2225protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) $(SYSTEM_H) \
9f8f4efe 2226 Makefile version.h
8c310e3f
MM
2227 (SHLIB_LINK='$(SHLIB_LINK)' \
2228 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
79d8453e 2229 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
75a65e46 2230 $(DRIVER_DEFINES) \
8c310e3f 2231 $(srcdir)/protoize.c $(OUTPUT_OPTION))
6c32c807 2232
75a65e46 2233unprotoize.o: protoize.c $(srcdir)/../include/getopt.h \
911e6107 2234 $(CONFIG_H) $(SYSTEM_H) Makefile version.h
8c310e3f
MM
2235 (SHLIB_LINK='$(SHLIB_LINK)' \
2236 SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
75a65e46
ZW
2237 $(CC) -c -DUNPROTOIZE $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
2238 $(DRIVER_DEFINES) \
2239 $(srcdir)/protoize.c $(OUTPUT_OPTION))
79d8453e 2240
79d8453e 2241# This info describes the target machine, so compile with GCC just built.
aab26e16
RK
2242SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
2243 stmp-int-hdrs
c21cf0a7 2244 -rm -f SYSCALLS.c tmp-SYSCALLS.s
e256b8b6
DA
2245 sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2246 $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
79d8453e 2247 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
c21cf0a7
RS
2248 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
2249 -rm -f SYSCALLS.c tmp-SYSCALLS.s
9c0022f6 2250
ac1284f9 2251
9c0022f6 2252test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
4803a34a 2253 -rm -f tmp-proto.[cso]
d3614a37
RS
2254 cp $(srcdir)/protoize.c tmp-proto.c
2255 chmod u+w tmp-proto.c
4803a34a 2256 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
d059a239 2257 $(GCC_CFLAGS) $(INCLUDES) \
9c0022f6
RS
2258 -DGCC_INCLUDE_DIR=0 \
2259 -DGPLUSPLUS_INCLUDE_DIR=0 \
2260 -DCROSS_INCLUDE_DIR=0 \
14b18068 2261 -DTOOL_INCLUDE_DIR=0 \
d059a239
FF
2262 -DSTANDARD_EXEC_PREFIX=0 \
2263 -DDEFAULT_TARGET_MACHINE=0 \
2264 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
e3e873d2 2265 @echo '**********' Expect 400 lines of differences.
4803a34a
RK
2266 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
2267 -wc -l tmp-proto.diff
2268 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
d059a239 2269 $(GCC_CFLAGS) $(INCLUDES) \
9c0022f6
RS
2270 -DGCC_INCLUDE_DIR=0 \
2271 -DGPLUSPLUS_INCLUDE_DIR=0 \
2272 -DCROSS_INCLUDE_DIR=0 \
14b18068 2273 -DTOOL_INCLUDE_DIR=0 \
d059a239
FF
2274 -DSTANDARD_EXEC_PREFIX=0 \
2275 -DDEFAULT_TARGET_MACHINE=0 \
2276 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
9c0022f6 2277 @echo Expect zero differences.
d3614a37 2278 diff $(srcdir)/protoize.c tmp-proto.c | cat
aab26e16 2279 -rm -f tmp-proto.[cs] tmp-proto$(objext)
59a64126 2280
911e6107 2281gcov.o: gcov.c gcov-io.h intl.h $(SYSTEM_H) $(CONFIG_H)
59a64126 2282
2ea9a965
NC
2283# Only one of 'gcov' or 'gcov.exe' is actually built, depending
2284# upon whether $(exeext) is empty or not.
5735c3ea 2285GCOV_OBJS = gcov.o intl.o version.o
ab87f8c8
JL
2286gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
2287 $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
544eb21e 2288#\f
ba1811f1 2289# Build the include directory. The stamp files are stmp-* rather than
e5e809f4 2290# s-* so that mostlyclean does not force the include directory to
ba1811f1
ILT
2291# be rebuilt.
2292
d57a4b98 2293# Build the include directory
f95e46b9 2294stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h
ba1811f1
ILT
2295# Copy in the headers provided with gcc.
2296# The sed command gets just the last file name component;
2297# this is necessary because VPATH could add a dirname.
2298# Using basename would be simpler, but some systems don't have it.
c85f7c16 2299# The touch command is here to workaround an AIX/Linux NFS bug.
7bfe3c97 2300 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
d7371761
RK
2301 for file in .. $(USER_H); do \
2302 if [ X$$file != X.. ]; then \
2303 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
d9835ae8 2304 $(STAMP) include/$$realfile; \
ae678a13
JW
2305 rm -f include/$$realfile; \
2306 cp $$file include; \
2307 chmod a+r include/$$realfile; \
d7371761 2308 fi; \
ba1811f1 2309 done
1f050b9b 2310 rm -f include/limits.h
ba1811f1
ILT
2311 cp xlimits.h include/limits.h
2312 chmod a+r include/limits.h
e7f62ad3
MH
2313# Install the README
2314 rm -f include/README
2315 cp $(srcdir)/README-fixinc include/README
2316 chmod a+r include/README
d9835ae8 2317 $(STAMP) $@
e7f62ad3 2318
f2321837
KG
2319# fixinc.sh depends on this, not on specs directly.
2320# The idea is to make sure specs gets built, but not rerun fixinc.sh
2321# after each stage just because specs' mtime has changed.
2322specs.ready: specs
2323 -if [ -f specs.ready ] ; then \
2324 true; \
2325 else \
d9835ae8 2326 $(STAMP) specs.ready; \
f2321837
KG
2327 fi
2328
5d55e5cd
RL
2329FIXINCSRCDIR=$(srcdir)/fixinc
2330fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
f7d920fd
RL
2331 $(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
2332 $(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
f2321837 2333 $(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
1e6347d8 2334 (MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc && ${PWD}` ; \
d93f142f 2335 CC="$(HOST_CC)"; CFLAGS="$(HOST_CFLAGS)"; LDFLAGS="$(HOST_LDFLAGS)"; \
9c101f4a
KG
2336 WARN_CFLAGS="$(WARN_CFLAGS)"; \
2337 export MAKE srcdir CC CFLAGS LDFLAGS WARN_CFLAGS; cd ./fixinc && \
3769600a 2338 $(SHELL) $${srcdir}/mkfixinc.sh $(build_canonical) $(target))
9f3d1bc2 2339
ba1811f1 2340# Build fixed copies of system files.
9f3d1bc2
BK
2341stmp-fixinc: fixinc.sh gsyslimits.h
2342 rm -rf include; mkdir include
c5c76735 2343 -chmod a+rx include
1e6347d8 2344 (TARGET_MACHINE='$(target)'; srcdir=`cd $(srcdir); ${PWD}`; \
fecd6201
ZW
2345 SHELL='$(SHELL)' ;\
2346 export TARGET_MACHINE srcdir SHELL ; \
1e6347d8 2347 $(SHELL) ./fixinc.sh `${PWD}`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); \
b8dad04b 2348 rm -f include/syslimits.h; \
3dc4a939
RK
2349 if [ -f include/limits.h ]; then \
2350 mv include/limits.h include/syslimits.h; \
2351 else \
2352 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
b8dad04b
ZW
2353 fi; \
2354 chmod a+r include/syslimits.h)
f098ead2 2355# If $(SYSTEM_HEADER_DIR) is $(build_tooldir)/sys-include, and
1f72bfca 2356# that directory exists, then make sure that $(libsubdir) exists.
f098ead2 2357# This is because cpp is compiled to find $(gcc_tooldir)/include via
1f72bfca
JL
2358# $(libsubdir)/$(unlibsubdir), which will only work if $(libsubdir)
2359# exists.
f098ead2
RH
2360# ??? Better would be to use -isystem $(build_tooldir)/sys-include,
2361# but fixincludes does not take such arguments.
2362 if [ "$(SYSTEM_HEADER_DIR)" = "$(build_tooldir)/sys-include" ] \
2363 && [ -d $(build_tooldir)/sys-include ]; then \
1f72bfca
JL
2364 if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi; \
2365 if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib; fi; \
2366 if [ -d $(libdir)/gcc-lib/$(target_alias) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias) ; fi; \
2367 if [ -d $(libdir)/gcc-lib/$(target_alias)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias)/$(version) ; fi; \
2368 else true; fi
d9835ae8 2369 $(STAMP) stmp-fixinc
469778e2 2370
ac1284f9 2371# Files related to the fixproto script.
f95e46b9
ZW
2372# gen-protos and fix-header are compiled with HOST_CC, but they are only
2373# used in native and host-x-target builds, so it's safe to link them with
2374# libiberty.a.
ac1284f9 2375
74bb4fdf 2376deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
40859b41
JL
2377 if [ -d $(SYSTEM_HEADER_DIR) ]; \
2378 then \
3c9a2b55 2379 CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -isystem include -isystem ${SYSTEM_HEADER_DIR}"; \
ac1284f9 2380 export CC; \
40859b41
JL
2381 $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
2382 mv tmp-deduced.h deduced.h; \
2383 else \
d9835ae8 2384 $(STAMP) deduced.h; \
40859b41 2385 fi
ac1284f9 2386
5fa7f88c 2387GEN_PROTOS_OBJS = gen-protos.o scan.o
193ad8c6
LB
2388gen-protos$(build_exeext): $(GEN_PROTOS_OBJS)
2389 ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
06f0b04c 2390 $(GEN_PROTOS_OBJS) $(HOST_LIBS)
ac1284f9 2391
911e6107 2392gen-protos.o: gen-protos.c scan.h $(HCONFIG_H) $(SYSTEM_H)
96a9c44f 2393 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c $(OUTPUT_OPTION)
c192da27 2394
911e6107 2395scan.o: scan.c scan.h $(HCONFIG_H) $(SYSTEM_H)
96a9c44f 2396 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c $(OUTPUT_OPTION)
7b41f815 2397
193ad8c6 2398xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos$(build_exeext) Makefile
e256b8b6
DA
2399 sed -e s/TARGET_GETGROUPS_T/$(TARGET_GETGROUPS_T)/ \
2400 deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
d521a023 2401 mv tmp-fixtmp.c fixtmp.c
c061c5d7 2402 $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
c1b9947f 2403 | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
d521a023
RK
2404 | ./gen-protos >xsys-protos.hT
2405 mv xsys-protos.hT xsys-protos.h
d7a58f93 2406 rm -rf fixtmp.c
ac1284f9 2407
6650a443
ZW
2408# This is nominally a 'build' program, but it's run only when host==build,
2409# so we can (indeed, must) use $(LIBDEPS) and $(LIBS).
d577781c
LB
2410fix-header$(build_exeext): fix-header.o scan-decls.o scan.o xsys-protos.h \
2411 $(LIBDEPS) libcpp.a
aab26e16 2412 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ fix-header.o \
6650a443 2413 scan-decls.o scan.o libcpp.a $(LIBS)
ac1284f9 2414
4e872036 2415fix-header.o: fix-header.c $(OBSTACK_H) scan.h \
ef6e958a 2416 xsys-protos.h $(HCONFIG_H) $(SYSTEM_H) $(CPPLIB_H)
96a9c44f 2417 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c $(OUTPUT_OPTION)
c192da27 2418
ef6e958a 2419scan-decls.o: scan-decls.c scan.h $(CPPLIB_H) $(HCONFIG_H) $(SYSTEM_H)
96a9c44f 2420 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c $(OUTPUT_OPTION)
ac1284f9 2421
74bb4fdf
RS
2422# stmp-fixproto depends on this, not on fix-header directly.
2423# The idea is to make sure fix-header gets built,
2424# but not rerun fixproto after each stage
2425# just because fix-header's mtime has changed.
d577781c 2426fixhdr.ready: fix-header$(build_exeext)
74bb4fdf
RS
2427 -if [ -f fixhdr.ready ] ; then \
2428 true; \
2429 else \
d9835ae8 2430 $(STAMP) fixhdr.ready; \
74bb4fdf
RS
2431 fi
2432
f95e46b9 2433# stmp-int-headers is to make sure fixincludes has already finished.
700ba19c
RS
2434# The if statement is so that we don't run fixproto a second time
2435# if it has already been run on the files in `include'.
f95e46b9 2436stmp-fixproto: fixhdr.ready fixproto stmp-int-hdrs
01b2995f 2437 if [ -f include/fixed ] ; then true; \
700ba19c 2438 else \
b1f99e2f 2439 : This line works around a 'make' bug in BSDI 1.1.; \
b3ca463c 2440 FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
bcf1ba1d
AO
2441 mkinstalldirs="$(SHELL) $(srcdir)/mkinstalldirs"; \
2442 export mkinstalldirs; \
aef1617c
JL
2443 if [ -d $(SYSTEM_HEADER_DIR) ] ; then \
2444 $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
01b2995f 2445 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
aef1617c 2446 else true; fi; \
d9835ae8 2447 $(STAMP) include/fixed; \
700ba19c 2448 fi
d9835ae8 2449 $(STAMP) stmp-fixproto
544eb21e 2450#\f
79d8453e
RS
2451# Remake the info files.
2452
95e30ecc
DD
2453docdir = $(srcdir)/doc
2454
51817b10 2455doc: $(BUILD_INFO) $(GENERATED_MANPAGES) gccbug
d7f8491b 2456info: $(docdir)/cpp.info $(docdir)/gcc.info $(docdir)/gccint.info $(docdir)/gccinstall.info lang.info $(docdir)/cppinternals.info
79d8453e 2457
e2500fed 2458TEXI_CPP_FILES = $(docdir)/cpp.texi $(docdir)/include/fdl.texi \
40adaa27 2459 $(docdir)/cppenv.texi $(docdir)/cppopts.texi
79d8453e 2460
e2500fed 2461TEXI_GCC_FILES = $(docdir)/gcc.texi $(docdir)/include/gcc-common.texi \
b11cc610
JM
2462 $(docdir)/frontends.texi $(docdir)/standards.texi \
2463 $(docdir)/invoke.texi $(docdir)/extend.texi $(docdir)/md.texi \
2464 $(docdir)/objc.texi $(docdir)/gcov.texi $(docdir)/trouble.texi \
2465 $(docdir)/bugreport.texi $(docdir)/service.texi \
7c19f816 2466 $(docdir)/contribute.texi $(docdir)/vms.texi $(docdir)/compat.texi \
b11cc610
JM
2467 $(docdir)/include/funding.texi $(docdir)/gnu.texi \
2468 $(docdir)/include/gpl.texi $(docdir)/include/fdl.texi \
40adaa27 2469 $(docdir)/contrib.texi $(docdir)/cppenv.texi $(docdir)/cppopts.texi
f780d21b 2470
e2500fed 2471TEXI_GCCINT_FILES = $(docdir)/gccint.texi \
b11cc610
JM
2472 $(docdir)/include/gcc-common.texi $(docdir)/contribute.texi \
2473 $(docdir)/makefile.texi $(docdir)/configterms.texi \
2474 $(docdir)/portability.texi $(docdir)/interface.texi \
2475 $(docdir)/passes.texi $(docdir)/c-tree.texi \
2476 $(docdir)/rtl.texi $(docdir)/md.texi $(docdir)/tm.texi \
2477 $(docdir)/hostconfig.texi $(docdir)/fragments.texi \
2478 $(docdir)/configfiles.texi $(docdir)/collect2.texi \
2479 $(docdir)/headerdirs.texi $(docdir)/include/funding.texi \
2480 $(docdir)/gnu.texi $(docdir)/include/gpl.texi \
0a553c7e 2481 $(docdir)/include/fdl.texi $(docdir)/contrib.texi \
e2500fed
GK
2482 $(docdir)/languages.texi $(docdir)/sourcebuild.texi \
2483 $(docdir)/gty.texi
2484
d7f8491b
RO
2485TEXI_GCCINSTALL_FILES = $(docdir)/install.texi $(docdir)/install-old.texi \
2486 $(docdir)/include/fdl.texi
2487
e2500fed
GK
2488TEXI_CPPINT_FILES = $(docdir)/cppinternals.texi
2489
2490$(docdir)/cpp.info: $(TEXI_CPP_FILES)
2491 cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -I doc -I doc/include -o doc/cpp.info doc/cpp.texi
2492
2493$(docdir)/gcc.info: $(TEXI_GCC_FILES)
2494 cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -I doc -I doc/include -o doc/gcc.info doc/gcc.texi
2495
2496$(docdir)/gccint.info: $(TEXI_GCCINT_FILES)
b11cc610
JM
2497 cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -I doc -I doc/include -o doc/gccint.info doc/gccint.texi
2498
d7f8491b
RO
2499$(docdir)/gccinstall.info: $(TEXI_GCCINSTALL_FILES)
2500 cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -I doc -I doc/include -o doc/gccinstall.info doc/install.texi
2501
e2500fed 2502$(docdir)/cppinternals.info: $(TEXI_CPPINT_FILES)
0671eaf6 2503 cd $(srcdir) && $(MAKEINFO) $(MAKEINFOFLAGS) -I doc -I doc/include -o doc/cppinternals.info \
95e30ecc 2504 doc/cppinternals.texi
23de1fbf 2505
d7f8491b 2506dvi: gcc.dvi gccint.dvi gccinstall.dvi cpp.dvi lang.dvi cppinternals.dvi
8dbda01e 2507
dd08cdda 2508# This works with GNU Make's default rule.
e2500fed 2509cpp.dvi: $(TEXI_CPP_FILES)
0671eaf6 2510 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cpp.texi
95e30ecc 2511
e2500fed 2512gcc.dvi: $(TEXI_GCC_FILES)
0671eaf6 2513 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gcc.texi
95e30ecc 2514
e2500fed 2515gccint.dvi: $(TEXI_GCCINT_FILES)
b11cc610
JM
2516 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/gccint.texi
2517
d7f8491b 2518gccinstall.dvi: $(TEXI_GCCINSTALL_FILES)
c2727579
RO
2519 s=`cd $(srcdir); ${PWD}`; export s; \
2520 $(TEXI2DVI) -I $$s/doc -I $$s/doc/include -o $@ $$s/doc/install.texi
d7f8491b 2521
e2500fed 2522cppinternals.dvi: $(TEXI_CPPINT_FILES)
0671eaf6 2523 $(TEXI2DVI) -I $(docdir) -I $(docdir)/include $(docdir)/cppinternals.texi
95e30ecc 2524
77bd67cb 2525generated-manpages: $(docdir)/gcov.1 $(docdir)/cpp.1 $(docdir)/gcc.1 \
d3945f0a
JM
2526 $(docdir)/gfdl.7 $(docdir)/gpl.7 $(docdir)/fsf-funding.7 \
2527 lang.generated-manpages
95e30ecc
DD
2528
2529$(docdir)/gcov.1: $(docdir)/gcov.texi
2530 $(STAMP) $(docdir)/gcov.1
049b03f4 2531 -$(TEXI2POD) $(docdir)/gcov.texi > gcov.pod
77bd67cb 2532 -($(POD2MAN) --section=1 gcov.pod > $(docdir)/gcov.1.T$$$$ && \
95e30ecc
DD
2533 mv -f $(docdir)/gcov.1.T$$$$ $(docdir)/gcov.1) || \
2534 (rm -f $(docdir)/gcov.1.T$$$$ && exit 1)
ce3b8848 2535 -rm -f gcov.pod
c01a508e 2536
40adaa27
NB
2537$(docdir)/cpp.1: $(docdir)/cpp.texi $(docdir)/cppenv.texi \
2538 $(docdir)/cppopts.texi
95e30ecc 2539 $(STAMP) $(docdir)/cpp.1
049b03f4 2540 -$(TEXI2POD) $(docdir)/cpp.texi > cpp.pod
77bd67cb 2541 -($(POD2MAN) --section=1 cpp.pod > $(docdir)/cpp.1.T$$$$ && \
95e30ecc
DD
2542 mv -f $(docdir)/cpp.1.T$$$$ $(docdir)/cpp.1) || \
2543 (rm -f $(docdir)/cpp.1.T$$$$ && exit 1)
ce3b8848 2544 -rm -f cpp.pod
fd939e46 2545
40adaa27
NB
2546$(docdir)/gcc.1: $(docdir)/invoke.texi $(docdir)/cppenv.texi \
2547 $(docdir)/cppopts.texi
95e30ecc 2548 $(STAMP) $(docdir)/gcc.1
049b03f4 2549 -$(TEXI2POD) $(docdir)/invoke.texi > gcc.pod
77bd67cb 2550 -($(POD2MAN) --section=1 gcc.pod > $(docdir)/gcc.1.T$$$$ && \
95e30ecc
DD
2551 mv -f $(docdir)/gcc.1.T$$$$ $(docdir)/gcc.1) || \
2552 (rm -f $(docdir)/gcc.1.T$$$$ && exit 1)
ce3b8848 2553 -rm -f gcc.pod
4bc1997b 2554
77bd67cb
JM
2555$(docdir)/gfdl.7: $(docdir)/include/fdl.texi
2556 $(STAMP) $(docdir)/gfdl.7
049b03f4 2557 -$(TEXI2POD) $(docdir)/include/fdl.texi > gfdl.pod
77bd67cb
JM
2558 -($(POD2MAN) --section=7 gfdl.pod > $(docdir)/gfdl.7.T$$$$ && \
2559 mv -f $(docdir)/gfdl.7.T$$$$ $(docdir)/gfdl.7) || \
2560 (rm -f $(docdir)/gfdl.7.T$$$$ && exit 1)
2561 -rm -f gfdl.pod
2562
2563$(docdir)/gpl.7: $(docdir)/include/gpl.texi
2564 $(STAMP) $(docdir)/gpl.7
049b03f4 2565 -$(TEXI2POD) $(docdir)/include/gpl.texi > gpl.pod
77bd67cb
JM
2566 -($(POD2MAN) --section=7 gpl.pod > $(docdir)/gpl.7.T$$$$ && \
2567 mv -f $(docdir)/gpl.7.T$$$$ $(docdir)/gpl.7) || \
2568 (rm -f $(docdir)/gpl.7.T$$$$ && exit 1)
2569 -rm -f gpl.pod
2570
2571$(docdir)/fsf-funding.7: $(docdir)/include/funding.texi
2572 $(STAMP) $(docdir)/fsf-funding.7
049b03f4 2573 -$(TEXI2POD) $(docdir)/include/funding.texi > fsf-funding.pod
77bd67cb
JM
2574 -($(POD2MAN) --section=7 fsf-funding.pod \
2575 > $(docdir)/fsf-funding.7.T$$$$ && \
2576 mv -f $(docdir)/fsf-funding.7.T$$$$ $(docdir)/fsf-funding.7) || \
2577 (rm -f $(docdir)/fsf-funding.7.T$$$$ && exit 1)
2578 -rm -f fsf-funding.pod
2579
544eb21e 2580#\f
79d8453e
RS
2581# Deletion of files made during compilation.
2582# There are four levels of this:
f1908d70 2583# `mostlyclean', `clean', `distclean' and `maintainer-clean'.
79d8453e 2584# `mostlyclean' is useful while working on a particular type of machine.
2e494f70 2585# It deletes most, but not all, of the files made by compilation.
79d8453e 2586# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2e494f70 2587# `clean' deletes everything made by running `make all'.
47547081 2588# `distclean' also deletes the files made by config.
f1908d70 2589# `maintainer-clean' also deletes everything that could be regenerated
63d9b81c
RK
2590# automatically, except for `configure'.
2591# We remove as much from the language subdirectories as we can
013a2ee0 2592# (less duplicated code).
79d8453e 2593
2051eea1
NS
2594INTL_MOSTLYCLEAN = intl.mostlyclean
2595mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
79d8453e 2596 -rm -f $(STAGESTUFF)
22aa533e 2597 -rm -f *$(coverageexts)
4993ddc1 2598 -rm -rf libgcc
79d8453e 2599# Delete the temporary source copies for cross compilation.
5c35940c
NN
2600 -rm -f $(BUILD_PREFIX_1)rtl.c $(BUILD_PREFIX_1)print-rtl.c
2601 -rm -f $(BUILD_PREFIX_1)bitmap.c $(BUILD_PREFIX_1)errors.c
2602 -rm -f $(BUILD_PREFIX_1)ggc-none.c
79d8453e 2603# Delete the temp files made in the course of building libgcc.a.
7857f134 2604 -rm -f xlimits.h
e5e809f4 2605# Delete other built files.
d57a4b98 2606 -rm -f xsys-protos.hT
ad854f24 2607 -rm -f specs.h options.h gencheck.h
e5e809f4
JL
2608# Delete the stamp and temporary files.
2609 -rm -f s-* tmp-* stamp-* stmp-*
013a2ee0 2610 -rm -f */stamp-* */tmp-*
2e494f70 2611# Delete debugging dump files.
61098249 2612 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
2e494f70 2613# Delete some files made during installation.
d57a4b98 2614 -rm -f specs SYSCALLS.c.X SYSCALLS.c
b548dffb 2615 -rm -f collect collect2 mips-tfile mips-tdump
ac1284f9 2616# Delete files generated for fixproto
d577781c 2617 -rm -rf fix-header$(build_exeext) xsys-protos.h deduced.h tmp-deduced.h \
193ad8c6 2618 gen-protos$(build_exeext) fixproto.list fixtmp.* fixhdr.ready
fa9c7493
ZW
2619# Delete files generated for fixincl
2620 -rm -rf fixincl fixinc.sh specs.ready
f0267a67 2621 (cd fixinc && $(MAKE) clean)
2e494f70
RS
2622# Delete unwanted output files from TeX.
2623 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
013a2ee0 2624 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
47547081
RS
2625# Delete sorted indices we don't actually use.
2626 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2e494f70 2627# Delete core dumps.
013a2ee0 2628 -rm -f core */core
8ac9d31f
TJ
2629# Delete file generated for gengtype.c
2630 -rm -f gtyp-gen.h
2631# Delete files generated by gengtype.c
2632 -rm -f gtype-*
2633 -rm -f gt-*
79d8453e 2634
47547081
RS
2635# Delete all files made by compilation
2636# that don't exist in the distribution.
2051eea1
NS
2637INTL_CLEAN = intl.clean
2638clean: mostlyclean $(INTL_CLEAN) lang.clean
275b60d6 2639 -rm -f libgcc.a libgcc_eh.a libgcc_s$(SHLIB_EXT) libgcc_s$(SHLIB_EXT).1
5262d6b6 2640 -rm -f config.h tconfig.h hconfig.h tm_p.h
11642c3a 2641 -rm -f cs-*
97d81d66 2642 -rm -rf libgcc
be0d23ff 2643 -rm -f *.dvi
013a2ee0 2644 -rm -f */*.dvi
ba1811f1 2645# Delete the include directory.
e5e809f4 2646 -rm -rf include
75ed5d8b 2647# Delete files used by the "multilib" facility (including libgcc subdirs).
f6cdc7ea 2648 -rm -f multilib.h tmpmultilib*
75ed5d8b
DE
2649 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2650 rm -rf $(MULTILIB_DIRNAMES); \
2651 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2652 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2653 fi ; fi
5768f211 2654 -rm -fr stage1 stage2 stage3 stage4
204093e6 2655# Delete stamps of bootstrap stages
770861f3
DD
2656 -rm -f stage?_*
2657 -rm -f clean?_*
2658 -rm -f stage_last
79d8453e 2659
47547081
RS
2660# Delete all files that users would normally create
2661# while building and installing GCC.
ab87f8c8
JL
2662INTL_DISTCLEAN = intl.distclean
2663distclean: clean $(INTL_DISTCLEAN) lang.distclean
11642c3a 2664 -rm -f auto-host.h auto-build.h
d1209685 2665 -rm -f cstamp-h
63d9b81c 2666 -rm -f config.status config.run config.cache config.bak
d232dfa4 2667 -rm -f Make-lang Make-hooks Make-host Make-target
ad854f24 2668 -rm -f Makefile *.oaux
f24af81b 2669 -rm -f gthr-default.h
26f887e5 2670 -rm -f */stage1 */stage2 */stage3 */stage4 */include
3dab45b7 2671 -rm -f c-parse.output
338023d4 2672 -rm -f *.asm
a051ad3a 2673 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
ad854f24 2674 -rm -f testsuite/*.log testsuite/*.sum
1bb1f121
ZW
2675 -cd testsuite && rm -f x *.x *.x? *.exe *.rpo *.o *.s *.S *.c
2676 -cd testsuite && rm -f *.out *.gcov *.bb *.bbg
f362c762 2677 -rm -rf ${QMTEST_DIR} stamp-qmtest
ab87f8c8 2678 -rm -f intl/libintl.h libintl.h
06f0b04c 2679 -rm -f cxxmain.c
ad854f24 2680 -rm -f mklibgcc mkheaders gccbug .gdbinit configargs.h
c01a508e 2681 -rm -f gcov.pod
5fcee6f3 2682 -rm -f fixinc/Makefile
ad854f24
ZW
2683# Delete po/*.gmo only if we are not building in the source directory.
2684 -if [ ! -f po/exgettext ]; then rm -f po/*.gmo; fi
2685 -rmdir ada cp f java objc fixinc intl po testsuite 2>/dev/null
2e494f70
RS
2686
2687# Delete anything likely to be found in the source directory
2688# that shouldn't be in the distribution.
013a2ee0 2689extraclean: distclean lang.extraclean
fb92d909 2690 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
be0d23ff 2691 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
3dab45b7
RS
2692 -rm -f config/*/=* config/*/"#"* config/*/*~*
2693 -rm -f config/*/*.orig config/*/*.rej
d72a7857 2694 -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
184be4bf 2695 -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
3dab45b7 2696 -rm -f *lose config/*lose config/*/*lose
e5e809f4 2697 -rm -f *.s *.s[0-9] *.i config/ChangeLog
ab87f8c8 2698 -rm -f y.tab.c yacc.*
013a2ee0
DE
2699 -rm -f */=* */"#"* */*~*
2700 -rm -f */patch* */*.orig */*.rej
2701 -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2702 -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2703 -rm -f */*lose */*.s */*.s[0-9] */*.i
79d8453e 2704
63d9b81c 2705# Get rid of every file that's generated from some other file, except for `configure'.
79d8453e 2706# Most of these files ARE PRESENT in the GCC distribution.
2051eea1
NS
2707# We define INTL_DISTCLEAN, INTL_CLEAN & INTL_MOSTLYCLEAN to be empty in the
2708# submake, so that we don't descend into intl after its makefile has been
2709# removed.
63d9b81c
RK
2710maintainer-clean:
2711 @echo 'This command is intended for maintainers to use; it'
2712 @echo 'deletes files that may need special tools to rebuild.'
2051eea1
NS
2713 $(MAKE) INTL_DISTCLEAN= INTL_CLEAN= INTL_MOSTLYCLEAN= \
2714 intl.maintainer-clean lang.maintainer-clean distclean
0e5921e8 2715 -rm -f c-parse.y c-parse.c c-parse.output TAGS
17db6582
JM
2716 -rm -f cpp.??s cpp.*aux
2717 -rm -f gcc.??s gcc.*aux
b11cc610 2718 -rm -f $(docdir)/cpp.info* $(docdir)/gcc.info* $(docdir)/gccint.info*
95e30ecc
DD
2719 -rm -f $(docdir)/cppinternals.info*
2720 -rm -f $(docdir)/gcov.1 $(docdir)/cpp.1 $(docdir)/gcc.1
77bd67cb 2721 -rm -f $(docdir)/fsf-funding.7 $(docdir)/gfdl.7 $(docdir)/gpl.7
544eb21e 2722#\f
79d8453e 2723# Entry points `install' and `uninstall'.
2e494f70 2724# Also use `install-collect2' to install collect2 when the config files don't.
79d8453e 2725
ba1811f1 2726# Copy the compiler files into directories where they will be run.
aab26e16
RK
2727# Install the driver last so that the window when things are
2728# broken is small.
a078a589 2729install: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
1e730c5c 2730 install-cpp install-man install-info intl.install install-@POSUB@ \
09fa0705 2731 lang.install-normal install-driver
79d8453e 2732
587a4ba6 2733# Handle cpp installation.
4871239e 2734install-cpp: cpp$(exeext)
9799e470
AS
2735 -if [ -f gcc-cross$(exeext) ] ; then \
2736 rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
4871239e 2737 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
9799e470
AS
2738 if [ x$(cpp_install_dir) != x ]; then \
2739 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
4871239e 2740 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
9799e470
AS
2741 else true; fi; \
2742 else \
2743 rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
4871239e 2744 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
9799e470
AS
2745 if [ x$(cpp_install_dir) != x ]; then \
2746 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
4871239e 2747 $(INSTALL_PROGRAM) -m 755 cpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
9799e470
AS
2748 else true; fi; \
2749 fi
587a4ba6 2750
69cbb85a
RK
2751# Create the installation directories.
2752installdirs:
2753 -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
2754 -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
394fa7c8
JW
2755 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
2756 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
9eb91772 2757# This dir isn't currently searched by cpp.
394fa7c8 2758# -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
05fd993d
MH
2759 -fdir= ; for dir in `echo $(libsubdir) | tr '/' ' '`; do \
2760 fdir=$${fdir}/$${dir}; \
2761 if [ -d $${fdir} ] ; then true ; else mkdir $${fdir}; chmod a+rx $${fdir}; fi ; \
2762 done
394fa7c8
JW
2763 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
2764 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
394fa7c8 2765 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
2bbea3a6 2766 -if [ -d $(slibdir) ] ; then true ; else mkdir $(slibdir) ; chmod a+rx $(slibdir) ; fi
a76b6b40 2767# We don't use mkdir -p to create the parents of man1dir,
79d8453e 2768# because some systems don't support it.
a76b6b40
MH
2769# Instead, we use this technique to create the immediate parent of man1dir.
2770 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
394fa7c8 2771 if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
a76b6b40 2772 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; chmod a+rx $(man1dir) ; fi
77bd67cb 2773 -if [ -d $(man7dir) ] ; then true ; else mkdir $(man7dir) ; chmod a+rx $(man7dir) ; fi
79d8453e
RS
2774
2775# Install the compiler executables built during cross compilation.
e658449e 2776install-common: native $(EXTRA_PARTS) lang.install-common
79d8453e
RS
2777 for file in $(COMPILERS); do \
2778 if [ -f $$file ] ; then \
2779 rm -f $(libsubdir)/$$file; \
2780 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2781 else true; \
2782 fi; \
2783 done
2fe8d2d6 2784 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
79d8453e
RS
2785 if [ x"$$file" != x.. ]; then \
2786 rm -f $(libsubdir)/$$file; \
2787 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2788 else true; fi; \
2789 done
2fe8d2d6
RK
2790 for file in $(EXTRA_PARTS) ..; do \
2791 if [ x"$$file" != x.. ]; then \
2792 rm -f $(libsubdir)/$$file; \
2793 $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
e9a25f70 2794 chmod a-x $(libsubdir)/$$file; \
2fe8d2d6
RK
2795 else true; fi; \
2796 done
f0ec1f64 2797# Don't mess with specs if it doesn't exist yet.
2a7bccbb
TG
2798 -if [ -f specs ] ; then \
2799 rm -f $(libsubdir)/specs; \
f0ec1f64 2800 $(INSTALL_DATA) specs $(libsubdir)/specs; \
e9a25f70 2801 chmod a-x $(libsubdir)/specs; \
f0ec1f64 2802 fi
aab26e16
RK
2803# Install protoize if it was compiled.
2804 -if [ -f protoize$(exeext) ]; \
2805 then \
225695a4
JW
2806 if [ -f gcc-cross$(exeext) ] ; then \
2807 rm -f $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2808 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2809 rm -f $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2810 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2811 else \
2812 rm -f $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2813 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2814 rm -f $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2815 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2816 fi ; \
aab26e16
RK
2817 rm -f $(libsubdir)/SYSCALLS.c.X; \
2818 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
2819 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
2820 fi
ca363bb6 2821# Install gcov if it was compiled.
59a64126
DE
2822 -if [ -f gcov$(exeext) ]; \
2823 then \
2824 rm -f $(bindir)/gcov$(exeext); \
23473647 2825 $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
59a64126 2826 fi
c29593dc 2827 $(INSTALL_SCRIPT) gccbug $(bindir)/$(GCCBUG_INSTALL_NAME)
aab26e16 2828
37a4aa31
GK
2829# Install the driver program as $(target_alias)-gcc,
2830# $(target-alias)-gcc-$(version)
91c7bd9b 2831# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
e658449e 2832install-driver: installdirs xgcc$(exeext)
173712fb
RK
2833 -if [ -f gcc-cross$(exeext) ] ; then \
2834 rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
94a8b9fe 2835 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
37a4aa31 2836 $(LN) $(bindir)/$(GCC_CROSS_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-$(version) ; \
91c7bd9b
JL
2837 if [ -d $(gcc_tooldir)/bin/. ] ; then \
2838 rm -f $(gcc_tooldir)/bin/gcc$(exeext); \
2839 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(gcc_tooldir)/bin/gcc$(exeext); \
79d8453e
RS
2840 else true; fi; \
2841 else \
173712fb
RK
2842 rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2843 $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
37a4aa31
GK
2844 $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-$(version) ; \
2845 rm -f $(bindir)/$(target_alias)-gcc-tmp$(exeext); \
2846 $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-tmp$(exeext); \
2847 mv $(bindir)/$(target_alias)-gcc-tmp$(exeext) $(bindir)/$(GCC_TARGET_INSTALL_NAME)$(exeext); \
79d8453e 2848 fi
79d8453e 2849
0b2fbcb2 2850# Install the info files.
feb9ea1a 2851# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
ee5b121e 2852# to do the install.
69cbb85a 2853install-info: doc installdirs lang.install-info
0b2fbcb2 2854 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
b11cc610 2855 -rm -f $(infodir)/cppinternals.info* $(infodir)/gccint.info*
95e30ecc
DD
2856 if [ -f $(docdir)/gcc.info ]; then \
2857 for f in $(docdir)/cpp.info* $(docdir)/gcc.info* \
b11cc610 2858 $(docdir)/cppinternals.info* $(docdir)/gccint.info*; do \
17db6582
JM
2859 realfile=`echo $$f | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
2860 $(INSTALL_DATA) $$f $(infodir)/$$realfile; \
2861 done; \
2862 else true; fi
ee5b121e 2863 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
f8c86b58 2864 if [ -f $(infodir)/dir ] ; then \
b11cc610 2865 for f in cpp.info gcc.info gccint.info cppinternals.info; do \
17db6582
JM
2866 if [ -f $(infodir)/$$f ]; then \
2867 install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
20266bb1 2868 else true; fi; \
265ce5bb 2869 done; \
f8c86b58 2870 else true; fi; \
265ce5bb 2871 else true; fi;
0b2fbcb2 2872 -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
b11cc610 2873 -chmod a-x $(infodir)/cppinternals.info* $(infodir)/gccint.info*
0b2fbcb2 2874
79d8453e 2875# Install the man pages.
ad3b5aff 2876install-man: installdirs $(GENERATED_MANPAGES) lang.install-man
e9a25f70 2877 -if [ -f gcc-cross$(exeext) ] ; then \
77bd67cb
JM
2878 rm -f $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2879 $(INSTALL_DATA) $(docdir)/gcc.1 $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
2880 chmod a-x $(man1dir)/$(GCC_CROSS_NAME)$(man1ext); \
338023d4 2881 else \
77bd67cb
JM
2882 rm -f $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2883 $(INSTALL_DATA) $(docdir)/gcc.1 $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
2884 chmod a-x $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext); \
338023d4 2885 fi
77bd67cb
JM
2886 -rm -f $(man1dir)/cpp$(man1ext)
2887 -$(INSTALL_DATA) $(docdir)/cpp.1 $(man1dir)/cpp$(man1ext)
2888 -chmod a-x $(man1dir)/cpp$(man1ext)
2889 -rm -f $(man1dir)/gcov$(man1ext)
2890 -$(INSTALL_DATA) $(docdir)/gcov.1 $(man1dir)/gcov$(man1ext)
2891 -chmod a-x $(man1dir)/gcov$(man1ext)
2892 -rm -f $(man7dir)/fsf-funding$(man7ext)
2893 -$(INSTALL_DATA) $(docdir)/fsf-funding.7 $(man7dir)/fsf-funding$(man7ext)
2894 -chmod a-x $(man7dir)/fsf-funding$(man7ext)
2895 -rm -f $(man7dir)/gfdl$(man7ext)
2896 -$(INSTALL_DATA) $(docdir)/gfdl.7 $(man7dir)/gfdl$(man7ext)
2897 -chmod a-x $(man7dir)/gfdl$(man7ext)
2898 -rm -f $(man7dir)/gpl$(man7ext)
2899 -$(INSTALL_DATA) $(docdir)/gpl.7 $(man7dir)/gpl$(man7ext)
2900 -chmod a-x $(man7dir)/gpl$(man7ext)
79d8453e
RS
2901
2902# Install the library.
2bbea3a6
RH
2903install-libgcc: libgcc.mk libgcc.a installdirs
2904 if $(RANLIB_TEST_FOR_TARGET); then \
2905 r_f_t=$(RANLIB_FOR_TARGET); \
2906 else \
2907 r_f_t=: ; \
2908 fi; \
67680154 2909 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
5c35940c 2910 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
67680154
DD
2911 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
2912 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
2913 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
67680154
DD
2914 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
2915 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
2916 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
2917 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
2cc07db4 2918 INCLUDES="$(INCLUDES)" \
67680154
DD
2919 CONFIG_H="$(TCONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
2920 LIB1ASMSRC='$(LIB1ASMSRC)' \
2921 MAKEOVERRIDES= \
2922 INSTALL_DATA="$(INSTALL_DATA)" \
2bbea3a6
RH
2923 RANLIB_FOR_TARGET="$$r_f_t" \
2924 libsubdir="$(libsubdir)" \
2925 slibdir="$(slibdir)" \
2926 -f libgcc.mk install
79d8453e 2927
f6cdc7ea 2928# Install multiple versions of libgcc.a.
69cbb85a 2929install-multilib: stmp-multilib installdirs
2bbea3a6
RH
2930 if $(RANLIB_TEST_FOR_TARGET); then \
2931 r_f_t=$(RANLIB_FOR_TARGET); \
2932 else \
2933 r_f_t=: ; \
2934 fi; \
67680154 2935 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
5c35940c 2936 BUILD_PREFIX="$(BUILD_PREFIX)" BUILD_PREFIX_1="$(BUILD_PREFIX_1)" \
67680154
DD
2937 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
2938 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
2939 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
67680154
DD
2940 CFLAGS="$(CFLAGS) $(WARN_CFLAGS)" \
2941 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
2942 NM_FOR_TARGET="$(NM_FOR_TARGET)" AWK="$(AWK)" \
2943 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
2cc07db4 2944 INCLUDES="$(INCLUDES)" \
67680154
DD
2945 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
2946 LIB1ASMSRC='$(LIB1ASMSRC)' \
2947 MAKEOVERRIDES= \
2948 INSTALL_DATA="$(INSTALL_DATA)" \
2bbea3a6
RH
2949 RANLIB_FOR_TARGET="$$r_f_t" \
2950 libsubdir="$(libsubdir)" \
2951 slibdir="$(slibdir)" \
2952 -f libgcc.mk install
f6cdc7ea 2953
ba1811f1 2954# Install all the header files built in the include subdirectory.
fecd6201 2955install-headers: $(INSTALL_HEADERS_DIR)
ba1811f1
ILT
2956# Fix symlinks to absolute paths in the installed include directory to
2957# point to the installed directory, not the build directory.
ac64120e 2958# Don't need to use LN_S here since we really do need ln -s and no substitutes.
ba1811f1
ILT
2959 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
2960 if [ $$? -eq 0 ]; then \
1e6347d8 2961 dir=`cd include; ${PWD}`; \
ba1811f1
ILT
2962 for i in $$files; do \
2963 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
2964 if expr "$$dest" : "$$dir.*" > /dev/null; then \
2965 rm -f $(libsubdir)/include/$$i; \
44735512 2966 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
ba1811f1
ILT
2967 fi; \
2968 done; \
2969 fi
79d8453e 2970
ba1811f1 2971# Create or recreate the gcc private include file directory.
69cbb85a 2972install-include-dir: installdirs
ba1811f1
ILT
2973 -rm -rf $(libsubdir)/include
2974 mkdir $(libsubdir)/include
2975 -chmod a+rx $(libsubdir)/include
2976
2977# Install the include directory using tar.
f95e46b9 2978install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
965c3f43
AO
2979# We use `pwd`/include instead of just include to problems with CDPATH
2980# Unless a full pathname is provided, some shells would print the new CWD,
2981# found in CDPATH, corrupting the output. We could just redirect the
2982# output of `cd', but some shells lose on redirection within `()'s
1e6347d8 2983 (cd `${PWD}`/include ; \
cf52b2f7 2984 tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
e6431ec5
RS
2985# /bin/sh on some systems returns the status of the first tar,
2986# and that can lose with GNU tar which always writes a full block.
2987# So use `exit 0' to ignore its exit status.
ba1811f1
ILT
2988
2989# Install the include directory using cpio.
f95e46b9 2990install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
965c3f43 2991# See discussion about the use of `pwd` above
1e6347d8 2992 cd `${PWD}`/include ; \
965c3f43 2993 find . -print | cpio -pdum $(libsubdir)/include
79d8453e 2994
ff3aaf17
DR
2995# Install the include directory using cp.
2996install-headers-cp: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
2997 cp -p -r include $(libsubdir)
2998
e34a3d31
GK
2999itoolsdir = $(libsubdir)/install-tools
3000# Don't install the headers. Instead, install appropriate scripts
3001# and supporting files for fixincludes to be run later.
3002install-mkheaders: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir \
3003 mkheaders xlimits.h
3004 -rm -rf $(itoolsdir)
3005 $(SHELL) $(srcdir)/mkinstalldirs $(itoolsdir)/include
3006 for file in $(USER_H); do \
3007 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
3008 $(INSTALL_DATA) $$file \
3009 $(itoolsdir)/include/$$realfile ; \
3010 done
e34a3d31
GK
3011 $(INSTALL_DATA) xlimits.h $(itoolsdir)/include/limits.h
3012 if [ x$(STMP_FIXINC) != x ] ; then \
3013 $(INSTALL_DATA) $(srcdir)/README-fixinc \
3014 $(itoolsdir)/include/README ; \
3015 $(INSTALL_PROGRAM) fixinc.sh $(itoolsdir)/fixinc.sh ; \
3016 $(INSTALL_PROGRAM) fixinc/fixincl $(itoolsdir)/fixincl ; \
3017 $(INSTALL_DATA) $(srcdir)/gsyslimits.h $(itoolsdir)/gsyslimits.h ; \
3018 else :; fi
3019 if [ x$(STMP_FIXPROTO) != x ] ; then \
3020 $(INSTALL_PROGRAM) $(srcdir)/mkinstalldirs \
3021 $(itoolsdir)/mkinstalldirs ; \
3022 $(INSTALL_PROGRAM) $(srcdir)/fixproto $(itoolsdir)/fixproto ; \
3023 $(INSTALL_PROGRAM) fix-header$(build_exeext) \
3024 $(itoolsdir)/fix-header$(build_exeext) ; \
3025 else :; fi
3026 $(INSTALL_PROGRAM) mkheaders $(itoolsdir)/mkheaders
3027 echo 'SYSTEM_HEADER_DIR="$(SYSTEM_HEADER_DIR)"' \
3028 > $(itoolsdir)/mkheaders.conf
3029 echo 'OTHER_FIXINCLUDES_DIRS="$(OTHER_FIXINCLUDES_DIRS)"' \
3030 >> $(itoolsdir)/mkheaders.conf
3031 echo 'FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"' \
3032 >> $(itoolsdir)/mkheaders.conf
3033 echo 'STMP_FIXPROTO="$(STMP_FIXPROTO)"' >> $(itoolsdir)/mkheaders.conf
3034 echo 'STMP_FIXINC="$(STMP_FIXINC)"' >> $(itoolsdir)/mkheaders.conf
3035
10da1131 3036# Use this target to install the program `collect2' under the name `collect2'.
69cbb85a 3037install-collect2: collect2 installdirs
10da1131 3038 $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/collect2$(exeext)
2e494f70 3039# Install the driver program as $(libsubdir)/gcc for collect2.
173712fb 3040 $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
2e494f70 3041
79d8453e 3042# Cancel installation by deleting the installed files.
1e730c5c 3043uninstall: intl.uninstall lang.uninstall
79d8453e 3044 -rm -rf $(libsubdir)
173712fb
RK
3045 -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
3046 -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
1e730c5c
ZW
3047 -rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext)
3048 -rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext)
3049 -if [ x$(cpp_install_dir) != x ]; then \
3050 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
3051 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
3052 else true; fi
23473647
NS
3053 -rm -rf $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
3054 -rm -rf $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
3055 -rm -rf $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
3056 -rm -rf $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
3057 -rm -rf $(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
77bd67cb
JM
3058 -rm -rf $(man1dir)/$(GCC_INSTALL_NAME)$(man1ext)
3059 -rm -rf $(man1dir)/$(GCC_CROSS_NAME)$(man1ext)
3060 -rm -rf $(man1dir)/cpp$(man1ext)
3061 -rm -rf $(man1dir)/protoize$(man1ext)
3062 -rm -rf $(man1dir)/unprotoize$(man1ext)
9ec36da5 3063 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
b11cc610 3064 -rm -f $(infodir)/cppinternals.info* $(infodir)/gccint.info*
544eb21e 3065#\f
4c457b6b 3066# These targets are for the dejagnu testsuites. The file site.exp
e933cbe0
JL
3067# contains global variables that all the testsuites will use.
3068
3069# Set to $(target_alias)/ for cross.
3070target_subdir = @target_subdir@
3071
3072site.exp: ./config.status Makefile
3073 @echo "Making a new config file..."
3074 -@rm -f ./tmp?
d9835ae8 3075 @$(STAMP) site.exp
e933cbe0
JL
3076 -@mv site.exp site.bak
3077 @echo "## these variables are automatically generated by make ##" > ./tmp0
3078 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
3079 @echo "# add them to the last section" >> ./tmp0
1e6347d8
RO
3080 @echo "set rootme \"`${PWD}`\"" >> ./tmp0
3081 @echo "set srcdir \"`cd ${srcdir}; ${PWD}`\"" >> ./tmp0
e933cbe0
JL
3082 @echo "set host_triplet $(host_canonical)" >> ./tmp0
3083 @echo "set build_triplet $(build_canonical)" >> ./tmp0
3084 @echo "set target_triplet $(target)" >> ./tmp0
3085 @echo "set target_alias $(target_alias)" >> ./tmp0
3086# CFLAGS is set even though it's empty to show we reserve the right to set it.
3087 @echo "set CFLAGS \"\"" >> ./tmp0
3088 @echo "set CXXFLAGS \"-I$(objdir)/../$(target_subdir)libio -I\$$srcdir/../libg++/src -I\$$srcdir/../libio -I\$$srcdir/../libstdc++ -I\$$srcdir/../libstdc++/stl -L$(objdir)/../$(target_subdir)libg++ -L$(objdir)/../$(target_subdir)libstdc++\"" >> ./tmp0
4091fa5f 3089 @echo "set TESTING_IN_BUILD_TREE 1" >> ./tmp0
22fdd65e 3090 @echo "set HAVE_LIBSTDCXX_V3 1" >> ./tmp0
e933cbe0
JL
3091# If newlib has been configured, we need to pass -B to gcc so it can find
3092# newlib's crt0.o if it exists. This will cause a "path prefix not used"
3093# message if it doesn't, but the testsuite is supposed to ignore the message -
3094# it's too difficult to tell when to and when not to pass -B (not all targets
3095# have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
3096# seems like too selective a test.
3097# ??? Another way to solve this might be to rely on linker scripts. Then
3098# theoretically the -B won't be needed.
3099# We also need to pass -L ../ld so that the linker can find ldscripts.
3100 @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
3101 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
3102 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
3103 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3104 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
3105 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
3106 else true; \
3107 fi
3108 @if [ -d $(objdir)/../ld ] ; then \
3109 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
3110 else true; \
3111 fi
ccdb9251 3112 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
e933cbe0 3113 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
fa870451
JJ
3114 @if [ "X$(ALT_CXX_UNDER_TEST)" != "X" ] ; then \
3115 echo "set ALT_CXX_UNDER_TEST $(ALT_CXX_UNDER_TEST)" >> ./tmp0; \
3116 else true; \
3117 fi
3118 @if [ "X$(COMPAT_OPTIONS)" != "X" ] ; then \
3119 echo "set COMPAT_OPTIONS $(COMPAT_OPTIONS)" >> ./tmp0; \
3120 else true; \
3121 fi
e933cbe0
JL
3122 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
3123 @cat ./tmp0 > site.exp
3124 @cat site.bak | sed \
3125 -e '1,/^## All variables above are.*##/ d' >> site.exp
3126 -@rm -f ./tmp?
3127
71a94577 3128CHECK_TARGETS = check-gcc @check_languages@
cbc59f01
DD
3129
3130check-c++ : check-g++
3131check-f77 : check-g77
5262d6b6 3132check-java :
e933cbe0
JL
3133
3134check: $(CHECK_TARGETS)
3135
a738a85c 3136# The idea is to parallelize testing of multilibs, for example:
7dd232a8 3137# make -j3 check-gcc//sh-hms-sim/{-m1,-m2,-m3,-m3e,-m4}/{,-nofpu}
a738a85c
AO
3138# will run 3 concurrent sessions of check-gcc, eventually testing
3139# all 10 combinations. GNU make is required, as is a shell that expands
3140# alternations within braces.
7dd232a8
AO
3141check-gcc//% check-g++//% check-g77//% check-objc//%: site.exp
3142 target=`echo "$@" | sed 's,//.*,,'`; \
3143 variant=`echo "$@" | sed 's,^[^/]*//,,'`; \
a738a85c
AO
3144 vardots=`echo "$$variant" | sed 's,/,.,g'`; \
3145 $(MAKE) TESTSUITEDIR="testsuite.$$vardots" \
3146 RUNTESTFLAGS="--target_board=$$variant $(RUNTESTFLAGS)" \
3147 "$$target"
3148
3149TESTSUITEDIR = testsuite
3150
3151$(TESTSUITEDIR)/site.exp: site.exp
3152 test -d $(TESTSUITEDIR) || mkdir $(TESTSUITEDIR)
3153 -rm -f $@
3154 sed '/set tmpdir/ s|testsuite|$(TESTSUITEDIR)|' < site.exp > $@
3155
3156check-g++: $(TESTSUITEDIR)/site.exp
1e6347d8
RO
3157 -(rootme=`${PWD}`; export rootme; \
3158 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
a738a85c 3159 cd $(TESTSUITEDIR); \
e933cbe0
JL
3160 EXPECT=${EXPECT} ; export EXPECT ; \
3161 if [ -f $${rootme}/../expect/expect ] ; then \
1e6347d8 3162 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
e933cbe0 3163 export TCL_LIBRARY ; fi ; \
b8dad04b 3164 $(RUNTEST) --tool g++ $(RUNTESTFLAGS))
e933cbe0 3165
a738a85c 3166check-gcc: $(TESTSUITEDIR)/site.exp
1e6347d8
RO
3167 -(rootme=`${PWD}`; export rootme; \
3168 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
a738a85c 3169 cd $(TESTSUITEDIR); \
e933cbe0
JL
3170 EXPECT=${EXPECT} ; export EXPECT ; \
3171 if [ -f $${rootme}/../expect/expect ] ; then \
1e6347d8 3172 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
e933cbe0 3173 export TCL_LIBRARY ; fi ; \
b8dad04b 3174 $(RUNTEST) --tool gcc $(RUNTESTFLAGS))
e933cbe0 3175
a738a85c 3176check-g77: $(TESTSUITEDIR)/site.exp
1e6347d8
RO
3177 -(rootme=`${PWD}`; export rootme; \
3178 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
a738a85c 3179 cd $(TESTSUITEDIR); \
dc84d7bc
JL
3180 EXPECT=${EXPECT} ; export EXPECT ; \
3181 if [ -f $${rootme}/../expect/expect ] ; then \
1e6347d8 3182 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
dc84d7bc 3183 export TCL_LIBRARY ; fi ; \
b8dad04b 3184 $(RUNTEST) --tool g77 $(RUNTESTFLAGS))
dc84d7bc 3185
a738a85c 3186check-objc: $(TESTSUITEDIR)/site.exp
1e6347d8
RO
3187 -(rootme=`${PWD}`; export rootme; \
3188 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
a738a85c 3189 cd $(TESTSUITEDIR); \
d8bb17c8
OP
3190 EXPECT=${EXPECT} ; export EXPECT ; \
3191 if [ -f $${rootme}/../expect/expect ] ; then \
1e6347d8 3192 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
d8bb17c8 3193 export TCL_LIBRARY ; fi ; \
b8dad04b 3194 $(RUNTEST) --tool objc $(RUNTESTFLAGS))
d8bb17c8 3195
c36ae96c 3196check-consistency: testsuite/site.exp
1e6347d8
RO
3197 -rootme=`${PWD}`; export rootme; \
3198 srcdir=`cd ${srcdir}; ${PWD}` ; export srcdir ; \
c36ae96c
GK
3199 cd testsuite; \
3200 EXPECT=${EXPECT} ; export EXPECT ; \
3201 if [ -f $${rootme}/../expect/expect ] ; then \
1e6347d8 3202 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; ${PWD}` ; \
c36ae96c
GK
3203 export TCL_LIBRARY ; fi ; \
3204 $(RUNTEST) --tool consistency $(RUNTESTFLAGS)
3205
f362c762
MM
3206# QMTest targets
3207
3208# The path to qmtest.
3209QMTEST_PATH=qmtest
3210
3211# The flags to pass to qmtest.
3212QMTESTFLAGS=
3213
3214# The flags to pass to "qmtest run".
3215QMTESTRUNFLAGS=
3216
3217# The command to use to invoke qmtest.
3218QMTEST=${QMTEST_PATH} ${QMTESTFLAGS}
3219
3220# The tests (or suites) to run.
3221QMTEST_GPP_TESTS=gpp
3222
3223# The subdirectory of the OBJDIR that will be used to store the QMTest
3224# test database configuration and that will be used for temporary
3225# scratch space during QMTest's execution.
62363d99 3226QMTEST_DIR=qmtestsuite
f362c762
MM
3227
3228# Create the QMTest database configuration.
3229${QMTEST_DIR} stamp-qmtest:
3230 debug_options=""; \
3231 ${STAMP} empty.C; \
3232 for option in \
3233 -gdwarf-2 -gstabs -gstabs+ -gxcoff -gxcoff+ -gcoff; do \
3234 (./cc1plus -q $${option} empty.C 2>&1 | \
3235 grep "unknown or unsupported -g option" > /dev/null) || \
3236 debug_options="$${debug_options}$${option} "; done; \
3237 ${QMTEST} -D ${QMTEST_DIR} create-tdb \
3238 -c gcc_database.GCCDatabase \
3239 -a GCCDatabase.testsuite_root=`cd ${srcdir}/testsuite && pwd` \
3240 -a GCCDatabase.debug_options="$${debug_options}"
3241 rm -f empty.C empty.s
3242 $(STAMP) stamp-qmtest
3243
3244# Create the QMTest context file.
3245${QMTEST_DIR}/context: stamp-qmtest
3246 echo "GCCTest.flags=-B${objdir}" >> $@
3247 echo "GCCTest.objdir=${objdir}/.." >> $@
3248 echo "GCCTest.host=${host_canonical}" >> $@
3249 echo "GCCTest.target=${target}" >> $@
3250 echo "GCCTest.gcov=${objdir}/gcov" >> $@
3251 echo "GPPTest.gpp=${objdir}/g++" >> $@
3252 echo "DGTest.demangler=${objdir}/c++filt" >> $@
3253
3254# Run the G++ testsuite using QMTest.
3255qmtest-g++: ${QMTEST_DIR}/context ${QMTEST_DIR}/gpp-expected.qmr
3256 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
2d556baf 3257 -o gpp.qmr -O gpp-expected.qmr \
f362c762
MM
3258 ${QMTEST_GPP_TESTS}
3259
3260# Use the QMTest GUI.
3261qmtest-gui: ${QMTEST_DIR}/context
3262 cd ${QMTEST_DIR} && ${QMTEST} gui -C context
3263
3264# Build the set of expected G++ failures.
3265${QMTEST_DIR}/gpp-expected.qmr: ${QMTEST_DIR}/context
3266 echo "Determining expected results..."
3267 cd ${QMTEST_DIR} && ${QMTEST} run ${QMTESTRUNFLAGS} -C context \
3268 -c "GCCTest.generate_xfails=1" -o gpp-expected.qmr \
3269 ${QMTEST_GPP_TESTS} \
3270 > /dev/null
3271
3272.PHONY: qmtest-g++
3273
efdc7e19
RH
3274# Run Paranoia on real.c.
3275
3276paranoia.o: $(srcdir)/../contrib/paranoia.cc $(CONFIG_H) $(SYSTEM_H) \
3277 real.h $(TREE_H)
3278 g++ -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $< $(OUTPUT_OPTION)
3279
3280paranoia: paranoia.o real.o $(LIBIBERTY)
3281 g++ -o $@ paranoia.o real.o $(LIBIBERTY)
3282
79d8453e
RS
3283# These exist for maintenance purposes.
3284
3285# Update the tags table.
3286TAGS: force
b8dad04b 3287 (cd $(srcdir); \
e5e809f4 3288 mkdir tmp-tags; \
86702e31 3289 mv -f c-parse.[ch] =*.[chy] tmp-tags; \
79d8453e 3290 etags *.y *.h *.c; \
e5e809f4 3291 mv tmp-tags/* .; \
b8dad04b 3292 rmdir tmp-tags)
79d8453e 3293
87a8affe 3294# A list of files to be destroyed during "lean" builds.
a36556a8 3295VOL_FILES=`echo $(BACKEND) $(OBJS) $(C_OBJS) $(LIBCPP_OBJS) *.c *.h gen*`
87a8affe 3296
b8dad04b
ZW
3297# Flags to pass to stage2 and later recursive makes. Note that the
3298# WARN_CFLAGS setting can't be to the expansion of GCC_WARN_CFLAGS in
3299# the context of the stage_x rule.
3300STAGE2_FLAGS_TO_PASS = \
7d600178 3301 ADAC="\$$(CC)" \
b8dad04b
ZW
3302 CFLAGS="$(BOOT_CFLAGS)" \
3303 LDFLAGS="$(BOOT_LDFLAGS)" \
3304 WARN_CFLAGS="\$$(GCC_WARN_CFLAGS)" \
3305 STRICT_WARN="$(STRICT2_WARN)" \
3306 libdir=$(libdir) \
3307 LANGUAGES="$(LANGUAGES)" \
03bbd83f 3308 MAKEOVERRIDES= \
b8dad04b
ZW
3309 OUTPUT_OPTION="-o \$$@"
3310
9c4614c3
TW
3311# Only build the C compiler for stage1, because that is the only one that
3312# we can guarantee will build with the native compiler, and also it is the
78faa32d
FS
3313# only thing useful for building stage2. STAGE1_CFLAGS (via CFLAGS),
3314# MAKEINFO and MAKEINFOFLAGS are explicitly passed here to make them
3315# overrideable (for a bootstrap build stage1 also builds gcc.info).
770861f3 3316stage1_build:
78faa32d
FS
3317 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" \
3318 CFLAGS="$(STAGE1_CFLAGS)" MAKEINFO="$(MAKEINFO)" \
2043c38e 3319 MAKEINFOFLAGS="$(MAKEINFOFLAGS)" COVERAGE_FLAGS=
d9835ae8 3320 $(STAMP) stage1_build
770861f3 3321 echo stage1_build > stage_last
204093e6 3322
770861f3 3323stage1_copy: stage1_build
79d8453e 3324 $(MAKE) stage1
d9835ae8 3325 $(STAMP) stage1_copy
770861f3 3326 echo stage2_build > stage_last
204093e6 3327
770861f3 3328stage2_build: stage1_copy
3fcd079e 3329 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" \
b8dad04b
ZW
3330 STAGE_PREFIX=stage1/ \
3331 $(STAGE2_FLAGS_TO_PASS)
d9835ae8 3332 $(STAMP) stage2_build
770861f3 3333 echo stage2_build > stage_last
204093e6 3334
770861f3 3335stage2_copy: stage2_build
3d84f80f 3336 $(MAKE) stage2
d9835ae8 3337 $(STAMP) stage2_copy
770861f3 3338 echo stage3_build > stage_last
b8dad04b 3339
770861f3 3340stage3_build: stage2_copy
3fcd079e 3341 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" \
b8dad04b
ZW
3342 STAGE_PREFIX=stage2/ \
3343 $(STAGE2_FLAGS_TO_PASS)
d9835ae8 3344 $(STAMP) stage3_build
770861f3 3345 echo stage3_build > stage_last
204093e6
DT
3346
3347# For bootstrap4:
770861f3 3348stage3_copy: stage3_build
3d84f80f 3349 $(MAKE) stage3
d9835ae8 3350 $(STAMP) stage3_copy
770861f3
DD
3351 echo stage4_build > stage_last
3352
3353stage4_build: stage3_copy
3fcd079e 3354 $(MAKE) CC="$(STAGE_CC_WRAPPER) stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" \
b8dad04b
ZW
3355 STAGE_PREFIX=stage3/ \
3356 $(STAGE2_FLAGS_TO_PASS)
d9835ae8 3357 $(STAMP) stage4_build
770861f3 3358 echo stage4_build > stage_last
204093e6
DT
3359
3360# Additional steps for *-lean targets:
770861f3 3361clean_s1: stage1_copy
b8dad04b 3362 -(cd stage1 && rm -f $(VOL_FILES))
d9835ae8 3363 $(STAMP) clean_s1
204093e6 3364
770861f3 3365clean_s2: stage2_copy
204093e6 3366 -rm -rf stage1
d9835ae8 3367 $(STAMP) clean_s2
204093e6 3368
770861f3
DD
3369# The various entry points for bootstrapping.
3370
3371bootstrap: stage3_build
3372 @echo
3373 @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3374 @echo \"restage1\" through \"restage3\" to rebuild specific stages,
9c8d079c
JM
3375 @echo \"restrap\" to redo the bootstrap from stage1, or
3376 @echo \"cleanstrap\" to redo the bootstrap from scratch.
770861f3
DD
3377
3378bootstrap-lean : clean_s1 clean_s2 stage3_build
3379 @echo
3380 @echo Bootstrap complete - make \"quickstrap\" to redo last build,
3381 @echo or \"cleanstrap\" to redo the bootstrap from scratch.
3382
3383bootstrap2: bootstrap
3384
4f92461a 3385bootstrap2-lean : bootstrap-lean
770861f3
DD
3386
3387bootstrap3 bootstrap3-lean: bootstrap
4f92461a 3388
770861f3
DD
3389bootstrap4 bootstrap4-lean: stage4_build
3390
3391unstage1 unstage2 unstage3 unstage4:
3392 -set -vx; stage=`echo $@ | sed -e 's/un//'`; \
4992fc7f
RH
3393 rm -f $$stage/as$(exeext); \
3394 rm -f $$stage/ld$(exeext); \
3395 rm -f $$stage/collect-ld$(exeext); \
770861f3
DD
3396 if test -d $$stage; then \
3397 mv $$stage/* . 2>/dev/null; \
3398 for i in `cd $$stage; echo *` ; do \
3399 if test -d $$stage/$$i; then \
3400 mv $$stage/$$i/* $$i/. 2>/dev/null; \
3401 else \
3402 mv $$stage/$$i .; \
20266bb1 3403 fi; \
770861f3
DD
3404 done \
3405 fi ; \
3406 rm -f $${stage}_build $${stage}_copy ;\
3407 echo $${stage}_build > stage_last
3408
3409restage1: unstage1
3410 $(MAKE) stage1_build
3411
3412restage2: unstage2
3413 $(MAKE) LANGUAGES="$(LANGUAGES)" stage2_build
3414
3415restage3: unstage3
3416 $(MAKE) LANGUAGES="$(LANGUAGES)" stage3_build
3417
3418restage4: unstage4
3419 $(MAKE) LANGUAGES="$(LANGUAGES)" stage4_build
3420
3421bubblestrap:
3422 if test -f stage3_build; then true; else \
3423 echo; echo You must \"make bootstrap\" first.; \
3424 exit 1; \
3425 fi
3426 for i in stage3 \
3427 unstage1 stage1_build stage1_copy \
3428 unstage2 stage2_build stage2_copy \
3429 unstage3 stage3_build ; \
3430 do \
3431 $(MAKE) LANGUAGES="$(LANGUAGES)" $$i || exit 1 ; \
3432 done
3433
3434quickstrap:
3435 if test -f stage_last ; then \
3436 LAST=`cat stage_last`; rm $$LAST; $(MAKE) LANGUAGES="$(LANGUAGES)" $$LAST; \
3437 else \
3438 $(MAKE) stage1_build; \
3439 fi
3440
3441cleanstrap:
3442 -$(MAKE) clean
3443 $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
361e618f 3444
9c8d079c
JM
3445unstrap:
3446 -rm -rf stage[234]*
3447 $(MAKE) unstage1
3448
3449# Differs from cleanstrap in that it starts from the earlier stage1 build,
3450# not from scratch.
3451restrap:
3452 $(MAKE) unstrap
3453 $(MAKE) LANGUAGES="$(LANGUAGES)" bootstrap
3454
dcfedcd0
RK
3455# Compare the object files in the current directory with those in the
3456# stage2 directory.
3457
9825189b 3458# ./ avoids bug in some versions of tail.
e85988b5 3459compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
3fb2f401 3460 -rm -f .bad_compare
e85988b5 3461 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
aab26e16 3462 for file in *$(objext); do \
9825189b 3463 tail +16c ./$$file > tmp-foo1; \
e85988b5 3464 tail +16c stage$$stage/$$file > tmp-foo2 \
3fb2f401 3465 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
dcfedcd0 3466 done
e85988b5 3467 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
ab87f8c8 3468 for dir in tmp-foo intl $(SUBDIRS); do \
aab26e16
RK
3469 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3470 for file in $$dir/*$(objext); do \
013a2ee0 3471 tail +16c ./$$file > tmp-foo1; \
e85988b5 3472 tail +16c stage$$stage/$$file > tmp-foo2 \
3fb2f401 3473 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
094ecbb0 3474 done; \
7ce1e6c8 3475 else true; fi; \
013a2ee0 3476 done
dcfedcd0 3477 -rm -f tmp-foo*
4931312c 3478 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3fb2f401
JL
3479 if [ -f .bad_compare ]; then \
3480 echo "Bootstrap comparison failure!"; \
3481 cat .bad_compare; \
3482 exit 1; \
e85988b5
MH
3483 else \
3484 case "$@" in \
3485 *-lean ) rm -rf stage$$stage ;; \
25b76cc1 3486 *) ;; \
e85988b5 3487 esac; true; \
3fb2f401 3488 fi
dcfedcd0 3489
e85988b5
MH
3490# Compare the object files in the current directory with those in the
3491# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
3492# running tail and the overhead of twice copying each object file.
3493
3494gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
b1e3ddfd 3495 -rm -f .bad_compare
e85988b5 3496 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
b1e3ddfd 3497 for file in *$(objext); do \
e85988b5 3498 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
b1e3ddfd 3499 done
e85988b5 3500 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
ab87f8c8 3501 for dir in tmp-foo intl $(SUBDIRS); do \
b1e3ddfd
AJ
3502 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3503 for file in $$dir/*$(objext); do \
e85988b5 3504 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
b1e3ddfd 3505 done; \
7ce1e6c8 3506 else true; fi; \
b1e3ddfd 3507 done
4931312c 3508 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
b1e3ddfd
AJ
3509 if [ -f .bad_compare ]; then \
3510 echo "Bootstrap comparison failure!"; \
3511 cat .bad_compare; \
3512 exit 1; \
e85988b5
MH
3513 else \
3514 case "$@" in \
3515 *-lean ) rm -rf stage$$stage ;; \
3516 esac; true; \
b1e3ddfd
AJ
3517 fi
3518
79d8453e 3519# Copy the object files from a particular stage into a subdirectory.
013a2ee0 3520stage1-start:
2e494f70 3521 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
f472a17c
AS
3522 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage1
3523 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3524 do \
9a517e7b 3525 if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
013a2ee0 3526 done
79d8453e 3527 -mv $(STAGESTUFF) stage1
ab87f8c8 3528 -mv intl/*$(objext) stage1/intl
338023d4
DE
3529# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3530# dir will work properly.
c926f674
DR
3531 -if [ -f as$(exeext) ] ; then (cd stage1 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3532 -if [ -f ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3533 -if [ -f collect-ld$(exeext) ] ; then (cd stage1 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
275b60d6 3534 -rm -f stage1/libgcc.a stage1/libgcc_eh.a
79d8453e 3535 -cp libgcc.a stage1
8f25d5cd
JW
3536 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3537 $(RANLIB_FOR_TARGET) stage1/libgcc.a; \
3538 else true; fi
275b60d6
JJ
3539 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage1; \
3540 if $(RANLIB_TEST_FOR_TARGET) ; then \
3541 $(RANLIB_FOR_TARGET) stage1/libgcc_eh.a; \
3542 else true; fi; fi
04e95620
JM
3543 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3544 cp stage1/$${f} . ; \
db814993 3545 else true; \
04e95620 3546 fi; done
013a2ee0 3547stage1: force stage1-start lang.stage1
79d8453e 3548
013a2ee0 3549stage2-start:
2e494f70 3550 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
f472a17c
AS
3551 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage2
3552 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3553 do \
9a517e7b 3554 if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
013a2ee0 3555 done
79d8453e 3556 -mv $(STAGESTUFF) stage2
ab87f8c8 3557 -mv intl/*$(objext) stage2/intl
338023d4
DE
3558# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3559# dir will work properly.
c926f674
DR
3560 -if [ -f as$(exeext) ] ; then (cd stage2 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3561 -if [ -f ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3562 -if [ -f collect-ld$(exeext) ] ; then (cd stage2 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
275b60d6 3563 -rm -f stage2/libgcc.a stage2/libgcc_eh.a
79d8453e 3564 -cp libgcc.a stage2
8f25d5cd
JW
3565 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3566 $(RANLIB_FOR_TARGET) stage2/libgcc.a; \
3567 else true; fi
275b60d6
JJ
3568 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage2; \
3569 if $(RANLIB_TEST_FOR_TARGET) ; then \
3570 $(RANLIB_FOR_TARGET) stage2/libgcc_eh.a; \
3571 else true; fi; fi
04e95620
JM
3572 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3573 cp stage2/$${f} . ; \
db814993 3574 else true; \
04e95620 3575 fi; done
013a2ee0 3576stage2: force stage2-start lang.stage2
79d8453e 3577
013a2ee0 3578stage3-start:
935e11b0 3579 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
f472a17c
AS
3580 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage3
3581 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3582 do \
9a517e7b 3583 if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
013a2ee0 3584 done
79d8453e 3585 -mv $(STAGESTUFF) stage3
ab87f8c8 3586 -mv intl/*$(objext) stage3/intl
338023d4
DE
3587# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3588# dir will work properly.
c926f674
DR
3589 -if [ -f as$(exeext) ] ; then (cd stage3 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3590 -if [ -f ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3591 -if [ -f collect-ld$(exeext) ] ; then (cd stage3 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
275b60d6 3592 -rm -f stage3/libgcc.a stage3/libgcc_eh.a
79d8453e 3593 -cp libgcc.a stage3
8f25d5cd
JW
3594 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3595 $(RANLIB_FOR_TARGET) stage3/libgcc.a; \
3596 else true; fi
275b60d6
JJ
3597 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage3; \
3598 if $(RANLIB_TEST_FOR_TARGET) ; then \
3599 $(RANLIB_FOR_TARGET) stage3/libgcc_eh.a; \
3600 else true; fi; fi
04e95620
JM
3601 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3602 cp stage3/$${f} . ; \
db814993 3603 else true; \
04e95620 3604 fi; done
013a2ee0 3605stage3: force stage3-start lang.stage3
79d8453e 3606
013a2ee0 3607stage4-start:
935e11b0 3608 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
f472a17c
AS
3609 $(MAKE) -f libgcc.mk libgcc-stage-start stage=stage4
3610 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3611 do \
9a517e7b 3612 if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
013a2ee0 3613 done
79d8453e 3614 -mv $(STAGESTUFF) stage4
ab87f8c8 3615 -mv intl/*$(objext) stage4/intl
338023d4
DE
3616# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3617# dir will work properly.
c926f674
DR
3618 -if [ -f as$(exeext) ] ; then (cd stage4 && $(LN_S) ../as$(exeext) .) ; else true ; fi
3619 -if [ -f ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../ld$(exeext) .) ; else true ; fi
3620 -if [ -f collect-ld$(exeext) ] ; then (cd stage4 && $(LN_S) ../collect-ld$(exeext) .) ; else true ; fi
275b60d6 3621 -rm -f stage4/libgcc.a stage4/libgcc_eh.a
79d8453e 3622 -cp libgcc.a stage4
8f25d5cd
JW
3623 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3624 $(RANLIB_FOR_TARGET) stage4/libgcc.a; \
3625 else true; fi
275b60d6
JJ
3626 -if [ -f libgcc_eh.a ] ; then cp libgcc_eh.a stage4; \
3627 if $(RANLIB_TEST_FOR_TARGET) ; then \
3628 $(RANLIB_FOR_TARGET) stage4/libgcc_eh.a; \
3629 else true; fi; fi
04e95620
JM
3630 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3631 cp stage4/$${f} . ; \
db814993 3632 else true; \
04e95620 3633 fi; done
013a2ee0 3634stage4: force stage4-start lang.stage4
79d8453e
RS
3635
3636# Copy just the executable files from a particular stage into a subdirectory,
3637# and delete the object files. Use this if you're just verifying a version
3638# that is pretty sure to work, and you are short of disk space.
aab26e16 3639risky-stage1: stage1
e108653c 3640 -$(MAKE) clean
79d8453e 3641
aab26e16 3642risky-stage2: stage2
e108653c 3643 -$(MAKE) clean
79d8453e 3644
aab26e16 3645risky-stage3: stage3
e108653c 3646 -$(MAKE) clean
79d8453e 3647
aab26e16 3648risky-stage4: stage4
e108653c 3649 -$(MAKE) clean
79d8453e
RS
3650
3651#In GNU Make, ignore whether `stage*' exists.
f1908d70 3652.PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
79d8453e
RS
3653.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
3654
3655force:
e7f62ad3 3656
5b7874aa
ZW
3657# Rules for generating translated message descriptions.
3658# Disabled by autoconf if the tools are not available.
3659
3660XGETTEXT = @XGETTEXT@
3661GMSGFMT = @GMSGFMT@
3662MSGMERGE = msgmerge
3663
3664PACKAGE = @PACKAGE@
3665CATALOGS = @CATALOGS@
3666
0f81faf6 3667.PHONY: build- install- build-po install-po update-po
5b7874aa
ZW
3668
3669# Dummy rules to deal with dependencies produced by use of
3670# "build-@POSUB@" and "install-@POSUB@" above, when NLS is disabled.
3671build-: ; @true
3672install-: ; @true
3673
3674build-po: $(CATALOGS)
3675
3676# This notation should be acceptable to all Make implementations used
3677# by people who are interested in updating .po files.
3678update-po: $(CATALOGS:.gmo=.pox)
3679
9f6682b7
ZW
3680# N.B. We do not attempt to copy these into $(srcdir). The snapshot
3681# script does that.
5b7874aa 3682.po.gmo:
7227d624 3683 -test -d po || mkdir po
bc524dd0 3684 $(GMSGFMT) --statistics -o $@ $<
5b7874aa 3685
9f6682b7
ZW
3686# The new .po has to be gone over by hand, so we deposit it into
3687# build/po with a different extension.
359cd11e
ZW
3688# If build/po/$(PACKAGE).pot exists, use it (it was just created),
3689# else use the one in srcdir.
5b7874aa 3690.po.pox:
7227d624 3691 -test -d po || mkdir po
359cd11e
ZW
3692 $(MSGMERGE) $< `if test -f po/$(PACKAGE).pot; \
3693 then echo po/$(PACKAGE).pot; \
3694 else echo $(srcdir)/po/$(PACKAGE).pot; fi` -o $@
5b7874aa 3695
9f6682b7
ZW
3696# This rule has to look for .gmo modules in both srcdir and
3697# the cwd, and has to check that we actually have a catalog
3698# for each language, in case they weren't built or included
3699# with the distribution.
5b7874aa
ZW
3700install-po:
3701 $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$(datadir)
3702 for cat in $(CATALOGS); do \
9f6682b7
ZW
3703 lang=`basename $$cat | sed 's/\.gmo$$//'`; \
3704 if [ -f $$cat ]; then :; \
3705 elif [ -f $(srcdir)/$$cat ]; then cat=$(srcdir)/$$cat; \
3706 else continue; \
3707 fi; \
5b7874aa
ZW
3708 dir=$(localedir)/$$lang/LC_MESSAGES; \
3709 echo $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir; \
3710 $(SHELL) $(srcdir)/mkinstalldirs $(DESTDIR)$$dir || exit 1; \
9f6682b7
ZW
3711 echo $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
3712 $(INSTALL_DATA) $$cat $(DESTDIR)$$dir/$(PACKAGE).mo; \
5b7874aa
ZW
3713 done
3714
3715# Rule for regenerating the message template (gcc.pot).
3716# Instead of forcing everyone to edit POTFILES.in, which proved impractical,
3717# this rule has no dependencies and always regenerates gcc.pot. This is
3718# relatively harmless since the .po files do not directly depend on it.
3719# Note that exgettext has an awk script embedded in it which requires a
3720# fairly modern (POSIX-compliant) awk.
359cd11e 3721# The .pot file is left in the build directory.
5b7874aa
ZW
3722$(PACKAGE).pot: po/$(PACKAGE).pot
3723po/$(PACKAGE).pot: force
7227d624 3724 -test -d po || mkdir po
5b7874aa
ZW
3725 $(MAKE) po-generated
3726 AWK=$(AWK) $(SHELL) $(srcdir)/po/exgettext \
3727 $(XGETTEXT) $(PACKAGE) $(srcdir)
This page took 1.989413 seconds and 5 git commands to generate.