]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/Makefile.in
configure.in (i?86-*-beos{pe,elf,}*): Recognize.
[thirdparty/gcc.git] / gcc / Makefile.in
CommitLineData
79d8453e 1# Makefile for GNU C compiler.
b87c6d55 2# Copyright (C) 1987, 88, 90-99, 2000 Free Software Foundation, Inc.
79d8453e
RS
3
4#This file is part of GNU CC.
5
6#GNU CC is free software; you can redistribute it and/or modify
7#it under the terms of the GNU General Public License as published by
8#the Free Software Foundation; either version 2, or (at your option)
9#any later version.
10
11#GNU CC is distributed in the hope that it will be useful,
12#but WITHOUT ANY WARRANTY; without even the implied warranty of
13#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14#GNU General Public License for more details.
15
16#You should have received a copy of the GNU General Public License
17#along with GNU CC; see the file COPYING. If not, write to
940d9d63
RK
18#the Free Software Foundation, 59 Temple Place - Suite 330,
19#Boston MA 02111-1307, USA.
79d8453e
RS
20
21# The targets for external use include:
22# all, doc, proto, install, install-cross, install-cross-rest,
f1908d70 23# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
79d8453e
RS
24# stage1, stage2, stage3, stage4.
25
2e494f70
RS
26# Suppress smart makes who think they know how to automake Yacc files
27.y.c:
28
3c18ea24
RK
29# Directory where sources are, from where we are.
30srcdir = @srcdir@
31VPATH = @srcdir@
32
79d8453e
RS
33# Variables that exist for you to override.
34# See below for how to change them for certain systems.
35
013a2ee0
DE
36# List of language subdirectories.
37# This is overridden by configure.
3c18ea24 38SUBDIRS =@subdirs@
013a2ee0 39
79d8453e 40# Selection of languages to be made.
013a2ee0 41# This is overridden by configure.
71205e0b 42CONFIG_LANGUAGES = @all_languages@
28fe2fb7 43LANGUAGES = c gcov$(exeext) $(CONFIG_LANGUAGES)
79d8453e 44
a6374b58
AO
45# Languages should create dependencies of $(INTL_TARGETS) on generated
46# sources in Make-lang.in. Example:
47# $(INTL_TARGETS): $(srcdir)/cp/parse.c
48INTL_TARGETS = intl.all intl.install intl.distdir
49
5e31e473
RK
50# Selection of languages to be made during stage1 build.
51# This is overridden by configure.
3c18ea24 52BOOT_LANGUAGES = c @all_boot_languages@
5e31e473 53
79d8453e 54ALLOCA =
8d86aaea 55ALLOCA_FLAGS =
2a7bccbb 56ALLOCA_FINISH = true
79d8453e 57
4c457b6b 58# Various ways of specifying flags for compilations:
79d8453e
RS
59# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
60# BOOT_CFLAGS is the value of CFLAGS to pass
61# to the stage2 and stage3 compilations
4c457b6b 62# WARN_CFLAGS are the warning flags to pass to stage2 and stage3.
61842080 63# (And for stage 1 if the native compiler is GCC.) It is
cc1e5b9a
KG
64# separate from BOOT_CFLAGS because people tend to override optimization
65# flags and we'd like them to still have warnings turned on. They are free
66# to explicitly turn warnings off if they wish.
79d8453e 67# XCFLAGS is used for most compilations but not when using the GCC just built.
54577c52 68# TCFLAGS is used for compilations with the GCC just built.
79d8453e 69XCFLAGS =
54577c52 70TCFLAGS =
61842080 71CFLAGS = -g @stage1_warn_cflags@
e6493727 72BOOT_CFLAGS = -O2 $(CFLAGS)
915b80ed 73WARN_CFLAGS = -W -Wall -Wtraditional
79d8453e
RS
74# These exists to be overridden by the x-* and t-* files, respectively.
75X_CFLAGS =
76T_CFLAGS =
77
78X_CPPFLAGS =
79T_CPPFLAGS =
80
ab87f8c8 81AWK = @AWK@
b614ee64 82CC = @CC@
b0ccd8de
JL
83# srcdir might be a relative pathname which won't be valid in a subdirectory,
84# so we must use objdir/srcdir instead to make it safe. objdir is always
85# a full pathname.
86BISON = `if [ -f $(objdir)/../bison/bison ] ; then case $(srcdir) in \
87 /*) echo $(objdir)/../bison/bison -L $(srcdir)/../bison/ ;; \
88 *) echo $(objdir)/../bison/bison -L $(objdir)/$(srcdir)/../bison/ ;; \
0a682bea 89 esac; else echo bison ; fi`
0777e4c6 90BISONFLAGS =
b0ccd8de 91LEX = `if [ -f $(objdir)/../flex/flex ] ; then echo $(objdir)/../flex/flex ; else echo flex ; fi`
013a2ee0 92LEXFLAGS =
79d8453e 93AR = ar
79d8453e 94AR_FLAGS = rc
e9a25f70 95LN = @symbolic_link@
b63b5db5 96DLLTOOL = dlltool
79d8453e
RS
97SHELL = /bin/sh
98# on sysV, define this as cp.
3c18ea24 99INSTALL = @INSTALL@
ac64120e
JW
100# Some systems may be missing symbolic links, regular links, or both.
101# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
102LN=@LN@
103LN_S=@LN_S@
79d8453e 104# These permit overriding just for certain files.
fca9d4b0
MH
105INSTALL_PROGRAM = @INSTALL_PROGRAM@
106INSTALL_DATA = @INSTALL_DATA@
010deb4d
RL
107MAKEINFO = `if [ -f $(objdir)/../texinfo/makeinfo/Makefile ] ; \
108 then echo $(objdir)/../texinfo/makeinfo/makeinfo ; \
109 else echo makeinfo ; fi`
3ef4c269 110MAKEINFOFLAGS =
d8984b6e 111TEXI2DVI = texi2dvi
013a2ee0
DE
112# For GNUmake: let us decide what gets passed to recursive makes.
113MAKEOVERRIDES =
3c18ea24 114@SET_MAKE@
79d8453e
RS
115
116# Define this as & to perform parallel make on a Sequent.
4c457b6b 117# Note that this has some bugs, and it seems currently necessary
79d8453e
RS
118# to compile all the gen* files first by hand to avoid erroneous results.
119P =
120
121# How to invoke ranlib.
122RANLIB = ranlib
123# Test to use to see whether ranlib exists on the system.
8f25d5cd
JW
124RANLIB_TEST = \
125 [ -f $(RANLIB) ] \
b6c8f0b7 126 || [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
f6c2a93c 127
79d8453e
RS
128# Compiler to use for compiling libgcc1.a.
129# OLDCC should not be the GNU C compiler,
130# since that would compile typical libgcc1.a functions such as mulsi3
131# into infinite recursions.
132OLDCC = cc
133
134# CFLAGS for use with OLDCC, for compiling libgcc1.a.
135# NOTE: -O does not work on some Unix systems!
136CCLIBFLAGS = -O
137
2e494f70 138# Version of ar to use when compiling libgcc1.a.
79d8453e 139OLDAR = ar
b614ee64 140OLDAR_FLAGS = qc
79d8453e 141
ba1811f1
ILT
142# Target to use when installing include directory. Either
143# install-headers-tar or install-headers-cpio.
3c18ea24 144INSTALL_HEADERS_DIR = @build_install_headers_dir@
ba1811f1 145
d7371761
RK
146# Header files that are made available under the same name
147# to programs compiled with GCC.
148USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
5c9f708d 149 $(srcdir)/ginclude/varargs.h $(srcdir)/ginclude/proto.h \
4c457b6b
UD
150 $(srcdir)/ginclude/stdbool.h $(srcdir)/ginclude/iso646.h \
151 $(EXTRA_HEADERS) $(LANG_EXTRA_HEADERS)
d7371761
RK
152
153# Target to use whe installing assert.h. Some systems may
154# want to set this empty.
155INSTALL_ASSERT_H = install-assert-h
156
a2d163c4 157# The GCC to use for compiling libgcc2.a, enquire, and libgcc1-test.
bf428f48 158# Usually the one we just built.
79d8453e 159# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
afe60c51 160GCC_FOR_TARGET = ./xgcc -B$(build_tooldir)/bin/ -B./ -I$(build_tooldir)/include
79d8453e
RS
161
162# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
163# It omits XCFLAGS, and specifies -B./.
de9253a0 164# It also specifies -I./include to find, e.g., stddef.h.
54577c52 165GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -I./include $(TCFLAGS)
79d8453e 166
338023d4 167# Sed command to transform gcc to installed name. Overwritten by configure.
e6347456 168program_transform_name = @program_transform_name@
ef85603e 169program_transform_cross_name = s,^,$(target_alias)-,
338023d4 170
88111b26
JL
171build_canonical = @build_canonical@
172host_canonical = @host_canonical@
173
79d8453e
RS
174# Tools to use when building a cross-compiler.
175# These are used because `configure' appends `cross-make'
176# to the makefile when making a cross-compiler.
177
7e717196
JL
178# Use the tools from the build tree, if they are available.
179
180# objdir is set by configure.
181objdir = @objdir@
182
183AR_FOR_TARGET = ` \
184 if [ -f $(objdir)/../binutils/ar ] ; then \
185 echo $(objdir)/../binutils/ar ; \
186 else \
187 if [ "$(host_canonical)" = "$(target)" ] ; then \
188 echo ar; \
189 else \
35f86a50 190 t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
7e717196
JL
191 fi; \
192 fi`
8f25d5cd 193AR_FLAGS_FOR_TARGET = rc
7e717196
JL
194RANLIB_FOR_TARGET = ` \
195 if [ -f $(objdir)/../binutils/ranlib ] ; then \
196 echo $(objdir)/../binutils/ranlib ; \
197 else \
198 if [ "$(host_canonical)" = "$(target)" ] ; then \
199 echo ranlib; \
200 else \
35f86a50 201 t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
7e717196
JL
202 fi; \
203 fi`
204RANLIB_TEST_FOR_TARGET = \
205 [ -f $(RANLIB_FOR_TARGET) ] \
206 || ( [ "$(host_canonical)" = "$(target)" ] \
207 && [ -f /usr/bin/ranlib -o -f /bin/ranlib ] )
208
1402d22c
RS
209# Dir to search for system headers. Overridden by cross-make.
210SYSTEM_HEADER_DIR = /usr/include
211
512b62fb
JM
212# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
213CROSS_SYSTEM_HEADER_DIR = $(tooldir)/sys-include
214
75b6984c
RS
215# Control whether to run fixproto.
216STMP_FIXPROTO = stmp-fixproto
ac1284f9 217
40dc28fc
ILT
218# Test to see whether <limits.h> exists in the system header files.
219LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
220
3c18ea24 221target=@target@
6920c391 222target_alias=@target_alias@
3c18ea24
RK
223xmake_file=@dep_host_xmake_file@
224tmake_file=@dep_tmake_file@
225out_file=$(srcdir)/config/@out_file@
226out_object_file=@out_object_file@
227md_file=$(srcdir)/config/@md_file@
228tm_file=@tm_file_list@
229build_xm_file=@build_xm_file_list@
230host_xm_file=@host_xm_file_list@
231lang_specs_files=@lang_specs_files@
232lang_options_files=@lang_options_files@
3103b7db 233lang_tree_files=@lang_tree_files@
f25270fc 234GCC_THREAD_FILE=@thread_file@
d8bb17c8 235OBJC_BOEHM_GC=@objc_boehm_gc@
f24af81b 236GTHREAD_FLAGS=@gthread_flags@
f1943b77
MH
237# Be prepared for gcc2 merges.
238gcc_version=@gcc_version@
239gcc_version_trigger=@gcc_version_trigger@
240version=$(gcc_version)
1cf94605 241mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
79d8453e 242
79d8453e
RS
243# Common prefix for installation directories.
244# NOTE: This directory must exist when you start installation.
3c18ea24 245prefix = @prefix@
c844ddda
RS
246# Directory in which to put localized header files. On the systems with
247# gcc as the native cc, `local_prefix' may not be `prefix' which is
248# `/usr'.
0b2fbcb2 249# NOTE: local_prefix *should not* default from prefix.
3c18ea24 250local_prefix = @local_prefix@
2e494f70 251# Directory in which to put host dependent programs and libraries
3c18ea24 252exec_prefix = @exec_prefix@
79d8453e 253# Directory in which to put the executable for the command `gcc'
3c18ea24 254bindir = @bindir@
79d8453e 255# Directory in which to put the directories used by the compiler.
3c18ea24 256libdir = @libdir@
79d8453e 257# Directory in which the compiler finds executables, libraries, etc.
8b06b20a 258libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
91c7bd9b 259# Used to produce a relative $(gcc_tooldir) in gcc.o
1f72bfca 260unlibsubdir = ../../..
d062c304 261# Directory in which to find other cross-compilation tools and headers.
4c112cda 262dollar = @dollar@
d062c304
JL
263# Used in install-cross.
264gcc_tooldir = @gcc_tooldir@
265# Since tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
266build_tooldir = $(exec_prefix)/$(target_alias)
89b3e3b4 267# Directory in which the compiler finds g++ includes.
8f8d3278 268gcc_gxx_include_dir= @gcc_gxx_include_dir@
49ba557e 269# Directory to search for site-specific includes.
4b7179be 270includedir = $(local_prefix)/include
6204c24f 271# assertdir is overridden in cross-make.
7b4d5f42 272# (But this currently agrees with what is in cross-make.)
91c7bd9b 273assertdir = $(gcc_tooldir)/include
0b2fbcb2 274# where the info files go
3c18ea24 275infodir = @infodir@
587a4ba6
L
276# Where cpp should go besides $prefix/bin if necessary
277cpp_install_dir = @cpp_install_dir@
ab87f8c8
JL
278# where the locale files go
279datadir = $(prefix)/@DATADIRNAME@
280localedir = $(datadir)/locale
79d8453e
RS
281# Extension (if any) to put in installed man-page filename.
282manext = .1
173712fb 283objext = .o
6e26218f
ILT
284exeext = @host_exeext@
285build_exeext = @build_exeext@
173712fb 286
79d8453e 287# Directory in which to put man pages.
a76b6b40
MH
288mandir = @mandir@
289man1dir = $(mandir)/man1
62c13b81
RS
290# Dir for temp files.
291tmpdir = /tmp
79d8453e 292
ab87f8c8
JL
293# Top build directory, relative to here.
294top_builddir = .
295
296# Whether we were configured with NLS.
297USE_NLS = @USE_NLS@
298
299# Internationalization library.
300INTLLIBS = @INTLLIBS@
301
302# List of internationalization subdirectories.
303POSUB = @POSUB@
304INTL_SUBDIRS = intl $(POSUB)
305
79d8453e
RS
306# Additional system libraries to link with.
307CLIB=
308
309# Change this to a null string if obstacks are installed in the
310# system library.
311OBSTACK=obstack.o
312
0a25f1f5 313# The GC method to be used on this system.
81bf3d9e 314GGC=@GGC@.o
0a25f1f5
RH
315
316# If a supplementary library is being used for the GC.
317GGC_LIB=
318
76b4b31e
KG
319# Configure will set these if you need vfprintf and possibly _doprnt support.
320VFPRINTF=@vfprintf@
321DOPRINT=@doprint@
322
b583eed8
DE
323# Specify the rule for actually making libgcc.a,
324LIBGCC = libgcc.a
325# and the rule for installing it.
326INSTALL_LIBGCC = install-libgcc
327
79d8453e 328# Specify the rule for actually making libgcc1.a.
2e494f70
RS
329# The value may be empty; that means to do absolutely nothing
330# with or for libgcc1.a.
79d8453e
RS
331LIBGCC1 = libgcc1.a
332
b0bfa186
ILT
333# Specify the rule for making libgcc1.a for a cross-compiler.
334# The default rule assumes that libgcc1.a is supplied by the user.
335CROSS_LIBGCC1 = libgcc1.cross
336
79d8453e
RS
337# Specify the rule for actually making libgcc2.a.
338LIBGCC2 = libgcc2.a
339
340# Options to use when compiling libgcc2.a.
341# -g1 causes output of debug info only for file-scope entities.
342# we use this here because that should be enough, and also
343# so that -g1 will be tested.
7337c67f 344#
11f39cf4 345LIBGCC2_DEBUG_CFLAGS = -g1
4c457b6b 346LIBGCC2_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
347
348# Additional options to use when compiling libgcc2.a.
349# Some targets override this to -Iinclude
350LIBGCC2_INCLUDES =
351
7bb7f3df 352# Additional target-dependent options for compiling libgcc2.a.
4c457b6b 353TARGET_LIBGCC2_CFLAGS =
7bb7f3df 354
56f9206d
ILT
355# Things which must be built before building libgcc2.a.
356# Some targets override this to stmp-int-hdrs
357LIBGCC2_DEPS =
79d8453e 358
a2d163c4
DE
359# libgcc1-test target (must also be overridable for a target)
360LIBGCC1_TEST = libgcc1-test
0defb1d5 361
79d8453e
RS
362# List of extra executables that should be compiled for this target machine
363# that are used for compiling from source code to object code.
364# The rules for compiling them should be in the t-* file for the machine.
3c18ea24 365EXTRA_PASSES =@extra_passes@
79d8453e 366
2e494f70 367# Like EXTRA_PASSES, but these are used when linking.
3c18ea24 368EXTRA_PROGRAMS = @extra_programs@
2e494f70
RS
369
370# List of extra object files that should be compiled for this target machine.
79d8453e 371# The rules for compiling them should be in the t-* file for the machine.
3c18ea24 372EXTRA_PARTS = @extra_parts@
79d8453e 373
2e494f70
RS
374# List of extra object files that should be compiled and linked with
375# compiler proper (cc1, cc1obj, cc1plus).
3c18ea24 376EXTRA_OBJS = @extra_objs@
2e494f70 377
43554690
RK
378# List of extra object files that should be compiled and linked with
379# the gcc driver.
3c18ea24 380EXTRA_GCC_OBJS =@host_extra_gcc_objs@
43554690 381
f780d21b
RS
382# List of additional header files to install.
383# Often this is edited directly by `configure'.
3c18ea24 384EXTRA_HEADERS =@extra_headers_list@
f780d21b 385
10da1131 386# Set this to `collect2' to enable use of collect2.
3c18ea24 387USE_COLLECT2 = @will_use_collect2@
657be7af
JL
388# If we might be using collect2, then this variable will be set to
389# -DUSE_COLLECT2. toplev.c, collect2.c and libgcc2.c all need to
390# if we may be using collect2.
f46fe00a 391MAYBE_USE_COLLECT2 = @maybe_use_collect2@
47547081
RS
392# It is convenient for configure to add the assignment at the beginning,
393# so don't override it here.
10da1131 394USE_COLLECT2 = collect2$(exeext)
47547081 395
79d8453e
RS
396# List of extra C and assembler files to add to libgcc1.a.
397# Assembler files should have names ending in `.asm'.
4c457b6b 398LIB1FUNCS_EXTRA =
79d8453e
RS
399
400# List of extra C and assembler files to add to libgcc2.a.
401# Assembler files should have names ending in `.asm'.
4c457b6b 402LIB2FUNCS_EXTRA =
79d8453e 403
587a4ba6
L
404# Handle cpp installation.
405INSTALL_CPP=
406UNINSTALL_CPP=
407
e7f62ad3
MH
408# We do not try to build float.h anymore. Let configure select the
409# appropriate pre-built float.h file for the target.
027ea2a7 410FLOAT_H=@float_h_file@
e7f62ad3 411
79d8453e 412# Program to convert libraries.
4c457b6b 413LIBCONVERT =
79d8453e
RS
414
415# Control whether header files are installed.
79d8453e
RS
416INSTALL_HEADERS=install-headers
417
66d7ffbf 418# Additional directories of header files to run fixincludes on.
4ab08223
RS
419# These should be directories searched automatically by default
420# just as /usr/include is.
4c457b6b 421# *Do not* use this for directories that happen to contain
4ab08223 422# header files, but are not searched automatically by default.
66d7ffbf
RS
423# On most systems, this is empty.
424OTHER_FIXINCLUDES_DIRS=
425
7c27f801
RK
426# A list of all the language-specific executables.
427# This is overridden by configure.
3379e8ef 428COMPILERS = cc1$(exeext) @all_compilers@
7c27f801 429
acbbf3d9 430# List of things which should already be built whenever we try to use xgcc
79d8453e 431# to compile anything (without linking).
e09e14e9 432GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES)
79d8453e 433
acbbf3d9 434# List of things which should already be built whenever we try to use xgcc
79d8453e 435# to link anything.
b583eed8 436GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
79d8453e 437
79d8453e
RS
438# Directory to link to, when using the target `maketest'.
439DIR = ../gcc
440
c3efc7c4 441# Guaranteed to not exist when not passing md through cpp.
aa90345a 442# This value is overridden directly by configure.
c3efc7c4
DE
443MD_FILE = md-cpp-not-used
444
79d8453e
RS
445# Flags to use when cross-building GCC.
446# Prefix to apply to names of object files when using them
447# to run on the machine we are compiling on.
448HOST_PREFIX=
449# Prefix to apply to names of object files when compiling them
450# to run on the machine we are compiling on.
4c457b6b 451# The default for this variable is chosen to keep these rules
79d8453e
RS
452# out of the way of the other rules for compiling the same source files.
453HOST_PREFIX_1=loser-
454HOST_CC=$(CC)
455HOST_CFLAGS=$(ALL_CFLAGS)
2e494f70 456HOST_CLIB=$(CLIB)
ab87f8c8 457HOST_INTLLIBS=$(INTLLIBS)
79d8453e
RS
458HOST_LDFLAGS=$(LDFLAGS)
459HOST_CPPFLAGS=$(ALL_CPPFLAGS)
2e494f70
RS
460HOST_ALLOCA=$(ALLOCA)
461HOST_MALLOC=$(MALLOC)
462HOST_OBSTACK=$(OBSTACK)
76b4b31e
KG
463HOST_VFPRINTF=$(VFPRINTF)
464HOST_DOPRINT=$(DOPRINT)
79d8453e 465
338023d4 466# Actual name to use when installing a native compiler.
ef85603e 467GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed -e $$t`
922cf99e 468CPP_INSTALL_NAME = `t='$(program_transform_name)'; echo cpp | sed -e $$t`
225695a4
JW
469PROTOIZE_INSTALL_NAME = `t='$(program_transform_name)'; echo protoize | sed -e $$t`
470UNPROTOIZE_INSTALL_NAME = `t='$(program_transform_name)'; echo unprotoize | sed -e $$t`
23473647 471GCOV_INSTALL_NAME = `t='$(program_transform_name)'; echo gcov | sed -e $$t`
338023d4
DE
472
473# Actual name to use when installing a cross-compiler.
ef85603e 474GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed -e $$t`
9799e470 475CPP_CROSS_NAME = `t='$(program_transform_cross_name)'; echo cpp | sed -e $$t`
225695a4
JW
476PROTOIZE_CROSS_NAME = `t='$(program_transform_cross_name)'; echo protoize | sed -e $$t`
477UNPROTOIZE_CROSS_NAME = `t='$(program_transform_cross_name)'; echo unprotoize | sed -e $$t`
338023d4 478
79d8453e
RS
479# Choose the real default target.
480ALL=all.internal
481
482# Choose the real install target.
ba1811f1
ILT
483INSTALL_TARGET=install-normal
484
e933cbe0
JL
485# Setup the testing framework, if you have one
486EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
487 echo $${rootme}/../expect/expect ; \
488 else echo expect ; fi`
489
490RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
491 echo $${srcdir}/../dejagnu/runtest ; \
492 else echo runtest; fi`
493RUNTESTFLAGS =
494
aefc3801 495# Extra symbols for fixproto to define when parsing headers.
4c457b6b 496FIXPROTO_DEFINES =
aefc3801 497
68d69835 498# Extra flags to use when compiling crt{begin,end}.o.
4c457b6b 499CRTSTUFF_T_CFLAGS =
68d69835 500
522170ca 501# Extra flags to use when compiling [m]crt0.o.
4c457b6b 502CRT0STUFF_T_CFLAGS =
522170ca 503
e9a25f70
JL
504# "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
505T =
506
79d8453e
RS
507# End of variables for you to override.
508
509# Definition of `all' is here so that new rules inserted by sed
510# do not specify the default target.
511# The real definition is under `all.internal' (for native compilers)
512# or `all.cross' (for cross compilers).
2e494f70 513all: all.indirect
79d8453e 514
be0d23ff
RS
515# This tells GNU Make version 3 not to put all variables in the environment.
516.NOEXPORT:
517
79d8453e 518# sed inserts variable overrides after the following line.
60d00117 519####target overrides
3c18ea24
RK
520@target_overrides@
521
60d00117 522####host overrides
3c18ea24
RK
523@host_overrides@
524
60d00117 525####cross overrides
3c18ea24
RK
526@cross_defines@
527@cross_overrides@
528
057f494b 529####build overrides
3c18ea24 530@build_overrides@
544eb21e 531#\f
79d8453e
RS
532# Now figure out from those variables how to compile and link.
533
2e494f70
RS
534all.indirect: $(ALL)
535
2bdfeefa 536# IN_GCC tells various files that system.h, toplev.c, etc are available.
7b5efe21 537INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@
79d8453e
RS
538
539# This is the variable actually used when we compile.
2df8df36
JW
540# If you change this line, you probably also need to change the definition
541# of HOST_CFLAGS in build-make to match.
d68b51ef 542ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) \
2df8df36 543 @DEFS@
79d8453e
RS
544
545# Likewise.
546ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
547
548# Even if ALLOCA is set, don't use it if compiling with GCC.
3fe40e05
JL
549USE_ALLOCA= ${ALLOCA}
550USE_HOST_ALLOCA= ` case "${HOST_ALLOCA}" in ?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
2e494f70
RS
551USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
552USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
76b4b31e
KG
553USE_HOST_VFPRINTF= ` case "${HOST_VFPRINTF}" in ?*) echo ${HOST_PREFIX}${HOST_VFPRINTF} ;; esac `
554USE_HOST_DOPRINT= ` case "${HOST_DOPRINT}" in ?*) echo ${HOST_PREFIX}${HOST_DOPRINT} ;; esac `
79d8453e
RS
555
556# Dependency on obstack, alloca, malloc or whatever library facilities
557# are not installed in the system libraries.
558# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
ab87f8c8 559LIBDEPS= $(INTLLIBS) $(OBSTACK) $(ALLOCA) $(MALLOC) $(VFPRINTF) $(DOPRINT)
79d8453e
RS
560
561# Likewise, for use in the tools that must run on this machine
562# even if we are cross-building GCC.
563# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
ab87f8c8 564HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_INTLLIBS) $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC) $(HOST_PREFIX)$(HOST_VFPRINTF) $(HOST_PREFIX)$(HOST_DOPRINT)
79d8453e
RS
565
566# How to link with both our special library facilities
567# and the system's installed libraries.
ab87f8c8 568LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(INTLLIBS) @LIBS@ $(VFPRINTF) $(DOPRINT) $(CLIB) ../libiberty/libiberty.a
79d8453e
RS
569
570# Likewise, for use in the tools that must run on this machine
571# even if we are cross-building GCC.
2e494f70 572HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
ab87f8c8
JL
573 $(HOST_INTLLIBS) $(USE_HOST_VFPRINTF) $(USE_HOST_DOPRINT) \
574 $(HOST_CLIB)
79d8453e 575
0a25f1f5 576HOST_RTL = $(HOST_PREFIX)rtl.o $(HOST_PREFIX)bitmap.o $(HOST_PREFIX)ggc-none.o
d3614a37 577HOST_PRINT = $(HOST_PREFIX)print-rtl.o
f8b6598e 578HOST_ERRORS = $(HOST_PREFIX)errors.o
79d8453e
RS
579
580# Specify the directories to be searched for header files.
581# Both . and srcdir are used, in that order,
582# so that tm.h and config.h will be found in the compilation
583# subdirectory rather than in the source directory.
8cfa5320 584INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config -I$(srcdir)/../include
79d8453e
RS
585
586# Always use -I$(srcdir)/config when compiling.
587.c.o:
588 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
589
590# This tells GNU make version 3 not to export all the variables
591# defined in this file into the environment.
592.NOEXPORT:
544eb21e 593#\f
013a2ee0
DE
594# Support for additional languages (other than c and objc).
595# ??? objc can be supported this way too (leave for later).
596
597# These next lines are overridden by configure.
3c18ea24
RK
598LANG_MAKEFILES = @all_lang_makefiles@
599LANG_STAGESTUFF = @all_stagestuff@
600LANG_DIFF_EXCLUDES = @all_diff_excludes@
601LANG_LIB2FUNCS = @all_lib2funcs@
602LANG_EXTRA_HEADERS = @all_headers@
013a2ee0
DE
603
604# Flags to pass to recursive makes.
605# CC is set by configure. Hosts without symlinks need special handling
606# because we need CC="stage1/xgcc -Bstage1/" to work in the language
607# subdirectories.
608# ??? The choices here will need some experimenting with.
e6980e1b 609ORDINARY_FLAGS_TO_PASS = \
8f25d5cd 610 "AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
013a2ee0
DE
611 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
612 "BISON=$(BISON)" \
613 "BISONFLAGS=$(BISONFLAGS)" \
013a2ee0 614 "CFLAGS=$(CFLAGS)" \
89c8019a 615 "CLIB=$(CLIB)" \
dc93cff0 616 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
013a2ee0
DE
617 "LDFLAGS=$(LDFLAGS)" \
618 "LEX=$(LEX)" \
619 "LEXFLAGS=$(LEXFLAGS)" \
ac64120e
JW
620 "LN=$(LN)" \
621 "LN_S=$(LN_S)" \
013a2ee0
DE
622 "MAKEINFO=$(MAKEINFO)" \
623 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
013a2ee0
DE
624 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
625 "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
626 "SHELL=$(SHELL)" \
3c18ea24 627 "STAGE_PREFIX=@stage_prefix_set_by_configure@" \
aab26e16 628 "exeext=$(exeext)" \
6e26218f 629 "build_exeext=$(build_exeext)" \
aab26e16 630 "objext=$(objext)" \
013a2ee0
DE
631 "exec_prefix=$(exec_prefix)" \
632 "prefix=$(prefix)" \
3bf810d8 633 "local_prefix=$(local_prefix)" \
8f8d3278 634 "gxx_include_dir=$(gcc_gxx_include_dir)" \
013a2ee0 635 "tooldir=$(tooldir)" \
91c7bd9b 636 "gcc_tooldir=$(gcc_tooldir)" \
013a2ee0 637 "bindir=$(bindir)" \
ab87f8c8
JL
638 "libsubdir=$(libsubdir)" \
639 "datadir=$(datadir)" \
640 "distdir=../tmp/\$$(subdir)" \
641 "localedir=$(localedir)"
e6980e1b 642FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@"
ab87f8c8
JL
643PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
644 -e 's|^ *[^ /][^ /]*/|%&|' \
645 -e 's| -B| -B%|g' \
646 -e 's|% *[^- /]|%&|g' \
647 -e 's|%% *|../|g' \
648 -e 's|%||g'
649SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
5aa82ace 650 "CC=`echo @quoted_cc_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`"
544eb21e 651#\f
79d8453e
RS
652# Lists of files for various purposes.
653
3cb88565
PB
654# Language-specific object files for C and Objective C.
655C_AND_OBJC_OBJS = c-lex.o c-pragma.o c-decl.o c-typeck.o c-convert.o \
1526a060 656 c-aux-info.o c-common.o c-iterate.o @extra_c_objs@
3cb88565 657
79d8453e 658# Language-specific object files for C.
3cb88565 659C_OBJS = c-parse.o c-lang.o $(C_AND_OBJC_OBJS)
e8066a5d 660
79d8453e 661# Language-independent object files.
6ed551b4
GDR
662OBJS = diagnostic.o \
663 toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
28f4ec01
BS
664 function.o stmt.o except.o expr.o calls.o expmed.o explow.o optabs.o real.o \
665 builtins.o intl.o varasm.o rtl.o print-rtl.o rtlanal.o emit-rtl.o genrtl.o \
ab87f8c8 666 dbxout.o sdbout.o dwarfout.o dwarf2out.o xcoffout.o bitmap.o alias.o gcse.o \
6feacd09 667 integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o varray.o \
ab87f8c8 668 regclass.o regmove.o local-alloc.o global.o reload.o reload1.o caller-save.o \
7b5efe21 669 insn-peep.o reorg.o haifa-sched.o final.o recog.o reg-stack.o \
d2ecda27 670 insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o lcm.o \
a2957e1d 671 profile.o insn-attrtab.o $(out_object_file) $(EXTRA_OBJS) convert.o \
03705c95 672 mbchar.o dyn-string.o splay-tree.o graph.o sbitmap.o resource.o hash.o \
0cedb36c 673 lists.o ggc-common.o $(GGC) simplify-rtx.o
79d8453e
RS
674
675# GEN files are listed separately, so they can be built before doing parallel
676# makes for cc1 or cc1plus. Otherwise sequent parallel make attempts to load
677# them before rtl.o is compiled.
3b80f6ca 678GEN= genemit genoutput genrecog genextract genflags gencodes genconfig \
8376d400 679 genpeep gengenrtl gencheck
79d8453e 680
e061d1ce 681CCCP=@cpp_main@
59949f60 682
79d8453e 683# Files to be copied away after each stage in building.
aab26e16 684STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
79d8453e 685 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
ab87f8c8 686 insn-attr.h insn-attrtab.c insn-opinit.c tree-check.h \
c5c76735 687 s-flags s-config s-codes s-mlib s-unders s-genrtl \
9ec36da5 688 s-output s-recog s-emit s-extract s-peep s-check \
e5e809f4 689 s-attr s-attrtab s-opinit s-crt s-crtS s-crt0 \
6e26218f
ILT
690 genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
691 genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
692 genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
206ae7cf 693 genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
8376d400 694 gencheck$(build_exeext) \
922cf99e 695 xgcc$(exeext) xcpp$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES) \
21f74c82 696 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
aab26e16
RK
697 $(CCCP)$(exeext) cc1obj$(exeext) enquire$(exeext) \
698 protoize$(exeext) unprotoize$(exeext) \
7ac16ba0 699 specs collect2$(exeext) $(USE_COLLECT2) underscore.c \
59a64126 700 gcov$(exeext) *.bp \
ed8a0e58 701 *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop \
ede7cd44 702 *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack *.gcse *.flow2 *.peephole2 \
f6c2a93c 703 *.[si] libcpp.a \
013a2ee0 704 $(LANG_STAGESTUFF)
79d8453e
RS
705
706# Members of libgcc1.a.
707LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
b6eb802a 708 _lshrsi3 _ashrsi3 _ashlsi3 \
79d8453e
RS
709 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
710 _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
711 _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
712 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
713 _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
714
715# Library members defined in libgcc2.c.
716LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
b6eb802a 717 _lshrdi3 _ashldi3 _ashrdi3 _ffsdi2 \
3af18470 718 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
79d8453e 719 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
3971e415 720 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
d1b4b7c1 721 _fixtfdi _fixunstfdi _floatditf \
ced78d8b
JM
722 __gcc_bcmp _varargs __dummy _eprintf \
723 _bb _shtab _clear_cache _trampoline __main _exit \
624a8b3a
JL
724 _ctors _pure
725
726LIB2FUNCS_EH = _eh
79d8453e 727
5198352e
JL
728FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
729 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
730 _lt_sf _le_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
8dcd865f 731 _sf_to_df _thenan_sf _sf_to_usi _df_to_usi
5198352e
JL
732
733DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
734 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
735 _lt_df _le_df _si_to_df _df_to_si _negate_df _make_df \
8dcd865f 736 _df_to_sf _thenan_df _sf_to_usi _df_to_usi
5198352e 737
79d8453e
RS
738# The files that "belong" in CONFIG_H are deliberately omitted
739# because having them there would not be useful in actual practice.
740# All they would do is cause complete recompilation every time
741# one of the machine description files is edited.
742# That may or may not be what one wants to do.
743# If it is, rm *.o is an easy way to do it.
7ac16ba0 744# CONFIG_H = $(host_xm_file) $(tm_file)
79d8453e 745CONFIG_H =
1eb14644
KG
746MACHMODE_H = machmode.h machmode.def
747RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
3b80f6ca 748RTL_H = $(RTL_BASE_H) genrtl.h
1eb14644 749TREE_H = tree.h real.h tree.def $(MACHMODE_H) tree-check.h
a6873608 750BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h
2bfdc2d4 751DEMANGLE_H = $(srcdir)/../include/demangle.h
0056a9b5 752RECOG_H = recog.h
50793ea3 753EXPR_H = expr.h insn-codes.h
1eb14644 754REGS_H = regs.h varray.h $(MACHMODE_H)
6165fb6b 755INTEGRATE_H = integrate.h varray.h
4dc9341c 756LOOP_H = loop.h varray.h
544eb21e 757#\f
013a2ee0
DE
758# Language makefile fragments.
759
760# The following targets define the interface between us and the languages.
761#
762# all.build, all.cross, start.encap, rest.encap,
763# info, dvi,
764# install-normal, install-common, install-info, install-man,
765# uninstall, distdir,
f1908d70 766# mostlyclean, clean, distclean, extraclean, maintainer-clean,
013a2ee0
DE
767# stage1, stage2, stage3, stage4
768#
769# Each language is linked in with a series of hooks (since we can't use `::'
770# targets). The name of each hooked is "lang.${target_name}" (eg: lang.info).
771# Configure computes and adds these here.
772
773####language hooks
3c18ea24 774@language_hooks@
013a2ee0
DE
775
776# sed inserts language fragments after the following line.
777####language fragments
3c18ea24 778@language_fragments@
013a2ee0
DE
779
780# End of language makefile fragments.
544eb21e 781#\f
024b5658
JM
782# The only suffixes we want for implicit rules are .c and .o, so clear
783# the list and add them. This speeds up GNU Make, and allows -r to work.
784.SUFFIXES:
785.SUFFIXES: .c .o
79d8453e 786
7c0ae5f1 787Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
d232dfa4
DE
788 $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
789 $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
790 "$(xmake_file)" "$(tmake_file)"
173712fb 791 cp config.status config.run
71205e0b 792 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.run
da0d7cb1 793 rm -f config.run
79d8453e 794
723778b0 795$(srcdir)/configure: $(srcdir)/configure.in
3c18ea24
RK
796 cd $(srcdir); autoconf
797
da7ece9a 798# cstamp-h.in controls rebuilding of config.in.
7c0ae5f1
DE
799# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
800# delete it. A stamp file is needed as autoheader won't update the file if
801# nothing has changed.
da7ece9a
DE
802# It remains in the source directory and is part of the distribution.
803# This follows what is done in shellutils, fileutils, etc.
5408f8d0
DE
804# "echo timestamp" is used instead of touch to be consistent with other
805# packages that use autoconf (??? perhaps also to avoid problems with patch?).
da7ece9a
DE
806# ??? Newer versions have a maintainer mode that may be useful here.
807$(srcdir)/config.in: $(srcdir)/cstamp-h.in
808$(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
60ee2a7a 809 cd $(srcdir) && autoheader
71d085b0 810 @rm -f $(srcdir)/cstamp-h.in
5408f8d0 811 echo timestamp > $(srcdir)/cstamp-h.in
b7cb92ad 812auto-host.h: cstamp-h ; @true
da7ece9a 813cstamp-h: config.in config.status
71205e0b 814 CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
d68b51ef 815
7c0ae5f1
DE
816# Really, really stupid make features, such as SUN's KEEP_STATE, may force
817# a target to build even if it is up-to-date. So we must verify that
818# config.status does not exist before failing.
c5c76735 819config.status: $(srcdir)/configure version.c
7c0ae5f1
DE
820 @if [ ! -f config.status ] ; then \
821 echo You must configure gcc. Look at the INSTALL file for details.; \
822 false; \
823 else \
71205e0b 824 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
7c0ae5f1
DE
825 fi
826
43297964 827all.internal: start.encap rest.encap doc
79d8453e 828# This is what to compile if making a cross-compiler.
013a2ee0 829# Note that we can compile enquire using the cross-compiler just built,
42396e97 830# although we can't run it on this machine.
d81c9768
AS
831all.cross: native gcc-cross xcpp$(exeext) specs stmp-headers $(STMP_FIXPROTO) \
832 $(LIBGCC) $(LIBGCC1_TEST) $(EXTRA_PARTS) lang.all.cross doc
057f494b 833# This is what to compile if making gcc with a cross-compiler.
922cf99e 834all.build: native xgcc$(exeext) xcpp$(exeext) $(EXTRA_PARTS) lang.all.build
79d8453e 835# This is what must be made before installing GCC and converting libraries.
922cf99e
ZW
836start.encap: native xgcc$(exeext) xcpp$(exeext) specs $(LIBGCC1) \
837 xlimits.h lang.start.encap
eea77e5f 838# These can't be made until after GCC can run.
8d45987f 839rest.encap: stmp-headers $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
79d8453e
RS
840# This is what is made with the host's compiler
841# whether making a cross compiler or not.
ab87f8c8 842native: config.status auto-host.h cpp$(exeext) intl.all $(LANGUAGES) \
88393a07 843 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
79d8453e
RS
844
845# Define the names for selecting languages in LANGUAGES.
e09e14e9 846C c: cc1$(exeext)
79d8453e
RS
847PROTO: proto
848
bff3fc41 849# Tell GNU make these are phony targets.
3379e8ef 850.PHONY: C c PROTO proto
bff3fc41 851
3aa072f2
RS
852# On the target machine, finish building a cross compiler.
853# This does the things that can't be done on the host machine.
027ea2a7 854rest.cross: $(LIBGCC) specs
3aa072f2 855
a2d163c4 856# Verify that it works to compile and link libgcc1-test.
e97ed334 857# If it does, then there are sufficient replacements for libgcc1.a.
a2d163c4 858libgcc1-test: libgcc1-test.o native $(GCC_PARTS)
8f28aa33 859 @echo "Testing libgcc1. Ignore linker warning messages."
a2d163c4 860 $(GCC_FOR_TARGET) $(GCC_CFLAGS) libgcc1-test.o -o libgcc1-test \
fda92428 861 -nostartfiles -nostdlib `$(GCC_FOR_TARGET) --print-libgcc-file-name`
e09e14e9 862libgcc1-test.o: libgcc1-test.c native xgcc$(exeext)
a2d163c4 863 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/libgcc1-test.c
e97ed334 864
3aa072f2
RS
865# Recompile all the language-independent object files.
866# This is used only if the user explicitly asks for it.
79d8453e
RS
867compilations: ${OBJS}
868
6c1cc7fa
DE
869# Create a list of the language-independent object files so the language
870# subdirectories needn't mention their names explicitly.
4c457b6b 871stamp-objlist: $(OBJS)
b93a436e 872 echo " $(OBJS)" | sed -e 's, \([a-z0-9]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist
6c1cc7fa 873
acbbf3d9
RS
874# We call this executable `xgcc' rather than `gcc'
875# to avoid confusion if the current directory is in the path
876# and CC is `gcc'. It is renamed to `gcc' when it is installed.
08dc830e 877xgcc$(exeext): gcc.o gccspec.o version.o intl.o prefix.o \
917acb0e 878 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
08dc830e
ZW
879 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o gccspec.o intl.o \
880 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
3aa072f2 881
922cf99e
ZW
882# We call this executable `xcpp' rather than `cpp'
883# since the real preprocessor is named `cpp'. It too is renamed
884# when it is installed.
885# The only difference from xgcc is that it's linked with cppspec.o
886# instead of gccspec.o.
887xcpp$(exeext): gcc.o cppspec.o version.o intl.o prefix.o \
888 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
889 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o cppspec.o intl.o \
890 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
891
3aa072f2 892# Dump a specs file to make -B./ read these specs over installed ones.
e09e14e9 893specs: xgcc$(exeext)
d521a023
RK
894 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
895 mv tmp-specs specs
79d8453e 896
acbbf3d9 897# We do want to create an executable named `xgcc', so we can use it to
79d8453e
RS
898# compile libgcc2.a.
899# Also create gcc-cross, so that install-common will install properly.
e09e14e9 900gcc-cross: xgcc$(exeext)
aab26e16 901 cp xgcc$(exeext) gcc-cross$(exeext)
79d8453e 902
19283265
RH
903cc1$(exeext): $(P) $(OBJS) $(C_OBJS) $(LIBDEPS)
904 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(C_OBJS) $(LIBS)
79d8453e 905
1402d22c
RS
906# Build the version of limits.h that we will install.
907xlimits.h: glimits.h limitx.h limity.h
40dc28fc 908 if $(LIMITS_H_TEST) ; then \
d521a023 909 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
1402d22c 910 else \
d521a023 911 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
1402d22c 912 fi
d521a023 913 mv tmp-xlimits.h xlimits.h
544eb21e 914#\f
79d8453e
RS
915# Build libgcc.a.
916# This is done in two parts because some functions, in libgcc1.c,
acbbf3d9
RS
917# must be compiled with something other than GCC,
918# while the rest, in libgcc2.c, must be compiled with xgcc.
919# That means we can't do libgcc2.c until after xgcc, cc1, etc.
79d8453e
RS
920
921# Use this as value of LIBGCC1 to cause conversion to GNU library format.
922# LIBCONVERT should put its output in libgcc1.conv.
923libgcc1.conv: libgcc1.a
924 $(LIBCONVERT) libgcc1.a libgcc1.conv
925
926# Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
927# Make an empty file instead.
57cd2ea1 928libgcc1.null: $(GCC_PASSES)
f1b03ce1 929 echo "void __foo () {}" > dummy.c
79d8453e 930 $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
8f25d5cd 931 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) libgcc1.null dummy$(objext)
aab26e16 932 rm -f dummy$(objext) dummy.c
79d8453e 933
b7ac21e3 934# This is $(LIBGCC1) for a cross-compiler.
4c457b6b 935# We have no automatic way of building libgcc1.a,
b7ac21e3
RS
936# so it's up to the installer to find a way to do that.
937# This rule deliberately does not depend on libgcc1.a
938# so that it will fail if the installer hasn't provided it.
939libgcc1.cross:
940 mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
941
79d8453e 942# Compile the library of arithmetic subroutines with the native compiler.
acbbf3d9 943# Don't compile it with GCC!
79d8453e 944# (That would cause most arithmetic functions to call themselves.)
38b3fa08
RK
945#
946# NOTE: If you modify these rules substantially, please be sure to
947# check at least config/i386/t-sco5 and possibly other makefile
948# fragments.
79d8453e
RS
949libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
950 -rm -f tmplibgcc1.a
951# Actually build it in tmplibgcc1.a, then rename at end,
952# so that libgcc1.a itself remains nonexistent if compilation is aborted.
953# -e causes any failing command to make this rule fail.
954# -e doesn't work in certain shells, so we test $$? as well.
432fde52
JW
955# lynx has a broken ar, it always complains when the initial library is
956# empty, thus this command works only if we don't do -e
957# There is a trailing backslash (\) deleted from the following line.
958# set -e;
79d8453e
RS
959 for name in $(LIB1FUNCS); \
960 do \
961 echo $${name}; \
aab26e16 962 rm -f $${name}$(objext); \
38b3fa08 963 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
79d8453e 964 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
aab26e16
RK
965 mv libgcc1$(objext) $${name}$(objext); \
966 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
967 rm -f $${name}$(objext); \
79d8453e
RS
968 done
969# Some shells crash when a loop has no items.
970# So make sure there is always at least one--`..'.
971# Then ignore it.
972# We don't use -e here because there are if statements
973# that should not make the command give up when the if condition is false.
974# Instead, we test for failure after each command where it matters.
49041557 975 for file in .. $(LIB1FUNCS_EXTRA); \
79d8453e
RS
976 do \
977 if [ x$${file} != x.. ]; then \
5918c853 978 name=`echo $${file} | sed -e 's/[.][cS]$$//' -e 's/[.]asm$$//'`; \
79d8453e
RS
979 echo $${name}; \
980 if [ $${name}.asm = $${file} ]; then \
62c13b81 981 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
79d8453e 982 else true; fi; \
38b3fa08 983 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
79d8453e 984 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
aab26e16 985 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
79d8453e 986 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
aab26e16 987 rm -f $${name}.s $${name}$(objext); \
79d8453e
RS
988 else true; \
989 fi; \
990 done
8f25d5cd
JW
991 -if $(RANLIB_TEST_FOR_TARGET) ; then \
992 $(RANLIB_FOR_TARGET) tmplibgcc1.a; \
993 else true; fi
79d8453e
RS
994 mv tmplibgcc1.a libgcc1.a
995
44d65d84
DE
996# Build libgcc1.a from assembler source. LIB1ASMFUNCS is the list of
997# functions. LIB1ASMSRC is the name of the source file in the config
998# subdirectory.
999libgcc1-asm.a: libgcc2.ready config.status $(srcdir)/config/$(LIB1ASMSRC)
1000 -rm -f tmplibgcc1.a libgcc1.S
1001 cp $(srcdir)/config/$(LIB1ASMSRC) libgcc1.S
1002# Actually build it in tmplibgcc1.a, then rename at end,
1003# so that libgcc1-asm.a itself remains nonexistent if compilation is aborted.
1004# -e causes any failing command to make this rule fail.
1005# -e doesn't work in certain shells, so we test $$? as well.
1006# lynx has a broken ar, it always complains when the initial library is
1007# empty, thus this command works only if we don't do -e
1008# There is a trailing backslash (\) deleted from the following line.
1009# set -e;
1010 for name in $(LIB1ASMFUNCS); \
1011 do \
1012 echo $${name}; \
1013 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} libgcc1.S; \
1014 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
aab26e16 1015 mv libgcc1$(objext) $${name}$(objext); \
8f25d5cd 1016 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc1.a $${name}$(objext); \
aab26e16 1017 rm -f $${name}$(objext); \
44d65d84
DE
1018 done
1019 -rm -f libgcc1.S
1020 mv tmplibgcc1.a libgcc1-asm.a
1021
a2ab7f2b
DE
1022# Generate assembly versions of the functions required for libgcc1.
1023# You'll still need to massage the code by hand (possibly hacking
1024# underscores and local labels) but this will get you started.
1025libgcc1.S: libgcc1.c $(CONFIG_H) config.status
1026 -rm -f libgcc1.S
1027 touch libgcc1.S
1028 for name in $(LIB1FUNCS); \
1029 do \
1030 echo $${name}; \
38b3fa08 1031 $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -S -DL$${name} $(srcdir)/libgcc1.c; \
a2ab7f2b
DE
1032 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1033 echo '#ifdef ' L$${name} >> libgcc1.S; \
1034 cat libgcc1.s >> libgcc1.S; \
1035 echo '#endif /*' L$${name} '*/' >> libgcc1.S; \
1036 echo "" >> libgcc1.S; \
1037 done
1038
79d8453e
RS
1039# Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
1040# But recompiling cc1 should not force recompilation of libgcc2.a.
1041# If you want to force recompilation, delete libgcc2.a.
e7f62ad3 1042libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS) stmp-int-hdrs $(STMP_FIXPROTO)
79d8453e
RS
1043 -if [ -f libgcc2.ready ] ; then \
1044 true; \
1045 else \
1046 touch libgcc2.ready; \
1047 fi
1048
ca55abae 1049LIB2ADD = $(srcdir)/frame.c $(LIB2FUNCS_EXTRA) $(LANG_LIB2FUNCS)
5198352e 1050libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(FPBIT) $(DPBIT) $(LIB2ADD) \
a50fbd96 1051 $(MACHMODE_H) longlong.h frame.h gbl-ctors.h config.status stmp-int-hdrs
79d8453e
RS
1052# Actually build it in tmplibgcc2.a, then rename at end,
1053# so that libgcc2.a itself remains nonexistent if compilation is aborted.
1054 -rm -f tmplibgcc2.a
1055# -e causes any failing command to make this rule fail.
1056# -e doesn't work in certain shells, so we test $$? as well.
432fde52
JW
1057# lynx has a broken ar, it always complains when the initial library is
1058# empty, thus this command works only if we don't do -e
1059# There is a trailing backslash (\) deleted from the following line.
1060# set -e;
79d8453e
RS
1061 for name in $(LIB2FUNCS); \
1062 do \
1063 echo $${name}; \
2e494f70 1064 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
657be7af 1065 $(MAYBE_USE_COLLECT2) $(srcdir)/libgcc2.c -o $${name}$(objext); \
79d8453e 1066 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8f25d5cd 1067 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${name}$(objext); \
aab26e16 1068 rm -f $${name}$(objext); \
79d8453e 1069 done
624a8b3a
JL
1070 for name in $(LIB2FUNCS_EH); \
1071 do \
1072 echo $${name}; \
1073 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) -fexceptions $(INCLUDES) -c \
1074 -DL$${name} $(srcdir)/libgcc2.c -o $${name}$(objext); \
1075 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8f25d5cd 1076 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${name}$(objext); \
624a8b3a
JL
1077 rm -f $${name}$(objext); \
1078 done
5198352e
JL
1079 if [ x$(FPBIT) != x ]; then \
1080 for name in $(FPBIT_FUNCS); \
1081 do \
1082 echo $${name}; \
1083 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
1084 -DFINE_GRAINED_LIBRARIES $(FPBIT) -o $${name}$(objext); \
1085 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8f25d5cd 1086 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${name}$(objext); \
5198352e
JL
1087 rm -f $${name}$(objext); \
1088 done; \
1089 else true; fi;
1090 if [ x$(DPBIT) != x ]; then \
1091 for name in $(DPBIT_FUNCS); \
1092 do \
1093 echo $${name}; \
1094 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
8dcd865f 1095 -DFINE_GRAINED_LIBRARIES $(DPBIT) -o _dp$${name}$(objext); \
5198352e 1096 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8dcd865f
BK
1097 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a _dp$${name}$(objext); \
1098 rm -f _dp$${name}$(objext); \
5198352e
JL
1099 done; \
1100 else true; fi;
79d8453e
RS
1101# Some shells crash when a loop has no items.
1102# So make sure there is always at least one--`..'.
1103# Then ignore it.
1104# We don't use -e here because there are if statements
1105# that should not make the command give up when the if condition is false.
1106# Instead, we test for failure after each command where it matters.
ca55abae
JM
1107 for file in $(LIB2ADD); do \
1108 name=`echo $${file} | sed -e 's/[.][cSo]$$//' -e 's/[.]asm$$//' -e 's/[.]txt$$//'`; \
1109 oname=` echo $${name} | sed -e 's,.*/,,'`; \
1110 if [ $${name}.txt = $${file} ]; then \
1111 for f in .. `cat $${file}`; do if [ x$${f} != x.. ]; then \
1112 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
8f25d5cd
JW
1113 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1114 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" CC="$(CC)" \
ca55abae
JM
1115 CFLAGS="$(CFLAGS)" HOST_PREFIX="$(HOST_PREFIX)" \
1116 HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1117 LANGUAGES="$(LANGUAGES)" \
1118 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $${f}; \
f7055b09 1119 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8f25d5cd 1120 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${f}; \
ca55abae
JM
1121 rm -f $${f}; \
1122 else true; \
1123 fi; done; \
1124 else \
1125 echo $${name}; \
1126 if [ $${name}.asm = $${file} ]; then \
1127 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
1128 else true; fi; \
1129 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
1130 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
8f25d5cd 1131 $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) tmplibgcc2.a $${oname}$(objext); \
ca55abae 1132 rm -f $${name}.s $${oname}$(objext); \
79d8453e
RS
1133 fi; \
1134 done
1135 mv tmplibgcc2.a libgcc2.a
1136# These lines were deleted from above the mv command
1137# because ranlibing libgcc.a itself should suffice.
1138# -if [ x${HPUX_GAS} = x ] ; then \
8f25d5cd
JW
1139# if $(RANLIB_TEST_FOR_TARGET) ; then \
1140# $(RANLIB_FOR_TARGET) tmplibgcc2.a;
1141# else true; fi; \
79d8453e
RS
1142# else true; fi
1143
1144# Combine the various libraries into a single library, libgcc.a.
1145libgcc.a: $(LIBGCC1) $(LIBGCC2)
1146 -rm -rf tmplibgcc.a libgcc.a tmpcopy
1147 mkdir tmpcopy
2e494f70 1148 -if [ x$(LIBGCC1) != x ]; \
8f25d5cd 1149 then (cd tmpcopy; $(AR_FOR_TARGET) x ../$(LIBGCC1)); \
2e494f70
RS
1150 else true; \
1151 fi
2516bc12
JW
1152# Some versions of ar (specifically the one in RISC/os 5.x), create an
1153# unwritable table of contents file, and then print an error message when
1154# the second ar command tries to overwrite this file. To avoid the error
1155# message from ar, we make sure all files are writable.
cfc327a2 1156 -(cd tmpcopy; chmod +w * > /dev/null 2>&1)
8f25d5cd
JW
1157 (cd tmpcopy; $(AR_FOR_TARGET) x ../$(LIBGCC2))
1158 (cd tmpcopy; $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) ../tmplibgcc.a *$(objext))
79d8453e 1159 rm -rf tmpcopy
8f25d5cd
JW
1160 -if $(RANLIB_TEST_FOR_TARGET) ; then \
1161 $(RANLIB_FOR_TARGET) tmplibgcc.a; \
1162 else true; fi
79d8453e
RS
1163# Actually build it in tmplibgcc.a, then rename at end,
1164# so that libgcc.a itself remains nonexistent if compilation is aborted.
1165 mv tmplibgcc.a libgcc.a
1166
f6cdc7ea
DE
1167# Use the genmultilib shell script to generate the information the gcc
1168# driver program needs to select the library directory based on the
1169# switches.
e5e809f4
JL
1170multilib.h: s-mlib; @true
1171s-mlib: $(srcdir)/genmultilib Makefile
961b7009
MM
1172 $(SHELL) $(srcdir)/genmultilib \
1173 "$(MULTILIB_OPTIONS)" \
1174 "$(MULTILIB_DIRNAMES)" \
1175 "$(MULTILIB_MATCHES)" \
1176 "$(MULTILIB_EXCEPTIONS)" \
1177 "$(MULTILIB_EXTRA_OPTS)" > tmp-mlib.h
84c81320 1178 $(SHELL) $(srcdir)/move-if-change tmp-mlib.h multilib.h
e5e809f4 1179 touch s-mlib
f6cdc7ea
DE
1180
1181# Build multiple copies of libgcc.a, one for each target switch.
1182stmp-multilib: $(LIBGCC1) libgcc2.c libgcc2.ready $(CONFIG_H) \
0056a9b5 1183 frame.h \
1eb14644 1184 $(LIB2ADD) $(MACHMODE_H) longlong.h gbl-ctors.h config.status
f6cdc7ea
DE
1185 for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
1186 dir=`echo $$i | sed -e 's/;.*$$//'`; \
1187 flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
f6cdc7ea 1188 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
8f25d5cd
JW
1189 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1190 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1191 CC="$(CC)" CFLAGS="$(CFLAGS)" \
1192 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1193 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
71abb567 1194 LANGUAGES="$(LANGUAGES)" \
f6cdc7ea 1195 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
ad3a9224 1196 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS) $${flags}" \
47a22692 1197 MULTILIB_CFLAGS="$${flags}" \
ad3a9224
DE
1198 LIBGCC1="$(LIBGCC1)" LIBGCC2="$(LIBGCC2)" \
1199 dir="$${dir}" stmp-multilib-sub; \
bff3fc41 1200 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
f6cdc7ea
DE
1201 done
1202 touch stmp-multilib
1203
ad3a9224
DE
1204# Subroutine of stmp-multilib so make -n works.
1205stmp-multilib-sub:
47a22692
JM
1206 rm -f $(LIBGCC2)
1207 if [ -d $(dir) ]; then \
1208 cd $(dir); \
1209 rm -f libgcc.a $(EXTRA_MULTILIB_PARTS); \
88029ff8 1210 else true; \
47a22692 1211 fi
ad3a9224 1212 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
8f25d5cd
JW
1213 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1214 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1215 CC="$(CC)" CFLAGS="$(CFLAGS)" \
ad3a9224 1216 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
71abb567 1217 LANGUAGES="$(LANGUAGES)" \
ad3a9224
DE
1218 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC2)
1219 if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1220 then true; \
1221 else rm -f $(LIBGCC1); \
1222 fi
1223 if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1224 then true; \
1225 else \
1226 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
8f25d5cd
JW
1227 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1228 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1229 CC="$(CC)" CFLAGS="$(CFLAGS)" \
ad3a9224 1230 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
71abb567 1231 LANGUAGES="$(LANGUAGES)" \
ad3a9224
DE
1232 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC1); \
1233 fi
1234 rm -rf tmplibgcc.a tmpcopy
1235 mkdir tmpcopy
1236 if [ x$(LIBGCC1) != x ]; \
8f25d5cd 1237 then (cd tmpcopy; $(AR_FOR_TARGET) x ../$(LIBGCC1)); \
ad3a9224
DE
1238 else true; \
1239 fi
50908fad
KG
1240# Some versions of ar (specifically the one in RISC/os 5.x), create an
1241# unwritable table of contents file, and then print an error message when
1242# the second ar command tries to overwrite this file. To avoid the error
1243# message from ar, we make sure all files are writable.
1244 -(cd tmpcopy; chmod +w * > /dev/null 2>&1)
8f25d5cd
JW
1245 (cd tmpcopy; $(AR_FOR_TARGET) x ../$(LIBGCC2))
1246 (cd tmpcopy; $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) ../tmplibgcc.a *$(objext))
ad3a9224 1247 rm -rf libgcc2.a tmpcopy
8f25d5cd
JW
1248 if $(RANLIB_TEST_FOR_TARGET) ; then \
1249 $(RANLIB_FOR_TARGET) tmplibgcc.a; \
1250 else true; fi
ad3a9224
DE
1251 if [ -d $(dir) ]; then true; else mkdir $(dir); fi
1252 mv tmplibgcc.a $(dir)/libgcc.a
47a22692
JM
1253 for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
1254 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
8f25d5cd
JW
1255 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
1256 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
1257 CC="$(CC)" CFLAGS="$(CFLAGS)" \
47a22692 1258 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1c4c5851 1259 LANGUAGES="$(LANGUAGES)" \
47a22692
JM
1260 MULTILIB_CFLAGS="$(MULTILIB_CFLAGS)" T="t" t$${f}; \
1261 mv t$${f} $(dir)/$${f}; \
88029ff8 1262 else true; \
47a22692 1263 fi; done
ad3a9224 1264
79d8453e 1265# Compile two additional files that are linked with every program
32988c4a
RM
1266# linked using GCC on systems using COFF or ELF, for the sake of C++
1267# constructors.
956d6950 1268$(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
a50fbd96 1269 defaults.h frame.h gbl-ctors.h stmp-int-hdrs
a94dbf2c 1270 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
ac1c999f
JL
1271 -finhibit-size-directive -fno-inline-functions \
1272 -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
a94dbf2c 1273 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o $(T)crtbegin$(objext)
47a22692 1274
956d6950 1275$(T)crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
a50fbd96 1276 defaults.h frame.h gbl-ctors.h stmp-int-hdrs
a94dbf2c 1277 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
ac1c999f
JL
1278 -finhibit-size-directive -fno-inline-functions \
1279 -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
a94dbf2c 1280 -c $(srcdir)/crtstuff.c -DCRT_END -o $(T)crtend$(objext)
32988c4a
RM
1281
1282# On some systems we also want to install versions of these files
1283# compiled using PIC for use in shared libraries.
e5e809f4 1284crtbeginS.o crtendS.o: s-crtS ; @true
32988c4a 1285
e5e809f4 1286s-crtS: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
a50fbd96 1287 defaults.h frame.h gbl-ctors.h stmp-int-hdrs
38b3fa08 1288 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
ac1c999f
JL
1289 -DCRT_BEGIN -DCRTSTUFFS_O -finhibit-size-directive \
1290 -fno-inline-functions -fno-exceptions @inhibit_libc@ -g0 \
1291 -c $(srcdir)/crtstuff.c
32988c4a 1292 mv crtstuff$(objext) crtbeginS$(objext)
38b3fa08 1293 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
ac1c999f
JL
1294 -DCRT_END -DCRTSTUFFS_O -finhibit-size-directive \
1295 -fno-inline-functions -fno-exceptions @inhibit_libc@ -g0 \
1296 -c $(srcdir)/crtstuff.c -o crtendS$(objext)
e5e809f4 1297 touch s-crtS
522170ca
RK
1298
1299# Compile the start modules crt0.o and mcrt0.o that are linked with every program
e5e809f4
JL
1300crt0.o: s-crt0 ; @true
1301mcrt0.o: s-crt0; @true
522170ca 1302
e5e809f4 1303s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
522170ca
RK
1304 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1305 -o crt0.o -c $(CRT0_S)
1306 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1307 -o mcrt0.o -c $(MCRT0_S)
e5e809f4 1308 touch s-crt0
544eb21e 1309#\f
79d8453e
RS
1310# Compiling object files from source files.
1311
1312# Note that dependencies on obstack.h are not written
1313# because that file is not part of GCC.
79d8453e
RS
1314
1315# C language specific files.
1316
1526a060 1317c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h ggc.h \
7f4edbcb 1318 $(srcdir)/c-parse.h c-tree.h c-common.h input.h flags.h system.h toplev.h
79d8453e 1319 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
a1fa1e22
DE
1320$(srcdir)/c-parse.h: $(srcdir)/c-parse.c
1321$(srcdir)/c-parse.c: $(srcdir)/c-parse.y
40e4e3fd 1322 cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y
3ff34537 1323$(srcdir)/c-parse.y: c-parse.in
49381011 1324 echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1c48d17e
RS
1325 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1326 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
49381011 1327 $(srcdir)/c-parse.in >>tmp-c-parse.y
84c81320 1328 $(SHELL) $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
1c48d17e 1329
3ff34537 1330$(srcdir)/c-gperf.h: c-parse.gperf
0728688f 1331 gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
98cc5050
BK
1332 -k1,3,$$ $(srcdir)/c-parse.gperf >tmp-gperf.h || ( \
1333 echo "Please update your 'gperf' from the GCC infrastructure" >&2 ; \
1334 echo " ftp://sourceware.cygnus.com/pub/egcs/infrastructure/gperf*" >&2 ; \
1335 exit 1 )
84c81320 1336 $(SHELL) $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h
f137e7dc 1337
1526a060 1338c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h ggc.h \
49ad7cfa 1339 c-lex.h flags.h function.h output.h toplev.h defaults.h
7f4edbcb
BS
1340c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \
1341 flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h
1526a060 1342c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h ggc.h \
e2ecd91c 1343 c-lex.h toplev.h output.h function.h
670ee920 1344c-lex.o : c-lex.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-lex.h c-tree.h \
7f4edbcb 1345 c-common.h $(srcdir)/c-parse.h $(srcdir)/c-gperf.h c-pragma.h input.h \
1526a060 1346 intl.h flags.h toplev.h output.h mbchar.h ggc.h
7f4edbcb
BS
1347c-aux-info.o : c-aux-info.c $(CONFIG_H) system.h $(TREE_H) c-tree.h \
1348 c-common.h flags.h toplev.h
a0c8e1b2 1349c-convert.o : c-convert.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h
b384405b 1350c-pragma.o: c-pragma.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) function.h \
da9da134 1351 defaults.h c-pragma.h toplev.h ggc.h
670ee920 1352c-iterate.o: c-iterate.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \
7f4edbcb 1353 c-common.h flags.h toplev.h $(EXPR_H)
0056a9b5 1354mbchar.o: mbchar.c $(CONFIG_H) system.h mbchar.h
0c3a267b 1355graph.o: graph.c $(CONFIG_H) system.h toplev.h flags.h output.h $(RTL_H) \
6a2cc2ac 1356 function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h
5f6c11d6 1357sbitmap.o: sbitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H)
79d8453e 1358
4c457b6b 1359COLLECT2_OBJS = collect2.o tlink.o hash.o intl.o underscore.o version.o
a2d25763 1360collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
057f494b 1361# Don't try modifying collect2 (aka ld) in place--it might be linking this.
aab26e16 1362 -rm -f collect2$(exeext)
ab87f8c8 1363 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(COLLECT2_OBJS) $(LIBS)
79d8453e 1364
ab87f8c8 1365collect2.o : collect2.c $(CONFIG_H) system.h gstab.h intl.h \
2edfd4ee 1366 $(srcdir)/../include/obstack.h $(DEMANGLE_H) collect2.h
b7b08dcd 1367 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
8b06b20a 1368 -DTARGET_MACHINE=\"$(target_alias)\" $(MAYBE_USE_COLLECT2) \
b7b08dcd 1369 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
79d8453e 1370
d4058195 1371tlink.o: tlink.c $(DEMANGLE_H) hash.h $(CONFIG_H) system.h collect2.h
a0c8e1b2 1372hash.o: hash.c hash.h system.h toplev.h
eaa41c8d 1373
0056a9b5 1374vfprintf.o: $(srcdir)/../libiberty/vfprintf.c $(CONFIG_H) system.h
39802f41
JL
1375 rm -f vfprintf.c
1376 $(LN_S) $(srcdir)/../libiberty/vfprintf.c vfprintf.c
1377 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) vfprintf.c
1378
3932261a 1379splay-tree.o: $(srcdir)/../libiberty/splay-tree.c \
0056a9b5 1380 $(srcdir)/../include/splay-tree.h $(srcdir)/../include/libiberty.h
3932261a
MM
1381 rm -f splay-tree.c
1382 $(LN_S) $(srcdir)/../libiberty/splay-tree.c splay-tree.c
1383 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) splay-tree.c
1384
e5e809f4 1385underscore.c: s-under ; @true
7af4e697 1386
e5e809f4 1387s-under: $(GCC_PASSES)
7ac16ba0
RK
1388 echo "int xxy_us_dummy;" >tmp-dum.c
1389 $(GCC_FOR_TARGET) -S tmp-dum.c
1390 echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c
1391 if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
1392 echo "int prepends_underscore = 1;" >>tmp-under.c; \
a3184468 1393 else \
7ac16ba0 1394 echo "int prepends_underscore = 0;" >>tmp-under.c; \
a3184468 1395 fi
84c81320 1396 $(SHELL) $(srcdir)/move-if-change tmp-under.c underscore.c
7ac16ba0 1397 -rm -f tmp-dum.c tmp-dum.s
e5e809f4 1398 touch s-under
a3184468 1399
79d8453e
RS
1400# A file used by all variants of C.
1401
a0c8e1b2 1402c-common.o : c-common.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h \
1526a060 1403 c-common.h flags.h toplev.h output.h c-pragma.h $(RTL_H) ggc.h
79d8453e
RS
1404
1405# Language-independent files.
1406
610c62ac 1407DRIVER_DEFINES = \
0deb20df 1408 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
2e494f70 1409 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
964ceda1 1410 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
8b06b20a 1411 -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
0deb20df
TT
1412 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
1413 -DTOOLDIR_BASE_PREFIX=\"$(unlibsubdir)/../\"
ab87f8c8 1414gcc.o: gcc.c $(CONFIG_H) system.h intl.h multilib.h \
9257393c 1415 Makefile $(lang_specs_files) prefix.h gcc.h
610c62ac
BK
1416 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1417 $(DRIVER_DEFINES) \
79d8453e
RS
1418 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
1419
9257393c
KG
1420gccspec.o: gccspec.c $(CONFIG_H) system.h gcc.h
1421cppspec.o: cppspec.c $(CONFIG_H) system.h gcc.h
08dc830e 1422
12b195d9 1423tree-check.h: s-check ; @true
b00c2351 1424s-check : gencheck $(srcdir)/move-if-change
12b195d9 1425 ./gencheck > tmp-check.h
84c81320 1426 $(SHELL) $(srcdir)/move-if-change tmp-check.h tree-check.h
12b195d9
ML
1427 touch s-check
1428
87d35858 1429gencheck : gencheck.o $(HOST_LIBDEPS)
12b195d9
ML
1430 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1431 gencheck.o $(HOST_LIBS)
1432
87d35858
MM
1433gencheck.o : gencheck.c gencheck.h tree.def $(CONFIG_H) hconfig.h system.h \
1434 $(lang_tree_files)
ab87f8c8
JL
1435 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1436 $(srcdir)/gencheck.c
1a4bf22f 1437
79d8453e
RS
1438dumpvers: dumpvers.c
1439
1440version.o: version.c
0a25f1f5 1441
d336e504 1442ggc-common.o: ggc-common.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
b49a6a90
AS
1443 flags.h ggc.h varray.h hash.h
1444
d336e504 1445ggc-simple.o: ggc-simple.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
7e28988a 1446 ggc.h varray.h
0a25f1f5 1447
d336e504 1448ggc-page.o: ggc-page.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
7e28988a 1449 ggc.h varray.h
21341cfd 1450
a13c82d4 1451ggc-none.o: ggc-none.c $(CONFIG_H) $(RTL_H) ggc.h
0a25f1f5 1452
a13c82d4 1453ggc-callbacks.o: ggc-callbacks.c $(CONFIG_H) $(RTL_H) $(TREE_H) ggc.h
03705c95 1454
2bdfeefa
JL
1455obstack.o: $(srcdir)/../libiberty/obstack.c $(CONFIG_H)
1456 rm -f obstack.c
1457 $(LN_S) $(srcdir)/../libiberty/obstack.c obstack.c
1458 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) obstack.c
1459
460ee112 1460prefix.o: prefix.c $(CONFIG_H) system.h Makefile prefix.h
e9a25f70
JL
1461 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1462 -DPREFIX=\"$(prefix)\" \
1463 -c `echo $(srcdir)/prefix.c | sed 's,^\./,,'`
79d8453e 1464
c5c76735 1465convert.o: convert.c $(CONFIG_H) system.h $(TREE_H) flags.h convert.h toplev.h
c5d3565c 1466
87ff9c8e
RH
1467tree.o : tree.c $(CONFIG_H) system.h $(TREE_H) flags.h function.h toplev.h \
1468 ggc.h
a3770a81 1469print-tree.o : print-tree.c $(CONFIG_H) system.h $(TREE_H) ggc.h
234042f4 1470stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \
d7db6646 1471 function.h $(EXPR_H) $(RTL_H) toplev.h ggc.h
efe3eb65 1472fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h \
a3770a81 1473 $(RTL_H) ggc.h
6ed551b4 1474diagnostic.o : $(CONFIG_H) system.h $(TREE_H) $(RTL_H) tm_p.h flags.h \
671d2ac6 1475 input.h insn-attr.h insn-codes.h insn-config.h toplev.h intl.h
49ad7cfa 1476toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \
c40d5de4 1477 flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \
ab87f8c8 1478 insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \
272df862 1479 dwarf2out.h sdbout.h dbxout.h $(EXPR_H) $(BASIC_BLOCK_H) graph.h loop.h \
d0af450d 1480 except.h regs.h $(lang_options_files)
9c6e68c2 1481 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \
8b06b20a 1482 -DTARGET_NAME=\"$(target_alias)\" \
b7ac21e3 1483 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
79d8453e 1484
03645a0b 1485rtl.o : rtl.c $(CONFIG_H) system.h $(RTL_H) bitmap.h ggc.h toplev.h
79d8453e 1486
294ffb37 1487print-rtl.o : print-rtl.c $(CONFIG_H) system.h $(RTL_H) $(BASIC_BLOCK_H)
670ee920 1488rtlanal.o : rtlanal.c $(CONFIG_H) system.h $(RTL_H)
f8b6598e 1489errors.o : errors.c $(CONFIG_H) system.h errors.h
79d8453e 1490
670ee920 1491varasm.o : varasm.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h \
6feacd09 1492 function.h defaults.h $(EXPR_H) hard-reg-set.h $(REGS_H) \
87ff9c8e 1493 xcoffout.h output.h c-pragma.h toplev.h dbxout.h sdbout.h ggc.h
670ee920 1494function.o : function.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
6feacd09 1495 function.h insn-flags.h insn-codes.h $(EXPR_H) $(REGS_H) hard-reg-set.h \
87ff9c8e 1496 insn-config.h $(RECOG_H) output.h toplev.h except.h hash.h ggc.h
670ee920 1497stmt.o : stmt.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
50793ea3 1498 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h $(EXPR_H) except.h \
4dc9341c 1499 $(LOOP_H) $(RECOG_H) toplev.h output.h varray.h ggc.h
670ee920 1500except.o : except.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
6feacd09 1501 function.h insn-flags.h $(EXPR_H) $(REGS_H) hard-reg-set.h \
87ff9c8e 1502 insn-config.h $(RECOG_H) output.h except.h toplev.h intl.h ggc.h
670ee920 1503expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
01198c2f 1504 $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h $(RECOG_H) \
d7db6646
RH
1505 output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h \
1506 ggc.h
28f4ec01
BS
1507builtins.o : builtins.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1508 function.h $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h \
1509 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1510 except.h
50793ea3 1511calls.o : calls.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h $(EXPR_H) \
74a7ea12 1512 insn-flags.h $(REGS_H) toplev.h output.h function.h
670ee920 1513expmed.o : expmed.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
01198c2f 1514 insn-flags.h insn-config.h insn-codes.h $(EXPR_H) $(RECOG_H) real.h toplev.h
670ee920 1515explow.o : explow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
01198c2f 1516 hard-reg-set.h insn-config.h $(EXPR_H) $(RECOG_H) insn-flags.h \
11a6092b 1517 insn-codes.h toplev.h function.h
670ee920 1518optabs.o : optabs.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
01198c2f 1519 insn-flags.h insn-config.h insn-codes.h $(EXPR_H) $(RECOG_H) reload.h \
7bdb32b9 1520 toplev.h ggc.h real.h
6feacd09 1521dbxout.o : dbxout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h $(REGS_H) \
487a6e06 1522 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h dbxout.h \
951a525f 1523 toplev.h gcc.h
670ee920 1524sdbout.o : sdbout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h except.h \
6feacd09 1525 function.h $(EXPR_H) output.h hard-reg-set.h $(REGS_H) defaults.h real.h \
2bdfeefa
JL
1526 insn-config.h $(srcdir)/../include/obstack.h xcoffout.h c-pragma.h \
1527 sdbout.h toplev.h
670ee920 1528dwarfout.o : dwarfout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf.h \
c478efd1 1529 flags.h insn-config.h reload.h output.h defaults.h toplev.h dwarfout.h
670ee920 1530dwarf2out.o : dwarf2out.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf2.h \
50793ea3 1531 flags.h insn-config.h reload.h output.h defaults.h \
951a525f 1532 hard-reg-set.h $(REGS_H) $(EXPR_H) toplev.h dwarf2out.h dyn-string.h \
c478efd1 1533 ggc.h except.h
670ee920 1534xcoffout.o : xcoffout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) xcoffout.h \
951a525f 1535 flags.h toplev.h output.h dbxout.h ggc.h
670ee920 1536emit-rtl.o : emit-rtl.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
87ff9c8e 1537 function.h $(REGS_H) insn-config.h $(RECOG_H) real.h ggc.h \
01198c2f 1538 $(EXPR_H) $(srcdir)/../include/obstack.h hard-reg-set.h bitmap.h toplev.h
a0c8e1b2 1539real.o : real.c $(CONFIG_H) system.h $(TREE_H) toplev.h
670ee920 1540integrate.o : integrate.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
a6873608 1541 $(INTEGRATE_H) insn-flags.h insn-config.h $(EXPR_H) real.h $(REGS_H) \
4dc9341c 1542 intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H)
6feacd09 1543jump.o : jump.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h $(REGS_H) \
49ad7cfa 1544 insn-config.h insn-flags.h $(RECOG_H) $(EXPR_H) real.h except.h function.h \
0c63f729 1545 toplev.h insn-attr.h
6feacd09 1546stupid.o : stupid.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h \
49ad7cfa 1547 $(BASIC_BLOCK_H) insn-config.h reload.h flags.h function.h toplev.h
79d8453e 1548
0cedb36c
JL
1549simplify-rtx.o : simplify-rtx.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) \
1550 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
1551 output.h function.h
6feacd09 1552cse.o : cse.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
7e28988a 1553 real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h output.h function.h ggc.h
01198c2f
ZW
1554gcse.o : gcse.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h \
1555 flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) \
49ad7cfa 1556 function.h output.h toplev.h
1841f23b 1557resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h system.h \
7bdb32b9
KG
1558 $(BASIC_BLOCK_H) $(REGS_H) flags.h output.h resource.h function.h toplev.h \
1559 insn-attr.h
d2ecda27
JL
1560lcm.o : lcm.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
1561 real.h insn-config.h $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H)
670ee920 1562profile.o : profile.c $(CONFIG_H) system.h $(RTL_H) flags.h insn-flags.h \
d7db6646
RH
1563 gcov-io.h $(TREE_H) output.h $(REGS_H) toplev.h function.h insn-config.h \
1564 ggc.h
4dc9341c 1565loop.o : loop.c $(CONFIG_H) system.h $(RTL_H) flags.h $(LOOP_H) insn-config.h \
6feacd09 1566 insn-flags.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) real.h \
c29f60c0 1567 $(BASIC_BLOCK_H) function.h toplev.h varray.h except.h
49ad7cfa 1568unroll.o : unroll.c $(CONFIG_H) system.h $(RTL_H) insn-config.h function.h \
a6873608
MM
1569 $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
1570 varray.h
d3a923ee 1571flow.o : flow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h insn-config.h \
43849fa9 1572 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
fc99263b 1573 insn-flags.h function.h except.h
49ad7cfa 1574combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h function.h \
6feacd09 1575 insn-config.h insn-flags.h insn-codes.h insn-attr.h $(REGS_H) $(EXPR_H) \
2e107e9e 1576 $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h
670ee920 1577regclass.o : regclass.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h flags.h \
49ad7cfa 1578 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h real.h \
8b0212ca 1579 toplev.h function.h output.h ggc.h
670ee920 1580local-alloc.o : local-alloc.c $(CONFIG_H) system.h $(RTL_H) flags.h \
49ad7cfa
BS
1581 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
1582 output.h function.h insn-attr.h toplev.h
670ee920 1583bitmap.o : bitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) \
6feacd09 1584 $(REGS_H)
49ad7cfa 1585global.o : global.c $(CONFIG_H) system.h $(RTL_H) flags.h reload.h function.h \
6feacd09
MM
1586 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h toplev.h
1587varray.o : varray.c $(CONFIG_H) system.h varray.h $(RTL_H) $(TREE_H) bitmap.h
50793ea3 1588reload.o : reload.c $(CONFIG_H) system.h $(RTL_H) flags.h output.h $(EXPR_H) \
6feacd09 1589 reload.h $(RECOG_H) hard-reg-set.h insn-config.h insn-codes.h $(REGS_H) \
49ad7cfa 1590 function.h real.h toplev.h
50793ea3 1591reload1.o : reload1.c $(CONFIG_H) system.h $(RTL_H) real.h flags.h $(EXPR_H) \
6feacd09 1592 reload.h $(REGS_H) hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
49ad7cfa 1593 $(BASIC_BLOCK_H) $(RECOG_H) output.h function.h toplev.h
670ee920 1594caller-save.o : caller-save.c $(CONFIG_H) system.h $(RTL_H) flags.h \
49ad7cfa 1595 $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \
50793ea3 1596 $(RECOG_H) reload.h $(EXPR_H) toplev.h
670ee920 1597reorg.o : reorg.c $(CONFIG_H) system.h $(RTL_H) conditions.h hard-reg-set.h \
01198c2f 1598 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h insn-attr.h insn-flags.h \
49ad7cfa 1599 $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h
52fe52e2 1600alias.o : alias.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h \
74a7ea12 1601 $(REGS_H) toplev.h output.h $(EXPR_H) insn-flags.h ggc.h function.h
670ee920 1602regmove.o : regmove.c $(CONFIG_H) system.h $(RTL_H) insn-config.h \
49ad7cfa 1603 $(RECOG_H) output.h reload.h $(REGS_H) hard-reg-set.h flags.h function.h \
50793ea3 1604 $(EXPR_H) insn-flags.h $(BASIC_BLOCK_H) toplev.h
7b5efe21 1605haifa-sched.o : haifa-sched.c $(CONFIG_H) system.h $(RTL_H) \
49ad7cfa 1606 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
43849fa9 1607 insn-attr.h toplev.h $(RECOG_H) except.h
ab87f8c8 1608final.o : final.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h intl.h \
49ad7cfa
BS
1609 $(REGS_H) $(RECOG_H) conditions.h insn-config.h insn-attr.h function.h \
1610 real.h output.h hard-reg-set.h insn-flags.h insn-codes.h gstab.h except.h \
1611 xcoffout.h defaults.h toplev.h reload.h dwarfout.h dwarf2out.h sdbout.h \
1612 dbxout.h
294ffb37 1613recog.o : recog.c $(CONFIG_H) system.h $(RTL_H) function.h $(BASIC_BLOCK_H) \
6feacd09 1614 $(REGS_H) $(RECOG_H) hard-reg-set.h flags.h insn-config.h insn-attr.h \
294ffb37 1615 insn-flags.h insn-codes.h real.h toplev.h output.h resource.h
43849fa9 1616reg-stack.o : reg-stack.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) $(RECOG_H) \
49ad7cfa 1617 $(REGS_H) hard-reg-set.h flags.h insn-config.h insn-flags.h toplev.h \
ede7cd44 1618 varray.h function.h
0056a9b5 1619dyn-string.o: dyn-string.c dyn-string.h $(CONFIG_H) system.h
7cf3d8b4 1620lists.o: lists.c $(CONFIG_H) system.h toplev.h $(RTL_H) ggc.h
dcfedcd0 1621
1526a060 1622$(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) ggc.h \
6feacd09 1623 $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \
49ad7cfa 1624 insn-flags.h output.h insn-attr.h insn-codes.h system.h toplev.h function.h
9c6e68c2 1625 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(out_file)
79d8453e 1626
4e0db2ce
RK
1627# Build auxiliary files that support ecoff format.
1628mips-tfile: mips-tfile.o version.o $(LIBDEPS)
aab26e16 1629 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
4e0db2ce 1630
1eb14644 1631mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) system.h
4e0db2ce
RK
1632
1633mips-tdump: mips-tdump.o version.o $(LIBDEPS)
aab26e16 1634 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
4e0db2ce 1635
90fbb8c9 1636mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) system.h
4e0db2ce 1637
579d0ecf 1638# Build file to support OSF/rose half-pic format.
b04cd507 1639halfpic.o: halfpic.c $(CONFIG_H) $(RTL_H) $(TREE_H) system.h
579d0ecf 1640
79d8453e
RS
1641# Normally this target is not used; but it is used if you
1642# define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
1643# from the GNU Emacs distribution.
39802f41
JL
1644alloca.o: $(srcdir)/../libiberty/alloca.c
1645 rm -f alloca.c
1646 $(LN_S) $(srcdir)/../libiberty/alloca.c alloca.c
79d8453e 1647 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
39802f41 1648 -c `echo alloca.c | sed 's,^\./,,'`
79d8453e 1649 $(ALLOCA_FINISH)
544eb21e 1650#\f
4c457b6b 1651# Generate header and source files from the machine description,
79d8453e
RS
1652# and compile them.
1653
1654.PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
1655 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1656 insn-attr.h insn-attrtab.c
1657
1658# The following pair of rules has this effect:
1659# genconfig is run only if the md has changed since genconfig was last run;
1660# but the file insn-config.h is touched only when its contents actually change.
1661
1662# Each of the other insn-* files is handled by a similar pair of rules.
1663
1402d22c 1664# This causes an anomaly in the results of make -n
e5e809f4 1665# because insn-* is older than s-*
1402d22c
RS
1666# and thus make -n thinks that insn-* will be updated
1667# and force recompilation of things that depend on it.
424aa086 1668# We use move-if-change precisely to avoid such recompilation.
1402d22c
RS
1669# But there is no way to teach make -n that it will be avoided.
1670
79d8453e
RS
1671# Each of the insn-*.[ch] rules has a semicolon at the end,
1672# for otherwise the system Make on SunOS 4.1 never tries
7bd95cc1
BK
1673# to recompile insn-*.o. To avoid problems and extra noise from
1674# versions of make which don't like empty commands (nothing after the
1675# trailing `;'), we call true for each.
79d8453e 1676
e5e809f4
JL
1677insn-config.h: s-config ; @true
1678s-config : $(md_file) genconfig $(srcdir)/move-if-change
7ac16ba0 1679 ./genconfig $(md_file) > tmp-config.h
84c81320 1680 $(SHELL) $(srcdir)/move-if-change tmp-config.h insn-config.h
e5e809f4 1681 touch s-config
79d8453e 1682
e5e809f4
JL
1683insn-flags.h: s-flags ; @true
1684s-flags : $(md_file) genflags $(srcdir)/move-if-change
7ac16ba0 1685 ./genflags $(md_file) > tmp-flags.h
84c81320 1686 $(SHELL) $(srcdir)/move-if-change tmp-flags.h insn-flags.h
e5e809f4 1687 touch s-flags
79d8453e 1688
e5e809f4
JL
1689insn-codes.h: s-codes ; @true
1690s-codes : $(md_file) gencodes $(srcdir)/move-if-change
7ac16ba0 1691 ./gencodes $(md_file) > tmp-codes.h
84c81320 1692 $(SHELL) $(srcdir)/move-if-change tmp-codes.h insn-codes.h
e5e809f4 1693 touch s-codes
79d8453e 1694
50793ea3 1695insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) $(EXPR_H) real.h output.h \
43849fa9
HPN
1696 insn-config.h insn-flags.h insn-codes.h system.h reload.h $(RECOG_H) \
1697 function.h flags.h hard-reg-set.h resource.h
79d8453e
RS
1698 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1699
e5e809f4
JL
1700insn-emit.c: s-emit ; @true
1701s-emit : $(md_file) genemit $(srcdir)/move-if-change
7ac16ba0 1702 ./genemit $(md_file) > tmp-emit.c
84c81320 1703 $(SHELL) $(srcdir)/move-if-change tmp-emit.c insn-emit.c
e5e809f4 1704 touch s-emit
79d8453e 1705
956d6950 1706insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \
b1afd7f4 1707 real.h output.h flags.h system.h function.h hard-reg-set.h resource.h
79d8453e
RS
1708 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1709
e5e809f4
JL
1710insn-recog.c: s-recog ; @true
1711s-recog : $(md_file) genrecog $(srcdir)/move-if-change
7ac16ba0 1712 ./genrecog $(md_file) > tmp-recog.c
84c81320 1713 $(SHELL) $(srcdir)/move-if-change tmp-recog.c insn-recog.c
e5e809f4 1714 touch s-recog
79d8453e 1715
118bdbf8 1716insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
50793ea3 1717 insn-config.h flags.h $(RECOG_H) $(EXPR_H) reload.h system.h
118bdbf8
RK
1718 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1719
e5e809f4
JL
1720insn-opinit.c: s-opinit ; @true
1721s-opinit : $(md_file) genopinit $(srcdir)/move-if-change
7ac16ba0 1722 ./genopinit $(md_file) > tmp-opinit.c
84c81320 1723 $(SHELL) $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
e5e809f4 1724 touch s-opinit
118bdbf8 1725
0a578fee 1726insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) system.h toplev.h \
43849fa9 1727 insn-config.h $(RECOG_H)
79d8453e
RS
1728 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1729
e5e809f4
JL
1730insn-extract.c: s-extract ; @true
1731s-extract : $(md_file) genextract $(srcdir)/move-if-change
7ac16ba0 1732 ./genextract $(md_file) > tmp-extract.c
84c81320 1733 $(SHELL) $(srcdir)/move-if-change tmp-extract.c insn-extract.c
e5e809f4 1734 touch s-extract
79d8453e 1735
7f7f8214 1736insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) $(REGS_H) output.h real.h \
43849fa9 1737 system.h insn-config.h $(RECOG_H) except.h function.h
79d8453e
RS
1738 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1739
e5e809f4
JL
1740insn-peep.c: s-peep ; @true
1741s-peep : $(md_file) genpeep $(srcdir)/move-if-change
7ac16ba0 1742 ./genpeep $(md_file) > tmp-peep.c
84c81320 1743 $(SHELL) $(srcdir)/move-if-change tmp-peep.c insn-peep.c
e5e809f4 1744 touch s-peep
79d8453e 1745
114791ea 1746insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) $(REGS_H) real.h \
43849fa9 1747 output.h insn-attr.h insn-config.h system.h toplev.h $(RECOG_H)
79d8453e
RS
1748 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1749
e5e809f4
JL
1750insn-attr.h: s-attr ; @true
1751s-attr : $(md_file) genattr $(srcdir)/move-if-change
7ac16ba0 1752 ./genattr $(md_file) > tmp-attr.h
84c81320 1753 $(SHELL) $(srcdir)/move-if-change tmp-attr.h insn-attr.h
e5e809f4 1754 touch s-attr
79d8453e 1755
e5e809f4
JL
1756insn-attrtab.c: s-attrtab ; @true
1757s-attrtab : $(md_file) genattrtab $(srcdir)/move-if-change
5b4146bd 1758 ./genattrtab $(md_file) > tmp-attrtab.c
84c81320 1759 $(SHELL) $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
e5e809f4 1760 touch s-attrtab
79d8453e 1761
6feacd09 1762insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) $(REGS_H) real.h conditions.h \
956d6950 1763 hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h $(RECOG_H) \
43849fa9 1764 function.h insn-codes.h system.h toplev.h flags.h
79d8453e
RS
1765 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1766
e5e809f4
JL
1767insn-output.c: s-output ; @true
1768s-output : $(md_file) genoutput $(srcdir)/move-if-change
7ac16ba0 1769 ./genoutput $(md_file) > tmp-output.c
84c81320 1770 $(SHELL) $(srcdir)/move-if-change tmp-output.c insn-output.c
e5e809f4 1771 touch s-output
3b80f6ca 1772
005537df 1773genrtl.o : genrtl.c $(CONFIG_H) $(RTL_H) system.h ggc.h
e5e809f4 1774genrtl.c genrtl.h : s-genrtl
a3f80023
AS
1775 @true # force gnu make to recheck modification times.
1776
e5e809f4 1777s-genrtl: gengenrtl $(srcdir)/move-if-change $(RTL_BASE_H)
c5c76735 1778 ./gengenrtl -h >tmp-genrtl.h
84c81320 1779 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
c5c76735 1780 ./gengenrtl >tmp-genrtl.c
84c81320 1781 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
e5e809f4 1782 touch s-genrtl
544eb21e 1783#\f
79d8453e
RS
1784# Compile the programs that generate insn-* from the machine description.
1785# They are compiled with $(HOST_CC), and associated libraries,
1786# since they need to run on this machine
1787# even if GCC is being compiled to run on some other machine.
1788
1789# $(CONFIG_H) is omitted from the deps of the gen*.o
4c457b6b 1790# because these programs don't really depend on anything
79d8453e
RS
1791# about the target machine. They do depend on config.h itself,
1792# since that describes the host machine.
1793
c3efc7c4 1794# Pass the md file through cpp if the target requests it.
aa90345a
RK
1795$(MD_FILE): $(MD_DEPS)
1796 rm -f $@
7ac16ba0 1797 $(MD_CPP) $(MD_CPPFLAGS) $(md_file) | sed 's/^# /; /g' > tmp-$@
d521a023 1798 mv tmp-$@ $@
c3efc7c4 1799
f8b6598e 1800genconfig : genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1801 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1802 genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1803
f8b6598e 1804genconfig.o : genconfig.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1805 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1806
f8b6598e 1807genflags : genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1808 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1809 genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1810
f8b6598e 1811genflags.o : genflags.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1812 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1813
f8b6598e 1814gencodes : gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1815 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1816 gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1817
f8b6598e 1818gencodes.o : gencodes.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1819 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1820
f8b6598e 1821genemit : genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1822 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1823 genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1824
f8b6598e 1825genemit.o : genemit.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1826 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1827
f8b6598e 1828genopinit : genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1829 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1830 genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
118bdbf8 1831
f8b6598e 1832genopinit.o : genopinit.c $(RTL_H) $(build_xm_file) system.h errors.h
118bdbf8
RK
1833 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1834
f8b6598e 1835genrecog : genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1836 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1837 genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1838
f8b6598e 1839genrecog.o : genrecog.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1840 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1841
f8b6598e 1842genextract : genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1843 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1844 genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1845
f8b6598e 1846genextract.o : genextract.c $(RTL_H) $(build_xm_file) system.h insn-config.h errors.h
79d8453e
RS
1847 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1848
f8b6598e 1849genpeep : genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1850 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1851 genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1852
f8b6598e 1853genpeep.o : genpeep.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1854 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1855
f8b6598e 1856genattr : genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1857 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1858 genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1859
f8b6598e 1860genattr.o : genattr.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e
RS
1861 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1862
b5ee7789 1863genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1864 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
b5ee7789 1865 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1866
19af6455 1867genattrtab.o : genattrtab.c $(RTL_H) $(build_xm_file) system.h errors.h ggc.h
79d8453e
RS
1868 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1869
f8b6598e 1870genoutput : genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
aab26e16 1871 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
f8b6598e 1872 genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
79d8453e 1873
f8b6598e 1874genoutput.o : genoutput.c $(RTL_H) $(build_xm_file) system.h errors.h
79d8453e 1875 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
3b80f6ca
RH
1876
1877gengenrtl : gengenrtl.o $(HOST_LIBDEPS)
1878 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1879 gengenrtl.o $(HOST_LIBS)
1880
43849fa9 1881gengenrtl.o : gengenrtl.c $(RTL_BASE_H) system.h real.h
3b80f6ca 1882 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c
544eb21e 1883#\f
79d8453e
RS
1884# Compile the libraries to be used by gen*.
1885# If we are not cross-building, gen* use the same .o's that cc1 will use,
1886# and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1887# with the rules for rtl.o, alloca.o, etc.
ca76ec07
AO
1888$(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) system.h $(RTL_H) \
1889 bitmap.h ggc.h toplev.h
79d8453e 1890 rm -f $(HOST_PREFIX)rtl.c
057f494b 1891 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
79d8453e
RS
1892 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1893
294ffb37
AO
1894$(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) \
1895 $(RTL_H) $(BASIC_BLOCK_H) system.h
d3614a37 1896 rm -f $(HOST_PREFIX)print-rtl.c
057f494b 1897 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
d3614a37
RS
1898 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1899
0dfa1860 1900$(HOST_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(CONFIG_H) system.h $(RTL_H) \
6feacd09 1901 flags.h $(BASIC_BLOCK_H) $(REGS_H)
0dfa1860
MM
1902 rm -f $(HOST_PREFIX)bitmap.c
1903 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(HOST_PREFIX)bitmap.c
1904 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)bitmap.c
1905
ca76ec07 1906$(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) system.h $(RTL_H)
79d8453e 1907 rm -f $(HOST_PREFIX)rtlanal.c
057f494b 1908 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
79d8453e
RS
1909 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1910
39802f41 1911$(HOST_PREFIX_1)alloca.o: $(srcdir)/../libiberty/alloca.c
79d8453e 1912 rm -f $(HOST_PREFIX)alloca.c
39802f41 1913 $(LN_S) $(srcdir)/../libiberty/alloca.c $(HOST_PREFIX)alloca.c
79d8453e
RS
1914 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1915
ca76ec07 1916$(HOST_PREFIX_1)obstack.o: $(srcdir)/../libiberty/obstack.c $(CONFIG_H)
79d8453e 1917 rm -f $(HOST_PREFIX)obstack.c
2bdfeefa 1918 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/../libiberty/obstack.c > $(HOST_PREFIX)obstack.c
79d8453e
RS
1919 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1920
2a63377c 1921$(HOST_PREFIX_1)vfprintf.o: $(srcdir)/../libiberty/vfprintf.c
76b4b31e 1922 rm -f $(HOST_PREFIX)vfprintf.c
39802f41 1923 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/../libiberty/vfprintf.c > $(HOST_PREFIX)vfprintf.c
76b4b31e
KG
1924 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)vfprintf.c
1925
1926$(HOST_PREFIX_1)doprint.o: doprint.c
1927 rm -f $(HOST_PREFIX)doprint.c
1928 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/doprint.c > $(HOST_PREFIX)doprint.c
1929 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)doprint.c
1930
79d8453e
RS
1931$(HOST_PREFIX_1)malloc.o: malloc.c
1932 rm -f $(HOST_PREFIX)malloc.c
057f494b 1933 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
79d8453e
RS
1934 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1935
f8b6598e
ZW
1936$(HOST_PREFIX_1)errors.o: errors.c
1937 rm -f $(HOST_PREFIX)errors.c
1938 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/errors.c > $(HOST_PREFIX)errors.c
1939 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)errors.c
1940
1941
79d8453e
RS
1942# This satisfies the dependency that we get if you cross-compile a compiler
1943# that does not need to compile alloca, malloc or whatever.
4c457b6b 1944$(HOST_PREFIX_1):
79d8453e 1945 touch $(HOST_PREFIX_1)
ca695ac9 1946
d7160de9 1947$(HOST_PREFIX_1)ggc-none.o: ggc-none.c
13aa2d05
JL
1948 rm -f $(HOST_PREFIX)ggc-none.c
1949 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/ggc-none.c > $(HOST_PREFIX)ggc-none.c
1950 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)ggc-none.c
d7160de9 1951
ab87f8c8
JL
1952
1953#\f
1954# Remake internationalization support.
1955
1956intl.o: intl.c intl.h gansidecl.h Makefile
1957 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1958 -DLOCALEDIR=\"$(localedir)\" \
1959 -c `echo $(srcdir)/intl.c | sed 's,^\./,,'`
1960
1961# This is needed to when doing a partial build after a `make clean'.
1962# libintl.a does not depend on intl.all,
1963# as that would force a lot of recompiling.
1964$(top_builddir)/intl/libintl.a:
1965 @echo "$(MAKE) intl.all"
1966 @$(MAKE) $(FLAGS_TO_PASS) intl.all
1967
1968# Make sure all the headers are there for xgettext to scan.
a6374b58
AO
1969$(INTL_TARGETS): $(srcdir)/c-gperf.h \
1970 $(srcdir)/c-parse.c $(srcdir)/c-parse.h $(srcdir)/cexp.c
ab87f8c8
JL
1971
1972intl.all intl.install intl.uninstall intl.distdir \
1973 intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
1974 @for d in $(INTL_SUBDIRS); do \
1975 target=`expr $@ : 'intl.\(.*\)'` && \
1976 echo "(cd $$d && $(MAKE) $$target)" && \
1977 (cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
1978 done
1979
1980# intl.distdir doesn't copy the intl makefiles (since they aren't distributed),
1981# but we need them for the `make extraclean' in distdir-finish.
1982intl.distdir-fixup:
1983 for d in $(INTL_SUBDIRS); do \
1984 ln $$d/Makefile tmp/$$d || cp $$d/Makefile tmp/$$d || exit; \
1985 done
544eb21e 1986#\f
79d8453e
RS
1987# Remake cpp and protoize.
1988
1989# Making the preprocessor
e09e14e9 1990cpp$(exeext): $(CCCP)$(exeext)
173712fb 1991 -rm -f cpp$(exeext)
ac64120e 1992 $(LN) $(CCCP)$(exeext) cpp$(exeext)
4c457b6b 1993CCCP_OBJS = cccp.o cexp.o intl.o prefix.o version.o @extra_cpp_objs@ mbchar.o
ab87f8c8
JL
1994cccp$(exeext): $(CCCP_OBJS) $(LIBDEPS)
1995 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(CCCP_OBJS) $(LIBS)
c5c76735 1996cexp.o: $(srcdir)/cexp.c $(CONFIG_H) system.h mbchar.h
79d8453e
RS
1997 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1998$(srcdir)/cexp.c: $(srcdir)/cexp.y
1999 cd $(srcdir); $(BISON) -o cexp.c cexp.y
aab26e16 2000
d059a239
FF
2001PREPROCESSOR_DEFINES = \
2002 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
2003 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
2004 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
2005 -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \
2006 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\"
1f72bfca
JL
2007# We use $(libsubdir)/$(unlibsubdir) to match the
2008# -iprefix argument which gcc will pass if GCC_EXEC_PREFIX is used.
ab87f8c8
JL
2009cccp.o: cccp.c $(CONFIG_H) intl.h pcp.h version.c config.status system.h \
2010 mbchar.h prefix.h Makefile.in
79d8453e 2011 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
d059a239 2012 $(PREPROCESSOR_DEFINES) \
79d8453e
RS
2013 -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
2014
add7091b 2015LIBCPP_OBJS = cpplib.o cpphash.o cppalloc.o cpperror.o cppexp.o cppfiles.o \
5538ada6 2016 cppinit.o cppulp.o prefix.o version.o mbchar.o @extra_cpp_objs@
19283265 2017
f6c2a93c
JL
2018# All the other archives built/used by this makefile are for targets. This
2019# one is strictly for the host.
2020#
19283265 2021libcpp.a: $(LIBCPP_OBJS)
8f25d5cd
JW
2022 $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
2023 if $(RANLIB_TEST) ; then $(RANLIB) libcpp.a ; else true ; fi
19283265 2024
69b2ac84 2025cppmain$(exeext): cppmain.o intl.o libcpp.a $(LIBDEPS)
19283265 2026 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cppmain$(exeext) cppmain.o \
69b2ac84 2027 intl.o libcpp.a $(LIBS)
59949f60 2028
e915b770 2029cppmain.o: cppmain.c $(CONFIG_H) cpplib.h intl.h system.h
66334b64 2030
6de1e2a9 2031cppulp.o: cppulp.c $(CONFIG_H) system.h output.h
e915b770
KG
2032cpplib.o: cpplib.c $(CONFIG_H) cpplib.h intl.h system.h cpphash.h
2033cpphash.o: cpphash.c $(CONFIG_H) cpplib.h intl.h system.h cpphash.h
2034cppalloc.o: cppalloc.c $(CONFIG_H) cpplib.h intl.h system.h
2035cpperror.o: cpperror.c $(CONFIG_H) cpplib.h intl.h system.h
fc009f96 2036cppexp.o: cppexp.c $(CONFIG_H) cpplib.h intl.h system.h cpphash.h
e915b770
KG
2037cppfiles.o: cppfiles.c $(CONFIG_H) cpplib.h intl.h system.h
2038
9e934a98 2039cppinit.o: cppinit.c $(CONFIG_H) cpplib.h intl.h system.h \
6de1e2a9 2040 cpphash.h prefix.h output.h Makefile
59949f60 2041 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
d059a239 2042 $(PREPROCESSOR_DEFINES) \
6de1e2a9 2043 -c `echo $(srcdir)/cppinit.c | sed 's,^\./,,'`
5538ada6 2044
7bd95cc1
BK
2045# Note for the stamp targets, we run the program `true' instead of
2046# having an empty command (nothing following the semicolon).
2047
e09e14e9 2048proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
79d8453e 2049
4c457b6b 2050PROTO_OBJS = intl.o version.o
ab87f8c8
JL
2051
2052protoize$(exeext): protoize.o $(PROTO_OBJS) $(LIBDEPS)
2053 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ protoize.o $(PROTO_OBJS) $(LIBS)
2e0b13db 2054
ab87f8c8
JL
2055unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS)
2056 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ unprotoize.o $(PROTO_OBJS) $(LIBS)
2e0b13db 2057
196fb9ff
JL
2058protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) system.h \
2059 Makefile
79d8453e 2060 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
d059a239 2061 $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \
6c32c807
BH
2062 $(srcdir)/protoize.c
2063
196fb9ff
JL
2064unprotoize.o: unprotoize.c protoize.c $(srcdir)/../include/getopt.h \
2065 $(CONFIG_H) system.h Makefile
79d8453e 2066 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
d059a239 2067 $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \
6c32c807 2068 $(srcdir)/unprotoize.c
79d8453e 2069
79d8453e 2070# This info describes the target machine, so compile with GCC just built.
aab26e16
RK
2071SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
2072 stmp-int-hdrs
c21cf0a7 2073 -rm -f SYSCALLS.c tmp-SYSCALLS.s
47547081 2074 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
79d8453e 2075 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
c21cf0a7
RS
2076 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
2077 -rm -f SYSCALLS.c tmp-SYSCALLS.s
9c0022f6 2078
ac1284f9 2079
9c0022f6 2080test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
4803a34a 2081 -rm -f tmp-proto.[cso]
d3614a37
RS
2082 cp $(srcdir)/protoize.c tmp-proto.c
2083 chmod u+w tmp-proto.c
4803a34a 2084 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
d059a239 2085 $(GCC_CFLAGS) $(INCLUDES) \
9c0022f6
RS
2086 -DGCC_INCLUDE_DIR=0 \
2087 -DGPLUSPLUS_INCLUDE_DIR=0 \
2088 -DCROSS_INCLUDE_DIR=0 \
14b18068 2089 -DTOOL_INCLUDE_DIR=0 \
d059a239
FF
2090 -DSTANDARD_EXEC_PREFIX=0 \
2091 -DDEFAULT_TARGET_MACHINE=0 \
2092 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
e3e873d2 2093 @echo '**********' Expect 400 lines of differences.
4803a34a
RK
2094 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
2095 -wc -l tmp-proto.diff
2096 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
d059a239 2097 $(GCC_CFLAGS) $(INCLUDES) \
9c0022f6
RS
2098 -DGCC_INCLUDE_DIR=0 \
2099 -DGPLUSPLUS_INCLUDE_DIR=0 \
2100 -DCROSS_INCLUDE_DIR=0 \
14b18068 2101 -DTOOL_INCLUDE_DIR=0 \
d059a239
FF
2102 -DSTANDARD_EXEC_PREFIX=0 \
2103 -DDEFAULT_TARGET_MACHINE=0 \
2104 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
9c0022f6 2105 @echo Expect zero differences.
d3614a37 2106 diff $(srcdir)/protoize.c tmp-proto.c | cat
aab26e16 2107 -rm -f tmp-proto.[cs] tmp-proto$(objext)
59a64126 2108
ab87f8c8 2109gcov.o: gcov.c gcov-io.h intl.h system.h
59a64126 2110
2ea9a965
NC
2111# Only one of 'gcov' or 'gcov.exe' is actually built, depending
2112# upon whether $(exeext) is empty or not.
ab87f8c8
JL
2113GCOV_OBJS = gcov.o intl.o
2114gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
2115 $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
544eb21e 2116#\f
ba1811f1 2117# Build the include directory. The stamp files are stmp-* rather than
e5e809f4 2118# s-* so that mostlyclean does not force the include directory to
ba1811f1
ILT
2119# be rebuilt.
2120
e7f62ad3 2121# Build the include directory including float.h (which no longer depends upon
56f9206d 2122# enquire).
027ea2a7 2123stmp-int-hdrs: stmp-fixinc $(USER_H) xlimits.h
ba1811f1
ILT
2124# Copy in the headers provided with gcc.
2125# The sed command gets just the last file name component;
2126# this is necessary because VPATH could add a dirname.
2127# Using basename would be simpler, but some systems don't have it.
c85f7c16 2128# The touch command is here to workaround an AIX/Linux NFS bug.
d7371761
RK
2129 for file in .. $(USER_H); do \
2130 if [ X$$file != X.. ]; then \
2131 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
c85f7c16 2132 touch include/$$realfile; \
ae678a13
JW
2133 rm -f include/$$realfile; \
2134 cp $$file include; \
2135 chmod a+r include/$$realfile; \
d7371761 2136 fi; \
ba1811f1 2137 done
1f050b9b 2138 rm -f include/limits.h
ba1811f1
ILT
2139 cp xlimits.h include/limits.h
2140 chmod a+r include/limits.h
56f9206d 2141 rm -f include/float.h
027ea2a7
JW
2142 if [ x$(FLOAT_H) != xMakefile.in ]; then \
2143 cp $(srcdir)/config/$(FLOAT_H) include/float.h && \
e9a25f70
JL
2144 chmod a+r include/float.h; \
2145 else :; fi
e7f62ad3
MH
2146# Install the README
2147 rm -f include/README
2148 cp $(srcdir)/README-fixinc include/README
2149 chmod a+r include/README
2150 touch $@
2151
027ea2a7 2152# Now that float.h no longer depends upon enquire, this is actually a no-op.
e7f62ad3
MH
2153stmp-headers:
2154 touch $@
ba1811f1 2155
5d55e5cd
RL
2156FIXINCSRCDIR=$(srcdir)/fixinc
2157fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
f7d920fd
RL
2158 $(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
2159 $(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
4c457b6b 2160 $(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def
9f3d1bc2
BK
2161 MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc; pwd` ; \
2162 export MAKE srcdir ; \
2163 cd ./fixinc; $(SHELL) $${srcdir}/mkfixinc.sh $(target)
2164
2165##stmp-fixinc: $(FIXINCLUDES) gsyslimits.h
2166## rm -rf include
2167## mkdir include
2168## if [ x$(FIXINCLUDES) != xMakefile.in ]; \
2169## then \
2170## for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
2171## if [ -d $$dir ]; \
2172## then \
2173## $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \
2174## else true; fi; \
2175## done; \
2176## if [ x$(INSTALL_ASSERT_H) != x ] ; \
2177## then \
2178## rm -f include/assert.h; \
2179## cp $(srcdir)/assert.h include/assert.h; \
2180## chmod a+r include/assert.h; \
2181## fi \
2182## else true; \
2183## fi
4b104d6e 2184
ba1811f1 2185# Build fixed copies of system files.
9f3d1bc2
BK
2186stmp-fixinc: fixinc.sh gsyslimits.h
2187 rm -rf include; mkdir include
c5c76735 2188 -chmod a+rx include
9f3d1bc2 2189 TARGET_MACHINE=$(target); srcdir=`cd $(srcdir); pwd`; \
f853036b
BK
2190 INSTALL_ASSERT_H=$(INSTALL_ASSERT_H); SHELL=$(SHELL) ;\
2191 export TARGET_MACHINE srcdir INSTALL_ASSERT_H SHELL ; \
9f3d1bc2 2192 $(SHELL) ./fixinc.sh `pwd`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS)
3dc4a939
RK
2193 rm -f include/syslimits.h
2194 if [ -f include/limits.h ]; then \
2195 mv include/limits.h include/syslimits.h; \
2196 else \
2197 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
2198 fi
2199 chmod a+r include/syslimits.h
2d490c9e 2200# If $(SYSTEM_HEADER_DIR) is $(tooldir)/sys-include, and
1f72bfca 2201# that directory exists, then make sure that $(libsubdir) exists.
2d490c9e 2202# This is because cpp is compiled to find $(tooldir)/include via
1f72bfca
JL
2203# $(libsubdir)/$(unlibsubdir), which will only work if $(libsubdir)
2204# exists.
2d490c9e
JW
2205# We deliberately use tooldir instead of gcc_tooldir here. gcc_tooldir
2206# won't work because libsubdir doesn't exist yet.
2207 if [ "$(SYSTEM_HEADER_DIR)" = "$(tooldir)/sys-include" ] \
2208 && [ -d $(tooldir)/sys-include ]; then \
1f72bfca
JL
2209 if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi; \
2210 if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib; fi; \
2211 if [ -d $(libdir)/gcc-lib/$(target_alias) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias) ; fi; \
2212 if [ -d $(libdir)/gcc-lib/$(target_alias)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias)/$(version) ; fi; \
2213 else true; fi
49b6e255 2214 touch stmp-fixinc
469778e2 2215
ac1284f9
PB
2216# Files related to the fixproto script.
2217
74bb4fdf 2218deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
40859b41
JL
2219 if [ -d $(SYSTEM_HEADER_DIR) ]; \
2220 then \
2221 CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -Iinclude -I${SYSTEM_HEADER_DIR}"; \
ac1284f9 2222 export CC; \
40859b41
JL
2223 $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
2224 mv tmp-deduced.h deduced.h; \
2225 else \
2226 touch deduced.h; \
2227 fi
ac1284f9 2228
850350d1 2229GEN_PROTOS_OBJS = gen-protos.o scan.o libcpp.a
ab87f8c8 2230gen-protos: $(GEN_PROTOS_OBJS) $(HOST_LIBDEPS)
850350d1 2231 ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gen-protos \
ab87f8c8 2232 $(GEN_PROTOS_OBJS) $(HOST_LIBS)
ac1284f9 2233
43849fa9 2234gen-protos.o: gen-protos.c scan.h $(build_xm_file) system.h cpplib.h cpphash.h
c192da27
RK
2235 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c
2236
b04cd507 2237scan.o: scan.c scan.h $(build_xm_file) system.h
c192da27 2238 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c
7b41f815 2239
74bb4fdf 2240xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
d521a023
RK
2241 cat deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
2242 mv tmp-fixtmp.c fixtmp.c
c061c5d7 2243 $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
c1b9947f 2244 | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
d521a023
RK
2245 | ./gen-protos >xsys-protos.hT
2246 mv xsys-protos.hT xsys-protos.h
d7a58f93 2247 rm -rf fixtmp.c
ac1284f9 2248
aab26e16 2249fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_LIBDEPS) \
19283265 2250 libcpp.a
aab26e16 2251 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ fix-header.o \
19283265 2252 scan-decls.o scan.o libcpp.a $(HOST_LIBS)
ac1284f9 2253
2bdfeefa 2254fix-header.o: fix-header.c $(srcdir)/../include/obstack.h scan.h \
e915b770 2255 xsys-protos.h $(build_xm_file) system.h cpplib.h cpphash.h
c192da27
RK
2256 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c
2257
e915b770 2258scan-decls.o: scan-decls.c scan.h cpplib.h $(build_xm_file) system.h
c192da27 2259 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c
ac1284f9 2260
74bb4fdf
RS
2261# stmp-fixproto depends on this, not on fix-header directly.
2262# The idea is to make sure fix-header gets built,
2263# but not rerun fixproto after each stage
2264# just because fix-header's mtime has changed.
2265fixhdr.ready: fix-header
2266 -if [ -f fixhdr.ready ] ; then \
2267 true; \
2268 else \
2269 touch fixhdr.ready; \
2270 fi
2271
ccaf7a07 2272# stmp-headers is to make sure fixincludes has already finished.
700ba19c
RS
2273# The if statement is so that we don't run fixproto a second time
2274# if it has already been run on the files in `include'.
c28464ad 2275stmp-fixproto: fixhdr.ready fixproto stmp-headers
db4e119f 2276 @echo "Various warnings and error messages from fixproto are normal"
c5c76735 2277 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
6e5bea54 2278 -if [ -f include/fixed ] ; then true; \
700ba19c 2279 else \
b1f99e2f 2280 : This line works around a 'make' bug in BSDI 1.1.; \
b3ca463c 2281 FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
bcf1ba1d
AO
2282 mkinstalldirs="$(SHELL) $(srcdir)/mkinstalldirs"; \
2283 export mkinstalldirs; \
aef1617c
JL
2284 if [ -d $(SYSTEM_HEADER_DIR) ] ; then \
2285 $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
2286 else true; fi; \
700ba19c
RS
2287 touch include/fixed; \
2288 fi
ac1284f9 2289 touch stmp-fixproto
544eb21e 2290#\f
79d8453e
RS
2291# Remake the info files.
2292
8dbda01e 2293doc: info
8be52aaa 2294info: cpp.info gcc.info lang.info
79d8453e 2295
8be52aaa 2296cpp.info: $(srcdir)/cpp.texi
c1879238 2297 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o cpp.info $(srcdir)/cpp.texi
79d8453e 2298
8be52aaa
JL
2299gcc.info: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2300 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2301 $(srcdir)/tm.texi $(srcdir)/gcov.texi
c1879238 2302 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o gcc.info $(srcdir)/gcc.texi
f780d21b 2303
8be52aaa 2304dvi: gcc.dvi cpp.dvi lang.dvi
8dbda01e 2305
dd08cdda 2306# This works with GNU Make's default rule.
8be52aaa
JL
2307gcc.dvi: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2308 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2309 $(srcdir)/tm.texi $(srcdir)/gcov.texi
2310 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2311 texindex gcc.??
2312 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2313
2314cpp.dvi: $(srcdir)/cpp.texi
2315 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2316 texindex cpp.??
2317 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2318
2319
2320INSTALL: $(srcdir)/install1.texi $(srcdir)/install.texi
b4ea9a9d 2321 cd $(srcdir); $(MAKEINFO) -D INSTALLONLY \
4c457b6b 2322 --no-split -o INSTALL install1.texi
544eb21e 2323#\f
79d8453e
RS
2324# Deletion of files made during compilation.
2325# There are four levels of this:
f1908d70 2326# `mostlyclean', `clean', `distclean' and `maintainer-clean'.
79d8453e 2327# `mostlyclean' is useful while working on a particular type of machine.
2e494f70 2328# It deletes most, but not all, of the files made by compilation.
79d8453e 2329# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
2e494f70 2330# `clean' deletes everything made by running `make all'.
47547081 2331# `distclean' also deletes the files made by config.
f1908d70 2332# `maintainer-clean' also deletes everything that could be regenerated
63d9b81c
RK
2333# automatically, except for `configure'.
2334# We remove as much from the language subdirectories as we can
013a2ee0 2335# (less duplicated code).
79d8453e 2336
2051eea1
NS
2337INTL_MOSTLYCLEAN = intl.mostlyclean
2338mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
79d8453e
RS
2339 -rm -f $(STAGESTUFF)
2340# Delete the temporary source copies for cross compilation.
2341 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
2342 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
4c457b6b 2343 -rm -f $(HOST_PREFIX_1)obstack.c
79d8453e 2344# Delete the temp files made in the course of building libgcc.a.
ee291069 2345 -rm -f tmplibgcc* tmpcopy xlimits.h libgcc1-test
79d8453e 2346 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
e5e809f4
JL
2347# Delete other built files.
2348 -rm -f t-float.h-cross xsys-protos.hT fp-bit.c dp-bit.c
2349# Delete the stamp and temporary files.
2350 -rm -f s-* tmp-* stamp-* stmp-*
013a2ee0 2351 -rm -f */stamp-* */tmp-*
2e494f70 2352# Delete debugging dump files.
79d8453e 2353 -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
7506f491 2354 -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack *.addressof
ede7cd44 2355 -rm -f *.regmove *.mach *.bp *.gcse *.flow2 *.peephole2
013a2ee0
DE
2356 -rm -f */*.greg */*.lreg */*.combine */*.flow */*.cse */*.jump */*.rtl
2357 -rm -f */*.tree */*.loop */*.dbr */*.jump2 */*.sched */*.cse2
b85f4db3 2358 -rm -f */*.sched2 */*.stack */*.regmove */*.gcse */*.flow2
ede7cd44 2359 -rm -f */*.peephole2
2e494f70 2360# Delete some files made during installation.
027ea2a7 2361 -rm -f specs float.h-* enquire SYSCALLS.c.X SYSCALLS.c
813fc11c 2362 -rm -f collect collect2 mips-tfile mips-tdump alloca.s
ac1284f9 2363# Delete files generated for fixproto
1162b3a6 2364 -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \
02521409 2365 gen-protos fixproto.list fixtmp.* fixhdr.ready
2e494f70
RS
2366# Delete unwanted output files from TeX.
2367 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
013a2ee0 2368 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
47547081
RS
2369# Delete sorted indices we don't actually use.
2370 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2e494f70 2371# Delete core dumps.
013a2ee0 2372 -rm -f core */core
59a64126 2373 -rm -f *.bp */*.bp
79d8453e 2374
47547081
RS
2375# Delete all files made by compilation
2376# that don't exist in the distribution.
2051eea1
NS
2377INTL_CLEAN = intl.clean
2378clean: mostlyclean $(INTL_CLEAN) lang.clean
8521c499 2379 -rm -f libgcc.a libgcc1.a libgcc1-asm.a libgcc2.a libgcc2.ready
43554690 2380 -rm -f libgcc1.null
be0d23ff 2381 -rm -f *.dvi
013a2ee0 2382 -rm -f */*.dvi
c3efc7c4
DE
2383 -if [ -f md.pre-cpp ]; then \
2384 rm -f md ; \
2385 fi
ba1811f1 2386# Delete the include directory.
e5e809f4 2387 -rm -rf include
75ed5d8b 2388# Delete files used by the "multilib" facility (including libgcc subdirs).
f6cdc7ea 2389 -rm -f multilib.h tmpmultilib*
75ed5d8b
DE
2390 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2391 rm -rf $(MULTILIB_DIRNAMES); \
2392 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2393 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2394 fi ; fi
5768f211 2395 -rm -fr stage1 stage2 stage3 stage4
79d8453e 2396
47547081
RS
2397# Delete all files that users would normally create
2398# while building and installing GCC.
ab87f8c8
JL
2399INTL_DISTCLEAN = intl.distclean
2400distclean: clean $(INTL_DISTCLEAN) lang.distclean
6baf1cc8 2401 -rm -f tm.h tm_p.h config.h auto-host.h auto-build.h tconfig.h hconfig.h
b7cb92ad 2402 -rm -f md cstamp-h
63d9b81c 2403 -rm -f config.status config.run config.cache config.bak
d232dfa4 2404 -rm -f Make-lang Make-hooks Make-host Make-target
3103b7db 2405 -rm -f Makefile specs.h options.h gencheck.h *.oaux
f24af81b 2406 -rm -f gthr-default.h
26f887e5 2407 -rm -f */stage1 */stage2 */stage3 */stage4 */include
3dab45b7 2408 -rm -f c-parse.output
338023d4 2409 -rm -f *.asm
67446ffe 2410 -rm -f float.h
a051ad3a
JL
2411 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
2412 -rm -f testsuite/{gcc,g++}.{log,sum}
ab87f8c8 2413 -rm -f intl/libintl.h libintl.h
2e494f70
RS
2414
2415# Delete anything likely to be found in the source directory
2416# that shouldn't be in the distribution.
013a2ee0 2417extraclean: distclean lang.extraclean
fb92d909 2418 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
be0d23ff 2419 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
3dab45b7
RS
2420 -rm -f config/*/=* config/*/"#"* config/*/*~*
2421 -rm -f config/*/*.orig config/*/*.rej
d72a7857 2422 -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
184be4bf 2423 -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
3dab45b7 2424 -rm -f *lose config/*lose config/*/*lose
e5e809f4 2425 -rm -f *.s *.s[0-9] *.i config/ChangeLog
ab87f8c8 2426 -rm -f y.tab.c yacc.*
013a2ee0
DE
2427 -rm -f */=* */"#"* */*~*
2428 -rm -f */patch* */*.orig */*.rej
2429 -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2430 -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2431 -rm -f */*lose */*.s */*.s[0-9] */*.i
79d8453e 2432
63d9b81c 2433# Get rid of every file that's generated from some other file, except for `configure'.
79d8453e 2434# Most of these files ARE PRESENT in the GCC distribution.
2051eea1
NS
2435# We define INTL_DISTCLEAN, INTL_CLEAN & INTL_MOSTLYCLEAN to be empty in the
2436# submake, so that we don't descend into intl after its makefile has been
2437# removed.
63d9b81c
RK
2438maintainer-clean:
2439 @echo 'This command is intended for maintainers to use; it'
2440 @echo 'deletes files that may need special tools to rebuild.'
2051eea1
NS
2441 $(MAKE) INTL_DISTCLEAN= INTL_CLEAN= INTL_MOSTLYCLEAN= \
2442 intl.maintainer-clean lang.maintainer-clean distclean
3379e8ef 2443 -rm -f c-parse.y c-gperf.h
79d8453e 2444 -rm -f c-parse.c c-parse.h c-parse.output
4c457b6b 2445 -rm -f cexp.c cexp.output TAGS
2e494f70
RS
2446 -rm -f cpp.info* cpp.??s cpp.*aux
2447 -rm -f gcc.info* gcc.??s gcc.*aux
544eb21e 2448#\f
79d8453e 2449# Entry points `install' and `uninstall'.
2e494f70 2450# Also use `install-collect2' to install collect2 when the config files don't.
79d8453e 2451
1402d22c 2452# The semicolon is to prevent the install.sh -> install default rule
7bd95cc1
BK
2453# from doing anything. Having it run true helps avoid problems and
2454# noise from versions of make which don't like to have null commands.
d960abef 2455install: $(INSTALL_TARGET) ; @true
79d8453e 2456
ba1811f1 2457# Copy the compiler files into directories where they will be run.
aab26e16
RK
2458# Install the driver last so that the window when things are
2459# broken is small.
b583eed8 2460install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
587a4ba6
L
2461 $(INSTALL_CPP) install-man install-info intl.install lang.install-normal \
2462 install-driver
79d8453e 2463
057f494b
RS
2464# Do nothing while making gcc with a cross-compiler. The person who
2465# makes gcc for the target machine has to know how to put a complete
2466# gcc together by hand.
2467install-build: force
2468 @echo You have to install gcc on your target machine by hand.
2469
79d8453e
RS
2470# Run this on the target machine
2471# to finish installation of cross compiler.
027ea2a7 2472# This is not used anymore now that float.h does not depend on enquire.
79d8453e
RS
2473install-cross-rest: install-float-h-cross
2474
587a4ba6 2475# Handle cpp installation.
922cf99e 2476install-cpp: xcpp$(exeext)
9799e470
AS
2477 -if [ -f gcc-cross$(exeext) ] ; then \
2478 rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2479 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2480 if [ x$(cpp_install_dir) != x ]; then \
2481 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2482 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2483 else true; fi; \
2484 else \
2485 rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2486 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2487 if [ x$(cpp_install_dir) != x ]; then \
2488 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2489 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2490 else true; fi; \
2491 fi
587a4ba6
L
2492
2493uninstall-cpp:
9799e470
AS
2494 -rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext)
2495 -rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext)
587a4ba6 2496 -if [ x$(cpp_install_dir) != x ]; then \
9799e470
AS
2497 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2498 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
587a4ba6
L
2499 else true; fi
2500
79d8453e
RS
2501# Install float.h for cross compiler.
2502# Run this on the target machine!
027ea2a7 2503# This is not used anymore now that float.h does not depend on enquire.
69cbb85a 2504install-float-h-cross: installdirs
3f7531db
RS
2505# if [ -f enquire ] ; then true; else false; fi
2506# Note: don't use -. We should fail right away if enquire was not made.
2507 ./enquire -f > $(tmpdir)/float.h
79d8453e 2508 -rm -f $(libsubdir)/include/float.h
62c13b81
RS
2509 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
2510 -rm -f $(tmpdir)/float.h
79d8453e
RS
2511 chmod a-x $(libsubdir)/include/float.h
2512
69cbb85a
RK
2513# Create the installation directories.
2514installdirs:
2515 -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
2516 -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
394fa7c8
JW
2517 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
2518 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
9eb91772 2519# This dir isn't currently searched by cpp.
394fa7c8 2520# -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
05fd993d
MH
2521 -fdir= ; for dir in `echo $(libsubdir) | tr '/' ' '`; do \
2522 fdir=$${fdir}/$${dir}; \
2523 if [ -d $${fdir} ] ; then true ; else mkdir $${fdir}; chmod a+rx $${fdir}; fi ; \
2524 done
394fa7c8
JW
2525 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
2526 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
91c7bd9b 2527 -if [ -d $(gcc_tooldir) ] ; then true ; else mkdir $(gcc_tooldir) ; chmod a+rx $(gcc_tooldir) ; fi
394fa7c8
JW
2528 -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; chmod a+rx $(assertdir) ; fi
2529 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
a76b6b40 2530# We don't use mkdir -p to create the parents of man1dir,
79d8453e 2531# because some systems don't support it.
a76b6b40
MH
2532# Instead, we use this technique to create the immediate parent of man1dir.
2533 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
394fa7c8 2534 if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
a76b6b40 2535 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; chmod a+rx $(man1dir) ; fi
79d8453e
RS
2536
2537# Install the compiler executables built during cross compilation.
69cbb85a 2538install-common: native installdirs $(EXTRA_PARTS) lang.install-common
79d8453e
RS
2539 for file in $(COMPILERS); do \
2540 if [ -f $$file ] ; then \
2541 rm -f $(libsubdir)/$$file; \
2542 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2543 else true; \
2544 fi; \
2545 done
2fe8d2d6 2546 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
79d8453e
RS
2547 if [ x"$$file" != x.. ]; then \
2548 rm -f $(libsubdir)/$$file; \
2549 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2550 else true; fi; \
2551 done
2fe8d2d6
RK
2552 for file in $(EXTRA_PARTS) ..; do \
2553 if [ x"$$file" != x.. ]; then \
2554 rm -f $(libsubdir)/$$file; \
2555 $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
e9a25f70 2556 chmod a-x $(libsubdir)/$$file; \
2fe8d2d6
RK
2557 else true; fi; \
2558 done
f0ec1f64 2559# Don't mess with specs if it doesn't exist yet.
2a7bccbb
TG
2560 -if [ -f specs ] ; then \
2561 rm -f $(libsubdir)/specs; \
f0ec1f64 2562 $(INSTALL_DATA) specs $(libsubdir)/specs; \
e9a25f70 2563 chmod a-x $(libsubdir)/specs; \
f0ec1f64 2564 fi
aab26e16
RK
2565# Install protoize if it was compiled.
2566 -if [ -f protoize$(exeext) ]; \
2567 then \
225695a4
JW
2568 if [ -f gcc-cross$(exeext) ] ; then \
2569 rm -f $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2570 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2571 rm -f $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2572 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2573 else \
2574 rm -f $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2575 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2576 rm -f $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2577 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2578 fi ; \
aab26e16
RK
2579 rm -f $(libsubdir)/SYSCALLS.c.X; \
2580 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
2581 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
2582 fi
2583 -rm -f $(libsubdir)/cpp$(exeext)
2584 $(INSTALL_PROGRAM) cpp$(exeext) $(libsubdir)/cpp$(exeext)
ca363bb6 2585# Install gcov if it was compiled.
59a64126
DE
2586 -if [ -f gcov$(exeext) ]; \
2587 then \
2588 rm -f $(bindir)/gcov$(exeext); \
23473647 2589 $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
59a64126 2590 fi
aab26e16 2591
8b06b20a 2592# Install the driver program as $(target_alias)-gcc
91c7bd9b 2593# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
e09e14e9 2594install-driver: xgcc$(exeext)
173712fb
RK
2595 -if [ -f gcc-cross$(exeext) ] ; then \
2596 rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
94a8b9fe 2597 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
91c7bd9b
JL
2598 if [ -d $(gcc_tooldir)/bin/. ] ; then \
2599 rm -f $(gcc_tooldir)/bin/gcc$(exeext); \
2600 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(gcc_tooldir)/bin/gcc$(exeext); \
79d8453e
RS
2601 else true; fi; \
2602 else \
173712fb
RK
2603 rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2604 $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
8b06b20a 2605 rm -f $(bindir)/$(target_alias)-gcc-1$(exeext); \
ac64120e 2606 $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext); \
8b06b20a 2607 mv $(bindir)/$(target_alias)-gcc-1$(exeext) $(bindir)/$(target_alias)-gcc$(exeext); \
79d8453e 2608 fi
79d8453e 2609
0b2fbcb2 2610# Install the info files.
feb9ea1a 2611# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
ee5b121e 2612# to do the install.
69cbb85a 2613install-info: doc installdirs lang.install-info
0b2fbcb2 2614 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
8be52aaa 2615 for f in cpp.info* gcc.info*; do \
ee5b121e 2616 $(INSTALL_DATA) $$f $(infodir)/$$f; \
feb9ea1a 2617 done
ee5b121e 2618 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
f8c86b58 2619 if [ -f $(infodir)/dir ] ; then \
265ce5bb 2620 for f in cpp.info gcc.info; do \
ee5b121e 2621 install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
265ce5bb 2622 done; \
f8c86b58 2623 else true; fi; \
265ce5bb 2624 else true; fi;
0b2fbcb2
RS
2625 -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
2626
79d8453e 2627# Install the man pages.
69cbb85a 2628install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
e9a25f70 2629 -if [ -f gcc-cross$(exeext) ] ; then \
a76b6b40
MH
2630 rm -f $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
2631 $(INSTALL_DATA) $(srcdir)/gcc.1 $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
2632 chmod a-x $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
338023d4 2633 else \
a76b6b40
MH
2634 rm -f $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
2635 $(INSTALL_DATA) $(srcdir)/gcc.1 $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
2636 chmod a-x $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
338023d4 2637 fi
a76b6b40
MH
2638 -rm -f $(man1dir)/cccp$(manext)
2639 -$(INSTALL_DATA) $(srcdir)/cccp.1 $(man1dir)/cccp$(manext)
2640 -chmod a-x $(man1dir)/cccp$(manext)
79d8453e
RS
2641
2642# Install the library.
69cbb85a 2643install-libgcc: libgcc.a installdirs
79d8453e
RS
2644 -if [ -f libgcc.a ] ; then \
2645 rm -f $(libsubdir)/libgcc.a; \
2646 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
8f25d5cd
JW
2647 if $(RANLIB_TEST_FOR_TARGET) ; then \
2648 (cd $(libsubdir); $(RANLIB_FOR_TARGET) libgcc.a); else true; fi; \
79d8453e
RS
2649 chmod a-x $(libsubdir)/libgcc.a; \
2650 else true; fi
2651
f6cdc7ea 2652# Install multiple versions of libgcc.a.
69cbb85a 2653install-multilib: stmp-multilib installdirs
f6cdc7ea
DE
2654 for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
2655 dir=`echo $$i | sed -e 's/;.*$$//'`; \
c5c76735 2656 if [ -d $(libsubdir)/$${dir} ]; then true; else mkdir $(libsubdir)/$${dir}; chmod a+rx $(libsubdir)/$${dir}; fi; \
47a22692
JM
2657 for f in libgcc.a $(EXTRA_MULTILIB_PARTS); do \
2658 rm -f $(libsubdir)/$${dir}/$${f}; \
2659 $(INSTALL_DATA) $${dir}/$${f} $(libsubdir)/$${dir}/$${f}; \
2660 done; \
8f25d5cd
JW
2661 if $(RANLIB_TEST_FOR_TARGET); then \
2662 (cd $(libsubdir)/$${dir}; $(RANLIB_FOR_TARGET) libgcc.a); \
2663 else true; fi; \
f6cdc7ea
DE
2664 chmod a-x $(libsubdir)/$${dir}/libgcc.a; \
2665 done
2666
ba1811f1 2667# Install all the header files built in the include subdirectory.
d7371761 2668install-headers: install-include-dir $(INSTALL_HEADERS_DIR) $(INSTALL_ASSERT_H)
ba1811f1
ILT
2669# Fix symlinks to absolute paths in the installed include directory to
2670# point to the installed directory, not the build directory.
ac64120e 2671# Don't need to use LN_S here since we really do need ln -s and no substitutes.
ba1811f1
ILT
2672 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
2673 if [ $$? -eq 0 ]; then \
2674 dir=`cd include; pwd`; \
2675 for i in $$files; do \
2676 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
2677 if expr "$$dest" : "$$dir.*" > /dev/null; then \
2678 rm -f $(libsubdir)/include/$$i; \
44735512 2679 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
ba1811f1
ILT
2680 fi; \
2681 done; \
2682 fi
79d8453e 2683
ba1811f1 2684# Create or recreate the gcc private include file directory.
69cbb85a 2685install-include-dir: installdirs
ba1811f1
ILT
2686 -rm -rf $(libsubdir)/include
2687 mkdir $(libsubdir)/include
2688 -chmod a+rx $(libsubdir)/include
2689
2690# Install the include directory using tar.
ac1284f9 2691install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
965c3f43
AO
2692# We use `pwd`/include instead of just include to problems with CDPATH
2693# Unless a full pathname is provided, some shells would print the new CWD,
2694# found in CDPATH, corrupting the output. We could just redirect the
2695# output of `cd', but some shells lose on redirection within `()'s
2696 (cd `pwd`/include ; \
cf52b2f7 2697 tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
e6431ec5
RS
2698# /bin/sh on some systems returns the status of the first tar,
2699# and that can lose with GNU tar which always writes a full block.
2700# So use `exit 0' to ignore its exit status.
ba1811f1
ILT
2701
2702# Install the include directory using cpio.
ac1284f9 2703install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
965c3f43
AO
2704# See discussion about the use of `pwd` above
2705 cd `pwd`/include ; \
2706 find . -print | cpio -pdum $(libsubdir)/include
79d8453e 2707
49ba557e
RS
2708# Put assert.h where it won't override GNU libc's assert.h.
2709# It goes in a dir that is searched after GNU libc's headers;
2710# thus, the following conditionals are no longer needed.
2711# But it's not worth deleting them now.
2712## Don't replace the assert.h already there if it is not from GCC.
2713## This code would be simpler if it tested for -f ... && ! grep ...
2714## but supposedly the ! operator is missing in sh on some systems.
69cbb85a 2715install-assert-h: assert.h installdirs
c9d929d7
RS
2716 if [ -f $(assertdir)/assert.h ]; \
2717 then \
998812ac 2718 if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
396f9edb 2719 then \
c9d929d7
RS
2720 rm -f $(assertdir)/assert.h; \
2721 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
0cd4060d 2722 chmod a-x $(assertdir)/assert.h; \
c9d929d7
RS
2723 else true; \
2724 fi; \
9fcedbef 2725 else \
6204c24f
RS
2726 rm -f $(assertdir)/assert.h; \
2727 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
0cd4060d 2728 chmod a-x $(assertdir)/assert.h; \
9fcedbef 2729 fi
79d8453e 2730
10da1131 2731# Use this target to install the program `collect2' under the name `collect2'.
69cbb85a 2732install-collect2: collect2 installdirs
10da1131 2733 $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/collect2$(exeext)
2e494f70 2734# Install the driver program as $(libsubdir)/gcc for collect2.
173712fb 2735 $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
2e494f70 2736
79d8453e 2737# Cancel installation by deleting the installed files.
587a4ba6 2738uninstall: intl.uninstall lang.uninstall $(UNINSTALL_CPP)
79d8453e 2739 -rm -rf $(libsubdir)
173712fb
RK
2740 -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
2741 -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
23473647
NS
2742 -rm -rf $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
2743 -rm -rf $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
2744 -rm -rf $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
2745 -rm -rf $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
2746 -rm -rf $(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
a76b6b40
MH
2747 -rm -rf $(man1dir)/$(GCC_INSTALL_NAME)$(manext)
2748 -rm -rf $(man1dir)/$(GCC_CROSS_NAME)$(manext)
2749 -rm -rf $(man1dir)/cccp$(manext)
2750 -rm -rf $(man1dir)/protoize$(manext)
2751 -rm -rf $(man1dir)/unprotoize$(manext)
9ec36da5 2752 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
544eb21e 2753#\f
4c457b6b 2754# These targets are for the dejagnu testsuites. The file site.exp
e933cbe0
JL
2755# contains global variables that all the testsuites will use.
2756
2757# Set to $(target_alias)/ for cross.
2758target_subdir = @target_subdir@
2759
2760site.exp: ./config.status Makefile
2761 @echo "Making a new config file..."
2762 -@rm -f ./tmp?
2763 @touch site.exp
2764 -@mv site.exp site.bak
2765 @echo "## these variables are automatically generated by make ##" > ./tmp0
2766 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
2767 @echo "# add them to the last section" >> ./tmp0
2768 @echo "set rootme \"`pwd`\"" >> ./tmp0
2769 @echo "set srcdir \"`cd ${srcdir}; pwd`\"" >> ./tmp0
2770 @echo "set host_triplet $(host_canonical)" >> ./tmp0
2771 @echo "set build_triplet $(build_canonical)" >> ./tmp0
2772 @echo "set target_triplet $(target)" >> ./tmp0
2773 @echo "set target_alias $(target_alias)" >> ./tmp0
2774# CFLAGS is set even though it's empty to show we reserve the right to set it.
2775 @echo "set CFLAGS \"\"" >> ./tmp0
2776 @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
2777# If newlib has been configured, we need to pass -B to gcc so it can find
2778# newlib's crt0.o if it exists. This will cause a "path prefix not used"
2779# message if it doesn't, but the testsuite is supposed to ignore the message -
2780# it's too difficult to tell when to and when not to pass -B (not all targets
2781# have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
2782# seems like too selective a test.
2783# ??? Another way to solve this might be to rely on linker scripts. Then
2784# theoretically the -B won't be needed.
2785# We also need to pass -L ../ld so that the linker can find ldscripts.
2786 @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
2787 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
2788 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
2789 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2790 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2791 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
2792 else true; \
2793 fi
2794 @if [ -d $(objdir)/../ld ] ; then \
2795 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
2796 else true; \
2797 fi
ccdb9251 2798 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
e933cbe0
JL
2799 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
2800 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
2801 @cat ./tmp0 > site.exp
2802 @cat site.bak | sed \
2803 -e '1,/^## All variables above are.*##/ d' >> site.exp
2804 -@rm -f ./tmp?
2805
d8bb17c8 2806CHECK_TARGETS = check-gcc check-g++ check-g77 check-objc
e933cbe0
JL
2807
2808check: $(CHECK_TARGETS)
2809
3979dfb8 2810testsuite/site.exp: site.exp
e933cbe0
JL
2811 if [ -d testsuite ]; then \
2812 true; \
2813 else \
2814 mkdir testsuite; \
2815 fi
2816 rm -rf testsuite/site.exp
2817 cp site.exp testsuite/site.exp
3979dfb8
JW
2818
2819check-g++: testsuite/site.exp
2820 -rootme=`pwd`; export rootme; \
e933cbe0
JL
2821 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2822 cd testsuite; \
2823 EXPECT=${EXPECT} ; export EXPECT ; \
2824 if [ -f $${rootme}/../expect/expect ] ; then \
73a3903d 2825 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
e933cbe0
JL
2826 export TCL_LIBRARY ; fi ; \
2827 $(RUNTEST) --tool g++ $(RUNTESTFLAGS)
2828
3979dfb8
JW
2829check-gcc: testsuite/site.exp
2830 -rootme=`pwd`; export rootme; \
e933cbe0
JL
2831 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2832 cd testsuite; \
2833 EXPECT=${EXPECT} ; export EXPECT ; \
2834 if [ -f $${rootme}/../expect/expect ] ; then \
73a3903d 2835 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
e933cbe0
JL
2836 export TCL_LIBRARY ; fi ; \
2837 $(RUNTEST) --tool gcc $(RUNTESTFLAGS)
2838
dc84d7bc
JL
2839check-g77: testsuite/site.exp
2840 -rootme=`pwd`; export rootme; \
2841 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2842 cd testsuite; \
2843 EXPECT=${EXPECT} ; export EXPECT ; \
2844 if [ -f $${rootme}/../expect/expect ] ; then \
73a3903d 2845 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
dc84d7bc
JL
2846 export TCL_LIBRARY ; fi ; \
2847 $(RUNTEST) --tool g77 $(RUNTESTFLAGS)
2848
d8bb17c8
OP
2849check-objc: testsuite/site.exp
2850 -rootme=`pwd`; export rootme; \
2851 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2852 cd testsuite; \
2853 EXPECT=${EXPECT} ; export EXPECT ; \
2854 if [ -f $${rootme}/../expect/expect ] ; then \
73a3903d 2855 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
d8bb17c8
OP
2856 export TCL_LIBRARY ; fi ; \
2857 $(RUNTEST) --tool objc $(RUNTESTFLAGS)
2858
79d8453e
RS
2859# These exist for maintenance purposes.
2860
2861# Update the tags table.
2862TAGS: force
2863 cd $(srcdir); \
e5e809f4
JL
2864 mkdir tmp-tags; \
2865 mv -f c-parse.[ch] cexp.c =*.[chy] tmp-tags; \
79d8453e 2866 etags *.y *.h *.c; \
e5e809f4
JL
2867 mv tmp-tags/* .; \
2868 rmdir tmp-tags
79d8453e 2869
e5e809f4
JL
2870# Create the distribution tar.gz file.
2871dist: tmp-gcc.xtar
2872 gzip --best < tmp-gcc.xtar > tmp-gcc.xtar.gz
2873 mv tmp-gcc.xtar.gz gcc-$(version).tar.gz
79d8453e 2874
e5e809f4 2875tmp-gcc.xtar: distdir
7d27b36c 2876# Make the distribution.
e5e809f4
JL
2877 tar -chf tmp-gcc.xtar gcc-$(version)
2878
2879distdir-cvs: force
298978c9 2880 if [ -d $(srcdir)/CVS ]; then cd $(srcdir) && cvs -r update; fi
7d27b36c 2881
013a2ee0
DE
2882# This target exists to do the initial work before the language specific
2883# stuff gets done.
3ff34537 2884distdir-start: doc $(srcdir)/INSTALL $(srcdir)/c-parse.y $(srcdir)/c-gperf.h \
e5e809f4 2885 $(srcdir)/c-parse.c $(srcdir)/cexp.c $(srcdir)/config.in \
ee5254ff 2886 $(srcdir)/version.c TAGS
ab87f8c8
JL
2887 @case '$(USE_NLS)' in \
2888 yes) ;; \
2889 *) echo "configure with --enable-nls before making a distribution"; \
2890 exit 1;; \
2891 esac
db4e119f 2892 @if grep -s "for version ${mainversion}" gcc.texi > /dev/null; \
f780d21b 2893 then true; \
96b5daff 2894 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
f780d21b 2895 fi
be0d23ff 2896# Update the version number in README
ab87f8c8 2897 $(AWK) '$$1 " " $$2 " " $$3 == "This directory contains" \
be0d23ff
RS
2898 { $$6 = version; print $$0 } \
2899 $$1 " " $$2 " " $$3 != "This directory contains"' \
298978c9 2900 version=$(version) $(srcdir)/README > tmp.README
be0d23ff 2901 mv tmp.README README
4c457b6b 2902 -rm -rf gcc-$(version) tmp
79d8453e
RS
2903# Put all the files in a temporary subdirectory
2904# which has the name that we want to have in the tar file.
2e494f70
RS
2905 mkdir tmp
2906 mkdir tmp/config
eb3a6507 2907 mkdir tmp/ginclude
298978c9 2908 mkdir tmp/objc
ab87f8c8
JL
2909 mkdir tmp/intl
2910 mkdir tmp/po
298978c9
PB
2911 for file in `(cd $(srcdir) && echo *[0-9a-zA-Z+])`; do \
2912 test -f $(srcdir)/$$file && $(LN_S) $(srcdir)/$$file tmp; \
2e494f70 2913 done
298978c9
PB
2914 if test "$(srcdir)" != "." ; then \
2915 for file in c-parse.c cexp.c ; do \
2916 test -f ./$$file && $(LN_S) ../$$file tmp; \
2917 done; \
2918 fi
2919 for file in `(cd $(srcdir)/config && echo *[0-9a-zA-Z+])`; do \
2920 if test -d $(srcdir)/config/$$file \
2921 && test "$$file" != RCS && test "$$file" != CVS; then \
2922 mkdir tmp/config/$$file; \
2923 for subfile in `(cd $(srcdir)/config/$$file && echo *[0-9a-zA-Z+])`; do \
2924 $(LN_S) $(srcdir)/config/$$file/$$subfile tmp/config/$$file; \
e52114f8 2925 done; \
e52114f8 2926 else \
298978c9 2927 $(LN_S) $(srcdir)/config/$$file tmp/config; \
e52114f8 2928 fi; \
79d8453e 2929 done
298978c9
PB
2930 for file in `(cd $(srcdir)/ginclude && echo *[0-9a-zA-Z+])`; do \
2931 $(LN_S) $(srcdir)/ginclude/$$file tmp/ginclude; \
eb3a6507 2932 done
298978c9
PB
2933 for file in `(cd $(srcdir)/objc && echo *[0-9a-zA-Z+])`; do \
2934 $(LN_S) $(srcdir)/objc/$$file tmp/objc; \
ea727bbf 2935 done
298978c9 2936 $(LN_S) .gdbinit tmp
013a2ee0
DE
2937
2938# Finish making `distdir', after the languages have done their thing.
2939distdir-finish:
2e494f70 2940 mv tmp gcc-$(version)
eb3a6507
RK
2941# Get rid of everything we don't want in the distribution. We'd want
2942# this to use Makefile.in, but it doesn't have the `lang.foo' targets
2943# expanded.
ab87f8c8
JL
2944 cd gcc-$(version); make extraclean distdir-check VERSION_DEP=
2945
2946distdir-check:
2947 ($(AWK) '/^[^#]/{print} /^#[A-Za-z]/{print substr($$1, 2)}' | sort) \
2948 < po/POTFILES.in > tmp.POTFILES
2949 ls [A-Za-z]*.[ch] [a-z]*/[A-Za-z]*.[ch] \
2950 [a-z]*/[a-z]*/[A-Za-z]*.[ch] | sort > tmp.src
2951 diff tmp.POTFILES tmp.src || { \
2952 echo "po/POTFILES.in and sources do not match -- please fix"; \
2953 exit 1; \
2954 }
2955 rm -f tmp.*
79d8453e 2956
ab87f8c8
JL
2957distdir: distdir-cvs distdir-start intl.distdir intl.distdir-fixup \
2958 lang.distdir distdir-finish
013a2ee0 2959
4c457b6b 2960# make diff oldversion=M.N
db4e119f
RS
2961# creates a diff file between an older distribution and this one.
2962# The -P option assumes this is GNU diff.
2963diff:
f137e7dc 2964 diff -rc2P -x c-parse.y -x c-parse.c -x c-parse.h -x c-gperf.h \
ee5254ff 2965 -x cexp.c -x -x TAGS -x INSTALL \
e5e809f4 2966 -x configure -x config.in \
013a2ee0
DE
2967 -x "gcc.??" -x "gcc.??s" -x gcc.aux -x "gcc.info*" \
2968 -x "cpp.??" -x "cpp.??s" -x cpp.aux -x "cpp.info*" \
2969 $(LANG_DIFF_EXCLUDES) \
e5e809f4 2970 gcc-$(oldversion) gcc-$(version) > gcc-$(oldversion)-$(version).diff
db4e119f 2971
361e618f 2972bootstrap bootstrap-lean: force
9c4614c3
TW
2973# Only build the C compiler for stage1, because that is the only one that
2974# we can guarantee will build with the native compiler, and also it is the
2975# only thing useful for building stage2.
5e31e473 2976 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)"
79d8453e 2977 $(MAKE) stage1
2e494f70
RS
2978# This used to define ALLOCA as empty, but that would lead to bad results
2979# for a subsequent `make install' since that would not have ALLOCA empty.
2980# To prevent `make install' from compiling alloca.o and then relinking cc1
2981# because alloca.o is newer, we permit these recursive makes to compile
2982# alloca.o. Then cc1 is newer, so it won't have to be relinked.
6f144c9c 2983 $(MAKE) CC="stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
79d8453e 2984 $(MAKE) stage2
361e618f 2985 -if test $@ = bootstrap-lean; then rm -rf stage1; else true; fi
6f144c9c 2986 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
b1e3ddfd 2987
eaed7b41 2988bootstrap2 bootstrap2-lean: force
6f144c9c 2989 $(MAKE) CC="stage1/xgcc$(exeext) -Bstage1/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
79d8453e 2990 $(MAKE) stage2
eaed7b41 2991 -if test $@ = bootstrap2-lean; then rm -rf stage1; else true; fi
6f144c9c 2992 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
79d8453e 2993
eaed7b41 2994bootstrap3 bootstrap3-lean: force
6f144c9c 2995 $(MAKE) CC="stage2/xgcc$(exeext) -Bstage2/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
79d8453e 2996
eaed7b41 2997bootstrap4 bootstrap4-lean: force
6f144c9c 2998 $(MAKE) CC="stage3/xgcc$(exeext) -Bstage3/ -B$(build_tooldir)/bin/" CFLAGS="$(WARN_CFLAGS) $(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage3/ LANGUAGES="$(LANGUAGES)"
361e618f 2999
dcfedcd0
RK
3000# Compare the object files in the current directory with those in the
3001# stage2 directory.
3002
9825189b 3003# ./ avoids bug in some versions of tail.
e85988b5 3004compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
3fb2f401 3005 -rm -f .bad_compare
e85988b5 3006 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
aab26e16 3007 for file in *$(objext); do \
9825189b 3008 tail +16c ./$$file > tmp-foo1; \
e85988b5 3009 tail +16c stage$$stage/$$file > tmp-foo2 \
3fb2f401 3010 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
dcfedcd0 3011 done
e85988b5 3012 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
ab87f8c8 3013 for dir in tmp-foo intl $(SUBDIRS); do \
aab26e16
RK
3014 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3015 for file in $$dir/*$(objext); do \
013a2ee0 3016 tail +16c ./$$file > tmp-foo1; \
e85988b5 3017 tail +16c stage$$stage/$$file > tmp-foo2 \
3fb2f401 3018 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
094ecbb0 3019 done; \
7ce1e6c8 3020 else true; fi; \
013a2ee0 3021 done
dcfedcd0 3022 -rm -f tmp-foo*
4931312c 3023 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
3fb2f401
JL
3024 if [ -f .bad_compare ]; then \
3025 echo "Bootstrap comparison failure!"; \
3026 cat .bad_compare; \
3027 exit 1; \
e85988b5
MH
3028 else \
3029 case "$@" in \
3030 *-lean ) rm -rf stage$$stage ;; \
25b76cc1 3031 *) ;; \
e85988b5 3032 esac; true; \
3fb2f401 3033 fi
dcfedcd0 3034
e85988b5
MH
3035# Compare the object files in the current directory with those in the
3036# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
3037# running tail and the overhead of twice copying each object file.
3038
3039gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
b1e3ddfd 3040 -rm -f .bad_compare
e85988b5 3041 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
b1e3ddfd 3042 for file in *$(objext); do \
e85988b5 3043 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
b1e3ddfd 3044 done
e85988b5 3045 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
ab87f8c8 3046 for dir in tmp-foo intl $(SUBDIRS); do \
b1e3ddfd
AJ
3047 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
3048 for file in $$dir/*$(objext); do \
e85988b5 3049 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
b1e3ddfd 3050 done; \
7ce1e6c8 3051 else true; fi; \
b1e3ddfd 3052 done
4931312c 3053 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
b1e3ddfd
AJ
3054 if [ -f .bad_compare ]; then \
3055 echo "Bootstrap comparison failure!"; \
3056 cat .bad_compare; \
3057 exit 1; \
e85988b5
MH
3058 else \
3059 case "$@" in \
3060 *-lean ) rm -rf stage$$stage ;; \
3061 esac; true; \
b1e3ddfd
AJ
3062 fi
3063
79d8453e 3064# Copy the object files from a particular stage into a subdirectory.
013a2ee0 3065stage1-start:
2e494f70 3066 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
ab87f8c8 3067 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3068 do \
9a517e7b 3069 if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
013a2ee0 3070 done
79d8453e 3071 -mv $(STAGESTUFF) stage1
ab87f8c8 3072 -mv intl/*$(objext) stage1/intl
338023d4
DE
3073# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3074# dir will work properly.
ac64120e
JW
3075 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage1 ; else true ; fi
3076 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage1 ; else true ; fi
3077 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage1 ; else true ; fi
79d8453e
RS
3078 -rm -f stage1/libgcc.a
3079 -cp libgcc.a stage1
8f25d5cd
JW
3080 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3081 $(RANLIB_FOR_TARGET) stage1/libgcc.a; \
3082 else true; fi
04e95620
JM
3083 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3084 cp stage1/$${f} . ; \
db814993 3085 else true; \
04e95620 3086 fi; done
013a2ee0 3087stage1: force stage1-start lang.stage1
79d8453e 3088
013a2ee0 3089stage2-start:
2e494f70 3090 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
ab87f8c8 3091 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3092 do \
9a517e7b 3093 if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
013a2ee0 3094 done
79d8453e 3095 -mv $(STAGESTUFF) stage2
ab87f8c8 3096 -mv intl/*$(objext) stage2/intl
338023d4
DE
3097# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3098# dir will work properly.
ac64120e
JW
3099 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage2 ; else true ; fi
3100 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage2 ; else true ; fi
3101 -if [ -f collect-ld ] ; then $(LN_S) ../collect-ld$(exeext) stage2 ; else true ; fi
79d8453e
RS
3102 -rm -f stage2/libgcc.a
3103 -cp libgcc.a stage2
8f25d5cd
JW
3104 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3105 $(RANLIB_FOR_TARGET) stage2/libgcc.a; \
3106 else true; fi
04e95620
JM
3107 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3108 cp stage2/$${f} . ; \
db814993 3109 else true; \
04e95620 3110 fi; done
013a2ee0 3111stage2: force stage2-start lang.stage2
79d8453e 3112
013a2ee0 3113stage3-start:
935e11b0 3114 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
ab87f8c8 3115 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3116 do \
9a517e7b 3117 if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
013a2ee0 3118 done
79d8453e 3119 -mv $(STAGESTUFF) stage3
ab87f8c8 3120 -mv intl/*$(objext) stage3/intl
338023d4
DE
3121# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3122# dir will work properly.
ac64120e
JW
3123 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage3 ; else true ; fi
3124 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage3 ; else true ; fi
3125 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage3 ; else true ; fi
79d8453e
RS
3126 -rm -f stage3/libgcc.a
3127 -cp libgcc.a stage3
8f25d5cd
JW
3128 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3129 $(RANLIB_FOR_TARGET) stage3/libgcc.a; \
3130 else true; fi
04e95620
JM
3131 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3132 cp stage3/$${f} . ; \
db814993 3133 else true; \
04e95620 3134 fi; done
013a2ee0 3135stage3: force stage3-start lang.stage3
79d8453e 3136
013a2ee0 3137stage4-start:
935e11b0 3138 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
ab87f8c8 3139 -for dir in intl $(SUBDIRS) ; \
013a2ee0 3140 do \
9a517e7b 3141 if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
013a2ee0 3142 done
79d8453e 3143 -mv $(STAGESTUFF) stage4
ab87f8c8 3144 -mv intl/*$(objext) stage4/intl
338023d4
DE
3145# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
3146# dir will work properly.
ac64120e
JW
3147 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage4 ; else true ; fi
3148 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage4 ; else true ; fi
3149 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage4 ; else true ; fi
79d8453e
RS
3150 -rm -f stage4/libgcc.a
3151 -cp libgcc.a stage4
8f25d5cd
JW
3152 -if $(RANLIB_TEST_FOR_TARGET) ; then \
3153 $(RANLIB_FOR_TARGET) stage4/libgcc.a; \
3154 else true; fi
04e95620
JM
3155 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
3156 cp stage4/$${f} . ; \
db814993 3157 else true; \
04e95620 3158 fi; done
013a2ee0 3159stage4: force stage4-start lang.stage4
79d8453e
RS
3160
3161# Copy just the executable files from a particular stage into a subdirectory,
3162# and delete the object files. Use this if you're just verifying a version
3163# that is pretty sure to work, and you are short of disk space.
aab26e16 3164risky-stage1: stage1
003455d9 3165 -make clean
79d8453e 3166
aab26e16 3167risky-stage2: stage2
79d8453e
RS
3168 -make clean
3169
aab26e16 3170risky-stage3: stage3
79d8453e
RS
3171 -make clean
3172
aab26e16 3173risky-stage4: stage4
79d8453e
RS
3174 -make clean
3175
3176#In GNU Make, ignore whether `stage*' exists.
f1908d70 3177.PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
79d8453e
RS
3178.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
3179
3180force:
e7f62ad3
MH
3181
3182# ---
3183# The enquire rules are still useful for building new float-anything.h.
3184# Special flags for compiling enquire.
3185# We disable optimization to make floating point more reliable.
3186ENQUIRE_CFLAGS = -DNO_MEM -DNO_LONG_DOUBLE_IO -O0
3187ENQUIRE_LDFLAGS = $(LDFLAGS)
3188
3189# Enquire target (This is a variable so that a target can choose not to
3190# build it.)
3191ENQUIRE = enquire
3192
3193# Test to see whether <float.h> exists in the system header files,
3194# and is not derived from GCC.
3195FLOAT_H_TEST = \
3196 [ -f $(SYSTEM_HEADER_DIR)/float.h ] && \
3197 if grep 'ifndef _FLOAT_H___' $(SYSTEM_HEADER_DIR)/float.h >/dev/null; \
3198 then false; \
3199 else :; fi
3200# We pretend to not having a usable <float.h>, hence disable the FLOAT_H_TEST
3201# to ensure, we're emitting a full blown <float.h> ourselves.
3202FLOAT_H_TEST = false
3203
3204# Used to compile enquire with standard cc, but have forgotten why.
3205# Let's try with GCC.
3206enquire: enquire.o $(GCC_PARTS)
3207 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
3208enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
3209 if $(FLOAT_H_TEST); then \
3210 rm -f include/float.h; \
3211 SYS_FLOAT_H_WRAP=1; \
3212 else :; \
3213 SYS_FLOAT_H_WRAP=0; \
3214 fi; \
3215 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) \
3216 -DSYS_FLOAT_H_WRAP=$$SYS_FLOAT_H_WRAP \
3217 -I. -c $(srcdir)/enquire.c
3218
3219# Create float.h source for the native machine.
3220# Make it empty if we can use the system float.h without changes.
3221float.h-nat: enquire
3222 -./enquire -f > tmp-float.h
3223 grep '#define [^_]' tmp-float.h >/dev/null || true > tmp-float.h
3224 mv tmp-float.h float.h-nat
3225
3226# Create a dummy float.h source for a cross-compiler.
3227# ??? This isn't used anymore. Should we create config/float-unkn.h
3228# and make that the default float_format in configure?
3229float.h-cross:
3230 echo "#ifndef __GCC_FLOAT_NOT_NEEDED" > t-float.h-cross
3231 echo "#error float.h values not known for cross-compiler" >> t-float.h-cross
3232 echo "#endif" >> t-float.h-cross
3233 mv t-float.h-cross float.h-cross