]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/Makefile.in
* reload.c (push_reload): When seeing if can reuse a register,
[thirdparty/gcc.git] / gcc / Makefile.in
CommitLineData
32e6d418 1# Makefile for GNU C compiler.
0b387d23 2# Copyright (C) 1987, 1988, 1990, 1991, 1992, 1993, 1994, 1995
3# 1996, 1997, 1998, 1999, 2000 Free Software Foundation, Inc.
32e6d418 4
5#This file is part of GNU CC.
6
7#GNU CC is free software; you can redistribute it and/or modify
8#it under the terms of the GNU General Public License as published by
9#the Free Software Foundation; either version 2, or (at your option)
10#any later version.
11
12#GNU CC is distributed in the hope that it will be useful,
13#but WITHOUT ANY WARRANTY; without even the implied warranty of
14#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15#GNU General Public License for more details.
16
17#You should have received a copy of the GNU General Public License
18#along with GNU CC; see the file COPYING. If not, write to
8d62a21c 19#the Free Software Foundation, 59 Temple Place - Suite 330,
20#Boston MA 02111-1307, USA.
32e6d418 21
22# The targets for external use include:
23# all, doc, proto, install, install-cross, install-cross-rest,
a8514488 24# uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
32e6d418 25# stage1, stage2, stage3, stage4.
26
c6396a0b 27# Suppress smart makes who think they know how to automake Yacc files
28.y.c:
29
87c0ad1b 30# Directory where sources are, from where we are.
31srcdir = @srcdir@
32VPATH = @srcdir@
33
d73e991a 34# Pointer to the GCC Project website
35website=http://gcc.gnu.org
36
32e6d418 37# Variables that exist for you to override.
38# See below for how to change them for certain systems.
39
73027c94 40# List of language subdirectories.
41# This is overridden by configure.
87c0ad1b 42SUBDIRS =@subdirs@
73027c94 43
32e6d418 44# Selection of languages to be made.
73027c94 45# This is overridden by configure.
76103b2c 46CONFIG_LANGUAGES = @all_languages@
844c30fe 47LANGUAGES = c gcov$(exeext) $(CONFIG_LANGUAGES)
32e6d418 48
5728fc9b 49# Languages should create dependencies of $(INTL_TARGETS) on generated
50# sources in Make-lang.in. Example:
51# $(INTL_TARGETS): $(srcdir)/cp/parse.c
52INTL_TARGETS = intl.all intl.install intl.distdir
53
e754efc9 54# Selection of languages to be made during stage1 build.
55# This is overridden by configure.
87c0ad1b 56BOOT_LANGUAGES = c @all_boot_languages@
e754efc9 57
32e6d418 58ALLOCA =
1ab99fde 59ALLOCA_FLAGS =
94c53b91 60ALLOCA_FINISH = true
32e6d418 61
c6221df9 62# Various ways of specifying flags for compilations:
32e6d418 63# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
64# BOOT_CFLAGS is the value of CFLAGS to pass
65# to the stage2 and stage3 compilations
c6221df9 66# WARN_CFLAGS are the warning flags to pass to stage2 and stage3.
6f63674e 67# (And for stage 1 if the native compiler is GCC.) It is
a727632e 68# separate from BOOT_CFLAGS because people tend to override optimization
69# flags and we'd like them to still have warnings turned on. They are free
70# to explicitly turn warnings off if they wish.
df4883a6 71# LOOSE_CFLAGS are the CFLAGS to use when compiling something which is only
72# compiled with gcc, such as libgcc and the frontends other than C.
32e6d418 73# XCFLAGS is used for most compilations but not when using the GCC just built.
329da2a1 74# TCFLAGS is used for compilations with the GCC just built.
32e6d418 75XCFLAGS =
329da2a1 76TCFLAGS =
6f63674e 77CFLAGS = -g @stage1_warn_cflags@
86373592 78BOOT_CFLAGS = -O2 $(CFLAGS)
f8f2f144 79WARN_CFLAGS = @stage2_warn_cflags@
6bc2f30f 80LOOSE_CFLAGS = `echo $(CFLAGS)|sed -e 's/-pedantic//g' -e 's/-Wtraditional//g'`
32e6d418 81# These exists to be overridden by the x-* and t-* files, respectively.
82X_CFLAGS =
83T_CFLAGS =
84
85X_CPPFLAGS =
86T_CPPFLAGS =
87
be2828ce 88AWK = @AWK@
38bce124 89CC = @CC@
fbf120a6 90# srcdir might be a relative pathname which won't be valid in a subdirectory,
91# so we must use objdir/srcdir instead to make it safe. objdir is always
92# a full pathname.
93BISON = `if [ -f $(objdir)/../bison/bison ] ; then case $(srcdir) in \
94 /*) echo $(objdir)/../bison/bison -L $(srcdir)/../bison/ ;; \
95 *) echo $(objdir)/../bison/bison -L $(objdir)/$(srcdir)/../bison/ ;; \
f6b47e76 96 esac; else echo bison ; fi`
3f1608f3 97BISONFLAGS =
fbf120a6 98LEX = `if [ -f $(objdir)/../flex/flex ] ; then echo $(objdir)/../flex/flex ; else echo flex ; fi`
73027c94 99LEXFLAGS =
32e6d418 100AR = ar
32e6d418 101AR_FLAGS = rc
0dbd1c74 102LN = @symbolic_link@
4664c5d5 103DLLTOOL = dlltool
32e6d418 104SHELL = /bin/sh
105# on sysV, define this as cp.
87c0ad1b 106INSTALL = @INSTALL@
ea4a6c81 107# Some systems may be missing symbolic links, regular links, or both.
108# Allow configure to check this and use "ln -s", "ln", or "cp" as appropriate.
109LN=@LN@
110LN_S=@LN_S@
32e6d418 111# These permit overriding just for certain files.
74086405 112INSTALL_PROGRAM = @INSTALL_PROGRAM@
113INSTALL_DATA = @INSTALL_DATA@
049ccec1 114MAKEINFO = @MAKEINFO@
64cda823 115MAKEINFOFLAGS =
f345940f 116TEXI2DVI = texi2dvi
73027c94 117# For GNUmake: let us decide what gets passed to recursive makes.
118MAKEOVERRIDES =
87c0ad1b 119@SET_MAKE@
32e6d418 120
121# Define this as & to perform parallel make on a Sequent.
c6221df9 122# Note that this has some bugs, and it seems currently necessary
32e6d418 123# to compile all the gen* files first by hand to avoid erroneous results.
124P =
125
126# How to invoke ranlib.
127RANLIB = ranlib
128# Test to use to see whether ranlib exists on the system.
396c97db 129RANLIB_TEST = \
130 [ -f $(RANLIB) ] \
363fd278 131 || [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
73b4c875 132
32e6d418 133# Compiler to use for compiling libgcc1.a.
134# OLDCC should not be the GNU C compiler,
135# since that would compile typical libgcc1.a functions such as mulsi3
136# into infinite recursions.
137OLDCC = cc
138
139# CFLAGS for use with OLDCC, for compiling libgcc1.a.
140# NOTE: -O does not work on some Unix systems!
141CCLIBFLAGS = -O
142
c6396a0b 143# Version of ar to use when compiling libgcc1.a.
32e6d418 144OLDAR = ar
38bce124 145OLDAR_FLAGS = qc
32e6d418 146
2cfd79fe 147# Target to use when installing include directory. Either
148# install-headers-tar or install-headers-cpio.
87c0ad1b 149INSTALL_HEADERS_DIR = @build_install_headers_dir@
2cfd79fe 150
c8763215 151# Header files that are made available under the same name
152# to programs compiled with GCC.
153USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
b9a1fcb3 154 $(srcdir)/ginclude/varargs.h $(srcdir)/ginclude/proto.h \
c6221df9 155 $(srcdir)/ginclude/stdbool.h $(srcdir)/ginclude/iso646.h \
156 $(EXTRA_HEADERS) $(LANG_EXTRA_HEADERS)
c8763215 157
158# Target to use whe installing assert.h. Some systems may
159# want to set this empty.
160INSTALL_ASSERT_H = install-assert-h
161
483f5cc4 162# The GCC to use for compiling libgcc.a, enquire, and libgcc1-test.
b3781cc4 163# Usually the one we just built.
32e6d418 164# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
d23f832c 165GCC_FOR_TARGET = ./xgcc -B$(build_tooldir)/bin/ -B./ -isystem $(build_tooldir)/include
32e6d418 166
167# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
168# It omits XCFLAGS, and specifies -B./.
d23f832c 169# It also specifies -isystem ./include to find, e.g., stddef.h.
df4883a6 170GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(LOOSE_CFLAGS) -isystem ./include $(TCFLAGS)
32e6d418 171
2828fac4 172# Specify the abi to use when building the c++ runtime
173GXX_ABI_FLAG=@GXX_ABI_FLAG@
174
b541ad9d 175# Sed command to transform gcc to installed name. Overwritten by configure.
3271658e 176program_transform_name = @program_transform_name@
ccb6700d 177program_transform_cross_name = s,^,$(target_alias)-,
b541ad9d 178
11d80b02 179build_canonical = @build_canonical@
180host_canonical = @host_canonical@
181
32e6d418 182# Tools to use when building a cross-compiler.
183# These are used because `configure' appends `cross-make'
184# to the makefile when making a cross-compiler.
185
fbc57885 186# Use the tools from the build tree, if they are available.
187
188# objdir is set by configure.
189objdir = @objdir@
190
191AR_FOR_TARGET = ` \
192 if [ -f $(objdir)/../binutils/ar ] ; then \
193 echo $(objdir)/../binutils/ar ; \
194 else \
195 if [ "$(host_canonical)" = "$(target)" ] ; then \
196 echo ar; \
197 else \
e440364b 198 t='$(program_transform_cross_name)'; echo ar | sed -e $$t ; \
fbc57885 199 fi; \
200 fi`
aa787722 201AR_FLAGS_FOR_TARGET =
202AR_CREATE_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) rc
203AR_EXTRACT_FOR_TARGET = $(AR_FOR_TARGET) $(AR_FLAGS_FOR_TARGET) x
fbc57885 204RANLIB_FOR_TARGET = ` \
205 if [ -f $(objdir)/../binutils/ranlib ] ; then \
206 echo $(objdir)/../binutils/ranlib ; \
207 else \
208 if [ "$(host_canonical)" = "$(target)" ] ; then \
209 echo ranlib; \
210 else \
e440364b 211 t='$(program_transform_cross_name)'; echo ranlib | sed -e $$t ; \
fbc57885 212 fi; \
213 fi`
214RANLIB_TEST_FOR_TARGET = \
215 [ -f $(RANLIB_FOR_TARGET) ] \
216 || ( [ "$(host_canonical)" = "$(target)" ] \
217 && [ -f /usr/bin/ranlib -o -f /bin/ranlib ] )
218
3f69fed5 219# Dir to search for system headers. Overridden by cross-make.
220SYSTEM_HEADER_DIR = /usr/include
221
8a5b87ad 222# Where to find some libiberty headers.
223HASHTAB_H = $(srcdir)/../include/hashtab.h
224OBSTACK_H = $(srcdir)/../include/obstack.h
bb96e316 225SPLAY_TREE_H= $(srcdir)/../include/splay-tree.h
8a5b87ad 226
397f1574 227# Default cross SYSTEM_HEADER_DIR, to be overridden by targets.
228CROSS_SYSTEM_HEADER_DIR = $(tooldir)/sys-include
229
58113712 230# Control whether to run fixproto and fixincludes.
61fad423 231STMP_FIXPROTO = stmp-fixproto
58113712 232STMP_FIXINC = stmp-fixinc
a5889b74 233
0848b369 234# Test to see whether <limits.h> exists in the system header files.
235LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
236
87c0ad1b 237target=@target@
71d9c015 238target_alias=@target_alias@
87c0ad1b 239xmake_file=@dep_host_xmake_file@
240tmake_file=@dep_tmake_file@
241out_file=$(srcdir)/config/@out_file@
242out_object_file=@out_object_file@
243md_file=$(srcdir)/config/@md_file@
244tm_file=@tm_file_list@
245build_xm_file=@build_xm_file_list@
246host_xm_file=@host_xm_file_list@
247lang_specs_files=@lang_specs_files@
248lang_options_files=@lang_options_files@
c3cc26e1 249lang_tree_files=@lang_tree_files@
714fe809 250GCC_THREAD_FILE=@thread_file@
5c872430 251OBJC_BOEHM_GC=@objc_boehm_gc@
58febf9e 252GTHREAD_FLAGS=@gthread_flags@
7955e3d2 253# Be prepared for gcc2 merges.
254gcc_version=@gcc_version@
255gcc_version_trigger=@gcc_version_trigger@
256version=$(gcc_version)
4f5e65d7 257mainversion=`grep version_string $(srcdir)/version.c | sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/'`
32e6d418 258
32e6d418 259# Common prefix for installation directories.
260# NOTE: This directory must exist when you start installation.
87c0ad1b 261prefix = @prefix@
2ffdcadf 262# Directory in which to put localized header files. On the systems with
263# gcc as the native cc, `local_prefix' may not be `prefix' which is
264# `/usr'.
a2aa0fc1 265# NOTE: local_prefix *should not* default from prefix.
87c0ad1b 266local_prefix = @local_prefix@
c6396a0b 267# Directory in which to put host dependent programs and libraries
87c0ad1b 268exec_prefix = @exec_prefix@
32e6d418 269# Directory in which to put the executable for the command `gcc'
87c0ad1b 270bindir = @bindir@
32e6d418 271# Directory in which to put the directories used by the compiler.
87c0ad1b 272libdir = @libdir@
32e6d418 273# Directory in which the compiler finds executables, libraries, etc.
67cb4bc1 274libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
40cb25f2 275# Used to produce a relative $(gcc_tooldir) in gcc.o
8099945b 276unlibsubdir = ../../..
f22b529a 277# Directory in which to find other cross-compilation tools and headers.
066520ea 278dollar = @dollar@
f22b529a 279# Used in install-cross.
280gcc_tooldir = @gcc_tooldir@
281# Since tooldir does not exist at build-time, use -B$(build_tooldir)/bin/
282build_tooldir = $(exec_prefix)/$(target_alias)
3bf5d4dc 283# Directory in which the compiler finds g++ includes.
8ffadb5b 284gcc_gxx_include_dir= @gcc_gxx_include_dir@
35df828f 285# Directory to search for site-specific includes.
9671ce48 286includedir = $(local_prefix)/include
db9a0b19 287# assertdir is overridden in cross-make.
9d8314a9 288# (But this currently agrees with what is in cross-make.)
40cb25f2 289assertdir = $(gcc_tooldir)/include
a2aa0fc1 290# where the info files go
87c0ad1b 291infodir = @infodir@
3e2f90b9 292# Where cpp should go besides $prefix/bin if necessary
293cpp_install_dir = @cpp_install_dir@
be2828ce 294# where the locale files go
295datadir = $(prefix)/@DATADIRNAME@
296localedir = $(datadir)/locale
32e6d418 297# Extension (if any) to put in installed man-page filename.
298manext = .1
f403cbcb 299objext = .o
2aa3e87b 300exeext = @host_exeext@
301build_exeext = @build_exeext@
f403cbcb 302
32e6d418 303# Directory in which to put man pages.
3cf6a465 304mandir = @mandir@
305man1dir = $(mandir)/man1
f32abccb 306# Dir for temp files.
307tmpdir = /tmp
32e6d418 308
be2828ce 309# Top build directory, relative to here.
310top_builddir = .
311
312# Whether we were configured with NLS.
313USE_NLS = @USE_NLS@
314
315# Internationalization library.
316INTLLIBS = @INTLLIBS@
317
318# List of internationalization subdirectories.
319POSUB = @POSUB@
320INTL_SUBDIRS = intl $(POSUB)
321
32e6d418 322# Additional system libraries to link with.
323CLIB=
324
325# Change this to a null string if obstacks are installed in the
326# system library.
327OBSTACK=obstack.o
328
05513b45 329# The GC method to be used on this system.
772580ce 330GGC=@GGC@.o
05513b45 331
332# If a supplementary library is being used for the GC.
333GGC_LIB=
334
b8a373b2 335# Configure will set these if you need vfprintf and possibly _doprnt support.
336VFPRINTF=@vfprintf@
337DOPRINT=@doprint@
338
2289acd7 339# Specify the rule for actually making libgcc.a,
340LIBGCC = libgcc.a
341# and the rule for installing it.
342INSTALL_LIBGCC = install-libgcc
343
32e6d418 344# Specify the rule for actually making libgcc1.a.
c6396a0b 345# The value may be empty; that means to do absolutely nothing
346# with or for libgcc1.a.
32e6d418 347LIBGCC1 = libgcc1.a
348
b0d230b7 349# Specify the rule for making libgcc1.a for a cross-compiler.
350# The default rule assumes that libgcc1.a is supplied by the user.
351CROSS_LIBGCC1 = libgcc1.cross
352
32e6d418 353# Options to use when compiling libgcc2.a.
354# -g1 causes output of debug info only for file-scope entities.
355# we use this here because that should be enough, and also
356# so that -g1 will be tested.
cce804d3 357#
b1e0e993 358LIBGCC2_DEBUG_CFLAGS = -g1
c6221df9 359LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) $(LIBGCC2_DEBUG_CFLAGS) $(GTHREAD_FLAGS) -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED @inhibit_libc@
690a93ea 360
361# Additional options to use when compiling libgcc2.a.
d23f832c 362# Some targets override this to -isystem include
690a93ea 363LIBGCC2_INCLUDES =
364
b5dba0c7 365# Additional target-dependent options for compiling libgcc2.a.
c6221df9 366TARGET_LIBGCC2_CFLAGS =
b5dba0c7 367
fbba5463 368# Addition sources to handle exceptions; overridden by some targets.
369LIB2ADDEH = $(srcdir)/frame-dwarf2.c
370
3b9b6fde 371# libgcc1-test target (must also be overridable for a target)
372LIBGCC1_TEST = libgcc1-test
17886975 373
32e6d418 374# List of extra executables that should be compiled for this target machine
375# that are used for compiling from source code to object code.
376# The rules for compiling them should be in the t-* file for the machine.
87c0ad1b 377EXTRA_PASSES =@extra_passes@
32e6d418 378
c6396a0b 379# Like EXTRA_PASSES, but these are used when linking.
87c0ad1b 380EXTRA_PROGRAMS = @extra_programs@
c6396a0b 381
382# List of extra object files that should be compiled for this target machine.
32e6d418 383# The rules for compiling them should be in the t-* file for the machine.
87c0ad1b 384EXTRA_PARTS = @extra_parts@
32e6d418 385
c6396a0b 386# List of extra object files that should be compiled and linked with
387# compiler proper (cc1, cc1obj, cc1plus).
87c0ad1b 388EXTRA_OBJS = @extra_objs@
c6396a0b 389
17108b2b 390# List of extra object files that should be compiled and linked with
391# the gcc driver.
87c0ad1b 392EXTRA_GCC_OBJS =@host_extra_gcc_objs@
17108b2b 393
630c76ba 394# List of additional header files to install.
395# Often this is edited directly by `configure'.
87c0ad1b 396EXTRA_HEADERS =@extra_headers_list@
630c76ba 397
0c787992 398# Set this to `collect2' to enable use of collect2.
87c0ad1b 399USE_COLLECT2 = @will_use_collect2@
98ae6ed6 400# If we might be using collect2, then this variable will be set to
401# -DUSE_COLLECT2. toplev.c, collect2.c and libgcc2.c all need to
402# if we may be using collect2.
23029fe8 403MAYBE_USE_COLLECT2 = @maybe_use_collect2@
79f818d0 404# It is convenient for configure to add the assignment at the beginning,
405# so don't override it here.
0c787992 406USE_COLLECT2 = collect2$(exeext)
79f818d0 407
32e6d418 408# List of extra C and assembler files to add to libgcc1.a.
409# Assembler files should have names ending in `.asm'.
c6221df9 410LIB1FUNCS_EXTRA =
32e6d418 411
412# List of extra C and assembler files to add to libgcc2.a.
413# Assembler files should have names ending in `.asm'.
c6221df9 414LIB2FUNCS_EXTRA =
32e6d418 415
3e2f90b9 416# Handle cpp installation.
417INSTALL_CPP=
418UNINSTALL_CPP=
419
d54b81e0 420# We do not try to build float.h anymore. Let configure select the
421# appropriate pre-built float.h file for the target.
19c49761 422FLOAT_H=@float_h_file@
d54b81e0 423
32e6d418 424# Program to convert libraries.
c6221df9 425LIBCONVERT =
32e6d418 426
427# Control whether header files are installed.
32e6d418 428INSTALL_HEADERS=install-headers
429
049ccec1 430# Control whether Info documentation is built and installed.
431BUILD_INFO = @BUILD_INFO@
432INSTALL_INFO = @INSTALL_INFO@
433
106a27e5 434# Additional directories of header files to run fixincludes on.
af731fc2 435# These should be directories searched automatically by default
436# just as /usr/include is.
c6221df9 437# *Do not* use this for directories that happen to contain
af731fc2 438# header files, but are not searched automatically by default.
106a27e5 439# On most systems, this is empty.
440OTHER_FIXINCLUDES_DIRS=
441
fc0b8ef8 442# A list of all the language-specific executables.
443# This is overridden by configure.
8757933b 444COMPILERS = cc1$(exeext) @all_compilers@
fc0b8ef8 445
77a164d8 446# List of things which should already be built whenever we try to use xgcc
32e6d418 447# to compile anything (without linking).
7f6a6499 448GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES)
32e6d418 449
77a164d8 450# List of things which should already be built whenever we try to use xgcc
32e6d418 451# to link anything.
2289acd7 452GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
32e6d418 453
32e6d418 454# Directory to link to, when using the target `maketest'.
455DIR = ../gcc
456
89e36a04 457# Guaranteed to not exist when not passing md through cpp.
2c352995 458# This value is overridden directly by configure.
89e36a04 459MD_FILE = md-cpp-not-used
460
32e6d418 461# Flags to use when cross-building GCC.
462# Prefix to apply to names of object files when using them
463# to run on the machine we are compiling on.
464HOST_PREFIX=
465# Prefix to apply to names of object files when compiling them
466# to run on the machine we are compiling on.
c6221df9 467# The default for this variable is chosen to keep these rules
32e6d418 468# out of the way of the other rules for compiling the same source files.
469HOST_PREFIX_1=loser-
470HOST_CC=$(CC)
471HOST_CFLAGS=$(ALL_CFLAGS)
c6396a0b 472HOST_CLIB=$(CLIB)
32e6d418 473HOST_LDFLAGS=$(LDFLAGS)
474HOST_CPPFLAGS=$(ALL_CPPFLAGS)
c6396a0b 475HOST_ALLOCA=$(ALLOCA)
476HOST_MALLOC=$(MALLOC)
477HOST_OBSTACK=$(OBSTACK)
b8a373b2 478HOST_VFPRINTF=$(VFPRINTF)
479HOST_DOPRINT=$(DOPRINT)
32e6d418 480
b541ad9d 481# Actual name to use when installing a native compiler.
ccb6700d 482GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed -e $$t`
28c11b39 483CPP_INSTALL_NAME = `t='$(program_transform_name)'; echo cpp | sed -e $$t`
fc56a674 484PROTOIZE_INSTALL_NAME = `t='$(program_transform_name)'; echo protoize | sed -e $$t`
485UNPROTOIZE_INSTALL_NAME = `t='$(program_transform_name)'; echo unprotoize | sed -e $$t`
5ef852e5 486GCOV_INSTALL_NAME = `t='$(program_transform_name)'; echo gcov | sed -e $$t`
86220f45 487GCCBUG_INSTALL_NAME = `t='$(program_transform_name)'; echo gccbug | sed -e $$t`
b541ad9d 488
489# Actual name to use when installing a cross-compiler.
ccb6700d 490GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed -e $$t`
2ff5d8bd 491CPP_CROSS_NAME = `t='$(program_transform_cross_name)'; echo cpp | sed -e $$t`
fc56a674 492PROTOIZE_CROSS_NAME = `t='$(program_transform_cross_name)'; echo protoize | sed -e $$t`
493UNPROTOIZE_CROSS_NAME = `t='$(program_transform_cross_name)'; echo unprotoize | sed -e $$t`
b541ad9d 494
32e6d418 495# Choose the real default target.
496ALL=all.internal
497
498# Choose the real install target.
2cfd79fe 499INSTALL_TARGET=install-normal
500
6c08487b 501# Setup the testing framework, if you have one
502EXPECT = `if [ -f $${rootme}/../expect/expect ] ; then \
503 echo $${rootme}/../expect/expect ; \
504 else echo expect ; fi`
505
506RUNTEST = `if [ -f $${srcdir}/../dejagnu/runtest ] ; then \
507 echo $${srcdir}/../dejagnu/runtest ; \
508 else echo runtest; fi`
509RUNTESTFLAGS =
510
b33b80ed 511# Extra symbols for fixproto to define when parsing headers.
c6221df9 512FIXPROTO_DEFINES =
b33b80ed 513
b7c87ff2 514# Extra flags to use when compiling crt{begin,end}.o.
c6221df9 515CRTSTUFF_T_CFLAGS =
b7c87ff2 516
4d3c962c 517# Extra flags to use when compiling [m]crt0.o.
c6221df9 518CRT0STUFF_T_CFLAGS =
4d3c962c 519
0dbd1c74 520# "t" or nothing, for building multilibbed versions of, say, crtbegin.o.
521T =
522
32e6d418 523# End of variables for you to override.
524
525# Definition of `all' is here so that new rules inserted by sed
526# do not specify the default target.
527# The real definition is under `all.internal' (for native compilers)
528# or `all.cross' (for cross compilers).
c6396a0b 529all: all.indirect
32e6d418 530
131b361e 531# This tells GNU Make version 3 not to put all variables in the environment.
532.NOEXPORT:
533
32e6d418 534# sed inserts variable overrides after the following line.
a0a99f10 535####target overrides
87c0ad1b 536@target_overrides@
537
a0a99f10 538####host overrides
87c0ad1b 539@host_overrides@
540
a0a99f10 541####cross overrides
87c0ad1b 542@cross_defines@
543@cross_overrides@
544
e77fd588 545####build overrides
87c0ad1b 546@build_overrides@
2e9d8ccf 547#\f
32e6d418 548# Now figure out from those variables how to compile and link.
549
c6396a0b 550all.indirect: $(ALL)
551
7b6bbd12 552# IN_GCC tells various files that system.h, toplev.c, etc are available.
5701cb15 553INTERNAL_CFLAGS = $(CROSS) -DIN_GCC @extra_c_flags@
32e6d418 554
555# This is the variable actually used when we compile.
792e272d 556# If you change this line, you probably also need to change the definition
557# of HOST_CFLAGS in build-make to match.
5539b206 558ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS) \
792e272d 559 @DEFS@
32e6d418 560
561# Likewise.
562ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
563
564# Even if ALLOCA is set, don't use it if compiling with GCC.
c1f5b841 565USE_ALLOCA= ${ALLOCA}
566USE_HOST_ALLOCA= ` case "${HOST_ALLOCA}" in ?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
c6396a0b 567USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
568USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
b8a373b2 569USE_HOST_VFPRINTF= ` case "${HOST_VFPRINTF}" in ?*) echo ${HOST_PREFIX}${HOST_VFPRINTF} ;; esac `
570USE_HOST_DOPRINT= ` case "${HOST_DOPRINT}" in ?*) echo ${HOST_PREFIX}${HOST_DOPRINT} ;; esac `
32e6d418 571
572# Dependency on obstack, alloca, malloc or whatever library facilities
573# are not installed in the system libraries.
574# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
be2828ce 575LIBDEPS= $(INTLLIBS) $(OBSTACK) $(ALLOCA) $(MALLOC) $(VFPRINTF) $(DOPRINT)
32e6d418 576
577# Likewise, for use in the tools that must run on this machine
578# even if we are cross-building GCC.
579# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
ac2ea426 580HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC) $(HOST_PREFIX)$(HOST_VFPRINTF) $(HOST_PREFIX)$(HOST_DOPRINT)
32e6d418 581
582# How to link with both our special library facilities
583# and the system's installed libraries.
be2828ce 584LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(INTLLIBS) @LIBS@ $(VFPRINTF) $(DOPRINT) $(CLIB) ../libiberty/libiberty.a
32e6d418 585
586# Likewise, for use in the tools that must run on this machine
587# even if we are cross-building GCC.
c6396a0b 588HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
ac2ea426 589 $(USE_HOST_VFPRINTF) $(USE_HOST_DOPRINT) $(HOST_CLIB)
32e6d418 590
c5ddd6b5 591HOST_RTL = $(HOST_PREFIX)rtl.o $(HOST_PREFIX)bitmap.o \
96d905e5 592 $(HOST_PREFIX)ggc-none.o gensupport.o
c5ddd6b5 593
262d46de 594HOST_PRINT = $(HOST_PREFIX)print-rtl.o
04b58880 595HOST_ERRORS = $(HOST_PREFIX)errors.o
32e6d418 596
597# Specify the directories to be searched for header files.
598# Both . and srcdir are used, in that order,
599# so that tm.h and config.h will be found in the compilation
600# subdirectory rather than in the source directory.
dda5abb0 601INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config -I$(srcdir)/../include
32e6d418 602
603# Always use -I$(srcdir)/config when compiling.
604.c.o:
605 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
606
607# This tells GNU make version 3 not to export all the variables
608# defined in this file into the environment.
609.NOEXPORT:
2e9d8ccf 610#\f
73027c94 611# Support for additional languages (other than c and objc).
612# ??? objc can be supported this way too (leave for later).
613
614# These next lines are overridden by configure.
87c0ad1b 615LANG_MAKEFILES = @all_lang_makefiles@
616LANG_STAGESTUFF = @all_stagestuff@
617LANG_DIFF_EXCLUDES = @all_diff_excludes@
618LANG_LIB2FUNCS = @all_lib2funcs@
619LANG_EXTRA_HEADERS = @all_headers@
73027c94 620
621# Flags to pass to recursive makes.
622# CC is set by configure. Hosts without symlinks need special handling
623# because we need CC="stage1/xgcc -Bstage1/" to work in the language
624# subdirectories.
625# ??? The choices here will need some experimenting with.
71094bab 626ORDINARY_FLAGS_TO_PASS = \
396c97db 627 "AR_FLAGS_FOR_TARGET=$(AR_FLAGS_FOR_TARGET)" \
aa787722 628 "AR_CREATE_FOR_TARGET=$(AR_CREATE_FOR_TARGET)" \
629 "AR_EXTRACT_FOR_TARGET=$(AR_EXTRACT_FOR_TARGET)" \
73027c94 630 "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
631 "BISON=$(BISON)" \
632 "BISONFLAGS=$(BISONFLAGS)" \
73027c94 633 "CFLAGS=$(CFLAGS)" \
2feda28e 634 "CLIB=$(CLIB)" \
c1a2e040 635 "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
73027c94 636 "LDFLAGS=$(LDFLAGS)" \
637 "LEX=$(LEX)" \
638 "LEXFLAGS=$(LEXFLAGS)" \
ea4a6c81 639 "LN=$(LN)" \
640 "LN_S=$(LN_S)" \
73027c94 641 "MAKEINFO=$(MAKEINFO)" \
642 "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
73027c94 643 "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
644 "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
645 "SHELL=$(SHELL)" \
87c0ad1b 646 "STAGE_PREFIX=@stage_prefix_set_by_configure@" \
62268150 647 "exeext=$(exeext)" \
2aa3e87b 648 "build_exeext=$(build_exeext)" \
62268150 649 "objext=$(objext)" \
73027c94 650 "exec_prefix=$(exec_prefix)" \
651 "prefix=$(prefix)" \
933b38ee 652 "local_prefix=$(local_prefix)" \
8ffadb5b 653 "gxx_include_dir=$(gcc_gxx_include_dir)" \
73027c94 654 "tooldir=$(tooldir)" \
40cb25f2 655 "gcc_tooldir=$(gcc_tooldir)" \
73027c94 656 "bindir=$(bindir)" \
be2828ce 657 "libsubdir=$(libsubdir)" \
658 "datadir=$(datadir)" \
659 "distdir=../tmp/\$$(subdir)" \
660 "localedir=$(localedir)"
71094bab 661FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) "CC=@cc_set_by_configure@"
be2828ce 662PREPEND_DOTDOT_TO_RELATIVE_PATHS = sed \
663 -e 's|^ *[^ /][^ /]*/|%&|' \
664 -e 's| -B| -B%|g' \
665 -e 's|% *[^- /]|%&|g' \
666 -e 's|%% *|../|g' \
667 -e 's|%||g'
668SUBDIR_FLAGS_TO_PASS = $(ORDINARY_FLAGS_TO_PASS) \
df4883a6 669 "CC=`echo @quoted_cc_set_by_configure@ | $(PREPEND_DOTDOT_TO_RELATIVE_PATHS)`"
670# Flags to pass when recursing into a frontend subdirectory.
671LANG_FLAGS_TO_PASS = $(SUBDIR_FLAGS_TO_PASS) \
672 "CFLAGS=$(LOOSE_CFLAGS)"
2e9d8ccf 673#\f
32e6d418 674# Lists of files for various purposes.
675
ee8f5350 676# Language-specific object files for C and Objective C.
677C_AND_OBJC_OBJS = c-lex.o c-pragma.o c-decl.o c-typeck.o c-convert.o \
5c3247a9 678 c-aux-info.o c-common.o c-iterate.o c-semantics.o @extra_c_objs@
ee8f5350 679
32e6d418 680# Language-specific object files for C.
ee8f5350 681C_OBJS = c-parse.o c-lang.o $(C_AND_OBJC_OBJS)
6cba4ca3 682
32e6d418 683# Language-independent object files.
8e3bc808 684OBJS = diagnostic.o \
685 toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
686 function.o stmt.o except.o expr.o calls.o expmed.o explow.o optabs.o real.o \
687 builtins.o intl.o varasm.o rtl.o print-rtl.o rtlanal.o emit-rtl.o genrtl.o \
688 dbxout.o sdbout.o dwarfout.o dwarf2out.o xcoffout.o bitmap.o alias.o gcse.o \
689 integrate.o jump.o cse.o loop.o unroll.o flow.o combine.o varray.o \
be2828ce 690 regclass.o regmove.o local-alloc.o global.o reload.o reload1.o caller-save.o \
8e3bc808 691 insn-peep.o reorg.o haifa-sched.o final.o recog.o reg-stack.o regrename.o \
692 insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o lcm.o \
693 profile.o insn-attrtab.o $(out_object_file) $(EXTRA_OBJS) convert.o \
694 mbchar.o splay-tree.o graph.o sbitmap.o resource.o hash.o predict.o \
695 lists.o ggc-common.o $(GGC) simplify-rtx.o ssa.o bb-reorder.o \
0bb604ca 696 sibcall.o conflict.o timevar.o ifcvt.o
32e6d418 697
698# GEN files are listed separately, so they can be built before doing parallel
699# makes for cc1 or cc1plus. Otherwise sequent parallel make attempts to load
700# them before rtl.o is compiled.
3ad7bb1c 701GEN= genemit genoutput genrecog genextract genflags gencodes genconfig \
1a237d7e 702 genpeep gengenrtl gencheck
32e6d418 703
704# Files to be copied away after each stage in building.
62268150 705STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
32e6d418 706 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
be2828ce 707 insn-attr.h insn-attrtab.c insn-opinit.c tree-check.h \
02eea913 708 s-flags s-config s-codes s-mlib s-under s-genrtl \
9e042f31 709 s-output s-recog s-emit s-extract s-peep s-check \
9e52652d 710 s-attr s-attrtab s-opinit s-crt0 \
2aa3e87b 711 genemit$(build_exeext) genoutput$(build_exeext) genrecog$(build_exeext) \
712 genextract$(build_exeext) genflags$(build_exeext) gencodes$(build_exeext) \
713 genconfig$(build_exeext) genpeep$(build_exeext) genattrtab$(build_exeext) \
7369c81f 714 genattr$(build_exeext) genopinit$(build_exeext) gengenrtl$(build_exeext) \
aa694eff 715 gencheck$(build_exeext) genrtl.c genrtl.h \
28c11b39 716 xgcc$(exeext) xcpp$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES) \
0b30807c 717 $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) cc1obj$(exeext) \
718 enquire$(exeext) protoize$(exeext) unprotoize$(exeext) \
c20b28d5 719 specs collect2$(exeext) $(USE_COLLECT2) underscore.c \
3f9b9702 720 gcov$(exeext) *.[0-9][0-9].* *.[si] libcpp.a libgcc libgcc.mk \
73027c94 721 $(LANG_STAGESTUFF)
32e6d418 722
723# Members of libgcc1.a.
724LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
799330a9 725 _lshrsi3 _ashrsi3 _ashlsi3 \
32e6d418 726 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
727 _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
728 _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
729 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
730 _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
731
732# Library members defined in libgcc2.c.
733LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
799330a9 734 _lshrdi3 _ashldi3 _ashrdi3 _ffsdi2 \
4b8f50a8 735 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
32e6d418 736 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
619c3e71 737 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
d055d75f 738 _fixtfdi _fixunstfdi _floatditf \
4b7a79e2 739 __gcc_bcmp _varargs __dummy _eprintf \
740 _bb _shtab _clear_cache _trampoline __main _exit \
a69e7f5f 741 _ctors _pure
742
743LIB2FUNCS_EH = _eh
32e6d418 744
04ddb594 745FPBIT_FUNCS = _pack_sf _unpack_sf _addsub_sf _mul_sf _div_sf \
746 _fpcmp_parts_sf _compare_sf _eq_sf _ne_sf _gt_sf _ge_sf \
a4110d9a 747 _lt_sf _le_sf _unord_sf _si_to_sf _sf_to_si _negate_sf _make_sf \
d4b91428 748 _sf_to_df _thenan_sf _sf_to_usi
04ddb594 749
750DPBIT_FUNCS = _pack_df _unpack_df _addsub_df _mul_df _div_df \
751 _fpcmp_parts_df _compare_df _eq_df _ne_df _gt_df _ge_df \
a4110d9a 752 _lt_df _le_df _unord_df _si_to_df _df_to_si _negate_df _make_df \
d4b91428 753 _df_to_sf _thenan_df _df_to_usi
04ddb594 754
32e6d418 755# The files that "belong" in CONFIG_H are deliberately omitted
756# because having them there would not be useful in actual practice.
757# All they would do is cause complete recompilation every time
758# one of the machine description files is edited.
759# That may or may not be what one wants to do.
760# If it is, rm *.o is an easy way to do it.
c20b28d5 761# CONFIG_H = $(host_xm_file) $(tm_file)
32e6d418 762CONFIG_H =
cfbfd5e6 763MACHMODE_H = machmode.h machmode.def
764RTL_BASE_H = rtl.h rtl.def $(MACHMODE_H)
3ad7bb1c 765RTL_H = $(RTL_BASE_H) genrtl.h
4e9d90c7 766TREE_H = tree.h real.h tree.def $(MACHMODE_H) tree-check.h version.h builtins.def
395adca1 767BASIC_BLOCK_H = basic-block.h bitmap.h sbitmap.h varray.h
f6afeec9 768DEMANGLE_H = $(srcdir)/../include/demangle.h
4a7d7a8b 769RECOG_H = recog.h
ae262a47 770EXPR_H = expr.h insn-codes.h
cfbfd5e6 771REGS_H = regs.h varray.h $(MACHMODE_H)
15aa1c64 772INTEGRATE_H = integrate.h varray.h
d6cb6164 773LOOP_H = loop.h varray.h bitmap.h
4f5e65d7 774GCC_H = gcc.h version.h
769177ac 775GGC_H = ggc.h varray.h
553e1559 776TIMEVAR_H = timevar.h timevar.def
2e9d8ccf 777#\f
73027c94 778# Language makefile fragments.
779
780# The following targets define the interface between us and the languages.
781#
782# all.build, all.cross, start.encap, rest.encap,
783# info, dvi,
784# install-normal, install-common, install-info, install-man,
785# uninstall, distdir,
a8514488 786# mostlyclean, clean, distclean, extraclean, maintainer-clean,
73027c94 787# stage1, stage2, stage3, stage4
788#
789# Each language is linked in with a series of hooks (since we can't use `::'
790# targets). The name of each hooked is "lang.${target_name}" (eg: lang.info).
791# Configure computes and adds these here.
792
793####language hooks
87c0ad1b 794@language_hooks@
73027c94 795
796# sed inserts language fragments after the following line.
797####language fragments
87c0ad1b 798@language_fragments@
73027c94 799
800# End of language makefile fragments.
2e9d8ccf 801#\f
8d12f02c 802# The only suffixes we want for implicit rules are .c and .o, so clear
803# the list and add them. This speeds up GNU Make, and allows -r to work.
804.SUFFIXES:
805.SUFFIXES: .c .o
32e6d418 806
d44645af 807Makefile: $(srcdir)/Makefile.in config.status $(srcdir)/version.c \
160b6fa9 808 $(xmake_file) $(tmake_file) $(LANG_MAKEFILES)
809 $(SHELL) $(srcdir)/configure.frag $(srcdir) "$(SUBDIRS)" \
810 "$(xmake_file)" "$(tmake_file)"
f403cbcb 811 cp config.status config.run
76103b2c 812 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.run
5484bc67 813 rm -f config.run
32e6d418 814
82470d2e 815$(srcdir)/configure: $(srcdir)/configure.in
87c0ad1b 816 cd $(srcdir); autoconf
817
4a3c7228 818gccbug: $(srcdir)/gccbug.in
819 CONFIG_FILES=gccbug CONFIG_HEADERS= ./config.status
820
3f9b9702 821mklibgcc: $(srcdir)/mklibgcc.in
822 CONFIG_FILES=mklibgcc CONFIG_HEADERS= ./config.status
823
0d9d9ae4 824# cstamp-h.in controls rebuilding of config.in.
d44645af 825# It is named cstamp-h.in and not stamp-h.in so the mostlyclean rule doesn't
826# delete it. A stamp file is needed as autoheader won't update the file if
827# nothing has changed.
0d9d9ae4 828# It remains in the source directory and is part of the distribution.
829# This follows what is done in shellutils, fileutils, etc.
c3b8daa3 830# "echo timestamp" is used instead of touch to be consistent with other
831# packages that use autoconf (??? perhaps also to avoid problems with patch?).
0d9d9ae4 832# ??? Newer versions have a maintainer mode that may be useful here.
833$(srcdir)/config.in: $(srcdir)/cstamp-h.in
834$(srcdir)/cstamp-h.in: $(srcdir)/configure.in $(srcdir)/acconfig.h
d211e301 835 cd $(srcdir) && autoheader
ba679b21 836 @rm -f $(srcdir)/cstamp-h.in
c3b8daa3 837 echo timestamp > $(srcdir)/cstamp-h.in
764fc592 838auto-host.h: cstamp-h ; @true
0d9d9ae4 839cstamp-h: config.in config.status
76103b2c 840 CONFIG_HEADERS=auto-host.h:config.in LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status
5539b206 841
d44645af 842# Really, really stupid make features, such as SUN's KEEP_STATE, may force
843# a target to build even if it is up-to-date. So we must verify that
844# config.status does not exist before failing.
7014838c 845config.status: $(srcdir)/configure version.c
d44645af 846 @if [ ! -f config.status ] ; then \
847 echo You must configure gcc. Look at the INSTALL file for details.; \
848 false; \
849 else \
76103b2c 850 LANGUAGES="$(CONFIG_LANGUAGES)" $(SHELL) config.status --recheck; \
d44645af 851 fi
852
bfcba12d 853all.internal: start.encap rest.encap doc
32e6d418 854# This is what to compile if making a cross-compiler.
73027c94 855# Note that we can compile enquire using the cross-compiler just built,
87540b0a 856# although we can't run it on this machine.
58113712 857all.cross: native gcc-cross xcpp$(exeext) specs \
f4bd6786 858 $(LIBGCC) $(LIBGCC1_TEST) $(EXTRA_PARTS) lang.all.cross doc
e77fd588 859# This is what to compile if making gcc with a cross-compiler.
28c11b39 860all.build: native xgcc$(exeext) xcpp$(exeext) $(EXTRA_PARTS) lang.all.build
32e6d418 861# This is what must be made before installing GCC and converting libraries.
efcb4879 862start.encap: native xgcc$(exeext) xcpp$(exeext) specs \
28c11b39 863 xlimits.h lang.start.encap
335ebf8f 864# These can't be made until after GCC can run.
58113712 865rest.encap: $(STMP_FIXPROTO) $(LIBGCC) $(EXTRA_PARTS) lang.rest.encap
32e6d418 866# This is what is made with the host's compiler
867# whether making a cross compiler or not.
be2828ce 868native: config.status auto-host.h cpp$(exeext) intl.all $(LANGUAGES) \
3ded972d 869 $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
32e6d418 870
871# Define the names for selecting languages in LANGUAGES.
7f6a6499 872C c: cc1$(exeext)
32e6d418 873PROTO: proto
874
ee4720a9 875# Tell GNU make these are phony targets.
8757933b 876.PHONY: C c PROTO proto
ee4720a9 877
840a6e8d 878# On the target machine, finish building a cross compiler.
879# This does the things that can't be done on the host machine.
19c49761 880rest.cross: $(LIBGCC) specs
840a6e8d 881
3b9b6fde 882# Verify that it works to compile and link libgcc1-test.
d7330690 883# If it does, then there are sufficient replacements for libgcc1.a.
3b9b6fde 884libgcc1-test: libgcc1-test.o native $(GCC_PARTS)
55e40402 885 @echo "Testing libgcc1. Ignore linker warning messages."
3b9b6fde 886 $(GCC_FOR_TARGET) $(GCC_CFLAGS) libgcc1-test.o -o libgcc1-test \
b6f6ec68 887 -nostartfiles -nostdlib `$(GCC_FOR_TARGET) --print-libgcc-file-name`
7f6a6499 888libgcc1-test.o: libgcc1-test.c native xgcc$(exeext)
3b9b6fde 889 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/libgcc1-test.c
d7330690 890
840a6e8d 891# Recompile all the language-independent object files.
892# This is used only if the user explicitly asks for it.
32e6d418 893compilations: ${OBJS}
894
03f51dea 895# Create a list of the language-independent object files so the language
896# subdirectories needn't mention their names explicitly.
c6221df9 897stamp-objlist: $(OBJS)
b54842d8 898 echo " $(OBJS)" | sed -e 's, \([a-z0-9]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist
03f51dea 899
77a164d8 900# We call this executable `xgcc' rather than `gcc'
901# to avoid confusion if the current directory is in the path
902# and CC is `gcc'. It is renamed to `gcc' when it is installed.
cdf76fe2 903xgcc$(exeext): gcc.o gccspec.o version.o intl.o prefix.o \
a91671eb 904 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
cdf76fe2 905 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o gccspec.o intl.o \
906 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
840a6e8d 907
28c11b39 908# We call this executable `xcpp' rather than `cpp'
909# since the real preprocessor is named `cpp'. It too is renamed
910# when it is installed.
911# The only difference from xgcc is that it's linked with cppspec.o
912# instead of gccspec.o.
913xcpp$(exeext): gcc.o cppspec.o version.o intl.o prefix.o \
914 version.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
915 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o cppspec.o intl.o \
916 prefix.o version.o $(EXTRA_GCC_OBJS) $(LIBS)
917
840a6e8d 918# Dump a specs file to make -B./ read these specs over installed ones.
7f6a6499 919specs: xgcc$(exeext)
c92e16d4 920 $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
921 mv tmp-specs specs
32e6d418 922
77a164d8 923# We do want to create an executable named `xgcc', so we can use it to
32e6d418 924# compile libgcc2.a.
925# Also create gcc-cross, so that install-common will install properly.
7f6a6499 926gcc-cross: xgcc$(exeext)
62268150 927 cp xgcc$(exeext) gcc-cross$(exeext)
32e6d418 928
95c4b02a 929cc1$(exeext): $(P) $(OBJS) $(C_OBJS) $(LIBDEPS)
930 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(C_OBJS) $(LIBS)
32e6d418 931
3f69fed5 932# Build the version of limits.h that we will install.
933xlimits.h: glimits.h limitx.h limity.h
0848b369 934 if $(LIMITS_H_TEST) ; then \
c92e16d4 935 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
3f69fed5 936 else \
c92e16d4 937 cat $(srcdir)/glimits.h > tmp-xlimits.h; \
3f69fed5 938 fi
c92e16d4 939 mv tmp-xlimits.h xlimits.h
2e9d8ccf 940#\f
32e6d418 941# Build libgcc.a.
a20b21eb 942
fbba5463 943LIB2ADD = $(LIB2ADDEH) $(LIB2FUNCS_EXTRA) $(LANG_LIB2FUNCS)
3f9b9702 944
07bb2c21 945libgcc.mk: config.status Makefile mklibgcc $(LIB2ADD) xgcc$(exeext)
3f9b9702 946 objext='$(objext)' \
947 OLDCC='$(OLDCC)' \
948 LIBGCC1='$(LIBGCC1)' \
949 LIB1FUNCS='$(LIB1FUNCS)' \
950 LIB1ASMFUNCS='$(LIB1ASMFUNCS)' \
951 LIB1FUNCS_EXTRA='$(LIB1FUNCS_EXTRA)' \
952 LIB2FUNCS='$(LIB2FUNCS)' \
953 LIB2FUNCS_EH='$(LIB2FUNCS_EH)' \
954 LIB2ADD='$(LIB2ADD)' \
955 FPBIT='$(FPBIT)' \
956 FPBIT_FUNCS='$(FPBIT_FUNCS)' \
957 DPBIT='$(DPBIT)' \
958 DPBIT_FUNCS='$(DPBIT_FUNCS)' \
959 MULTILIBS=`$(GCC_FOR_TARGET) --print-multi-lib` \
960 EXTRA_MULTILIB_PARTS='$(EXTRA_MULTILIB_PARTS)' \
961 $(SHELL) mklibgcc > tmp-libgcc.mk
2bd9055c 962 mv tmp-libgcc.mk libgcc.mk
963
964# All the things that might cause us to want to recompile bits of libgcc.
965LIBGCC_DEPS = $(GCC_PASSES) $(LANGUAGES) stmp-int-hdrs $(STMP_FIXPROTO) \
966 libgcc.mk $(srcdir)/libgcc1.c $(srcdir)/libgcc2.c $(CONFIG_H) \
967 $(MACHMODE_H) longlong.h frame.h gbl-ctors.h config.status \
968 stmp-int-hdrs tsystem.h $(FPBIT) $(DPBIT) $(LIB2ADD)
3f9b9702 969
2bd9055c 970libgcc.a: $(LIBGCC_DEPS)
3f9b9702 971 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
972 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
973 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
974 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
975 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
976 OLDCC="$(OLDCC)" CCLIBFLAGS="$(CCLIBFLAGS)" CFLAGS="$(CFLAGS)" \
977 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
978 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
979 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
980 INCLUDES="$(INCLUDES)" MAYBE_USE_COLLECT2="$(MAYBE_USE_COLLECT2)" \
981 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
ab956f4b 982 LIB1ASMSRC='$(LIB1ASMSRC)' \
3f9b9702 983 -f libgcc.mk all
32e6d418 984
f1ad3130 985# Use the genmultilib shell script to generate the information the gcc
986# driver program needs to select the library directory based on the
987# switches.
997d68fe 988multilib.h: s-mlib; @true
989s-mlib: $(srcdir)/genmultilib Makefile
3d97d965 990 $(SHELL) $(srcdir)/genmultilib \
991 "$(MULTILIB_OPTIONS)" \
992 "$(MULTILIB_DIRNAMES)" \
993 "$(MULTILIB_MATCHES)" \
994 "$(MULTILIB_EXCEPTIONS)" \
54518c3b 995 "$(MULTILIB_EXTRA_OPTS)" \
996 "$(MULTILIB_EXCLUSIONS)" > tmp-mlib.h
bbb1c53a 997 $(SHELL) $(srcdir)/move-if-change tmp-mlib.h multilib.h
997d68fe 998 touch s-mlib
f1ad3130 999
1000# Build multiple copies of libgcc.a, one for each target switch.
2bd9055c 1001stmp-multilib: $(LIBGCC_DEPS)
00075505 1002 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
3f9b9702 1003 HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
396c97db 1004 AR_FOR_TARGET="$(AR_FOR_TARGET)" \
aa787722 1005 AR_CREATE_FOR_TARGET="$(AR_CREATE_FOR_TARGET)" \
396c97db 1006 AR_FLAGS_FOR_TARGET="$(AR_FLAGS_FOR_TARGET)" \
3f9b9702 1007 OLDCC="$(OLDCC)" CCLIBFLAGS="$(CCLIBFLAGS)" CFLAGS="$(CFLAGS)" \
1008 RANLIB_FOR_TARGET="$(RANLIB_FOR_TARGET)" \
1009 RANLIB_TEST_FOR_TARGET="$(RANLIB_TEST_FOR_TARGET)" \
1010 LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" \
1011 INCLUDES="$(INCLUDES)" MAYBE_USE_COLLECT2="$(MAYBE_USE_COLLECT2)" \
1012 CONFIG_H="$(CONFIG_H)" MACHMODE_H="$(MACHMODE_H)" \
d4b91428 1013 LIB1ASMSRC='$(LIB1ASMSRC)' \
3f9b9702 1014 -f libgcc.mk all
1015 touch stmp-multilib
00075505 1016
32e6d418 1017# Compile two additional files that are linked with every program
6bcd7097 1018# linked using GCC on systems using COFF or ELF, for the sake of C++
1019# constructors.
ad87de1e 1020$(T)crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
069631e1 1021 defaults.h frame.h gbl-ctors.h stmp-int-hdrs tsystem.h
6efd403b 1022 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
fe0c5877 1023 -finhibit-size-directive -fno-inline-functions \
1024 -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
6efd403b 1025 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -o $(T)crtbegin$(objext)
cdc96909 1026
ad87de1e 1027$(T)crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
069631e1 1028 defaults.h frame.h gbl-ctors.h stmp-int-hdrs tsystem.h
6efd403b 1029 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
fe0c5877 1030 -finhibit-size-directive -fno-inline-functions \
1031 -fno-exceptions $(CRTSTUFF_T_CFLAGS) @inhibit_libc@ \
6efd403b 1032 -c $(srcdir)/crtstuff.c -DCRT_END -o $(T)crtend$(objext)
6bcd7097 1033
9e52652d 1034# These are versions of crtbegin and crtend for shared libraries.
1035$(T)crtbeginS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
1036 defaults.h frame.h gbl-ctors.h stmp-int-hdrs tsystem.h
1037 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
1038 -finhibit-size-directive -fno-inline-functions \
1039 -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) @inhibit_libc@ \
1040 -c $(srcdir)/crtstuff.c -DCRT_BEGIN -DCRTSTUFFS_O \
1041 -o $(T)crtbeginS$(objext)
6bcd7097 1042
9e52652d 1043$(T)crtendS.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) \
069631e1 1044 defaults.h frame.h gbl-ctors.h stmp-int-hdrs tsystem.h
9e52652d 1045 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(MULTILIB_CFLAGS) -g0 \
1046 -finhibit-size-directive -fno-inline-functions \
1047 -fno-exceptions $(CRTSTUFF_T_CFLAGS_S) @inhibit_libc@ \
1048 -c $(srcdir)/crtstuff.c -DCRT_END -DCRTSTUFFS_O \
1049 -o $(T)crtendS$(objext)
4d3c962c 1050
3f9b9702 1051# Compile the start modules crt0.o and mcrt0.o that are linked with
1052# every program
997d68fe 1053crt0.o: s-crt0 ; @true
1054mcrt0.o: s-crt0; @true
4d3c962c 1055
997d68fe 1056s-crt0: $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
4d3c962c 1057 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1058 -o crt0.o -c $(CRT0_S)
1059 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1060 -o mcrt0.o -c $(MCRT0_S)
997d68fe 1061 touch s-crt0
2e9d8ccf 1062#\f
32e6d418 1063# Compiling object files from source files.
1064
1065# Note that dependencies on obstack.h are not written
1066# because that file is not part of GCC.
32e6d418 1067
1068# C language specific files.
1069
769177ac 1070c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h $(GGC_H) \
476d81cc 1071 $(srcdir)/c-parse.h c-tree.h c-common.h input.h flags.h system.h \
1072 toplev.h output.h
32e6d418 1073 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
112e5dd0 1074$(srcdir)/c-parse.h: $(srcdir)/c-parse.c
1075$(srcdir)/c-parse.c: $(srcdir)/c-parse.y
9f8cd2f8 1076 cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o c-parse.c c-parse.y
0f557c81 1077$(srcdir)/c-parse.y: c-parse.in
04e167f4 1078 echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
d7c691fa 1079 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1080 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
04e167f4 1081 $(srcdir)/c-parse.in >>tmp-c-parse.y
bbb1c53a 1082 $(SHELL) $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
d7c691fa 1083
0f557c81 1084$(srcdir)/c-gperf.h: c-parse.gperf
bb905ef5 1085 gperf -L C -F ', 0, 0' -p -j1 -i 1 -g -o -t -G -N is_reserved_word \
ff559d95 1086 -k1,3,$$ $(srcdir)/c-parse.gperf >tmp-gperf.h || ( \
58f9db87 1087 echo "See $(website)/cvs.html#generated_files" >&2 ; \
ff559d95 1088 exit 1 )
bbb1c53a 1089 $(SHELL) $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h
6a4a0b58 1090
f7c44134 1091c-decl.o : c-decl.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \
61be438d 1092 c-common.h $(GGC_H) c-lex.h flags.h function.h output.h $(EXPR_H) \
6e6e5faa 1093 toplev.h defaults.h intl.h
72040e7e 1094c-typeck.o : c-typeck.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \
1095 flags.h intl.h output.h $(EXPR_H) $(RTL_H) toplev.h
f7c44134 1096c-lang.o : c-lang.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-common.h \
1097 $(GGC_H) c-lex.h toplev.h output.h function.h
405711de 1098c-lex.o : c-lex.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-lex.h c-tree.h \
72040e7e 1099 c-common.h $(srcdir)/c-parse.h $(srcdir)/c-gperf.h c-pragma.h input.h \
769177ac 1100 intl.h flags.h toplev.h output.h mbchar.h $(GGC_H)
72040e7e 1101c-aux-info.o : c-aux-info.c $(CONFIG_H) system.h $(TREE_H) c-tree.h \
1102 c-common.h flags.h toplev.h
c3ab7bd5 1103c-convert.o : c-convert.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h
304c5bf1 1104c-pragma.o: c-pragma.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) function.h \
769177ac 1105 defaults.h c-pragma.h toplev.h $(GGC_H)
405711de 1106c-iterate.o: c-iterate.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) c-tree.h \
72040e7e 1107 c-common.h flags.h toplev.h $(EXPR_H)
4a7d7a8b 1108mbchar.o: mbchar.c $(CONFIG_H) system.h mbchar.h
27f5edd1 1109graph.o: graph.c $(CONFIG_H) system.h toplev.h flags.h output.h $(RTL_H) \
e5bd1365 1110 function.h hard-reg-set.h $(BASIC_BLOCK_H) graph.h
d6cb6164 1111sbitmap.o: sbitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h \
1112 $(BASIC_BLOCK_H)
32e6d418 1113
c6221df9 1114COLLECT2_OBJS = collect2.o tlink.o hash.o intl.o underscore.o version.o
67ce0331 1115collect2$(exeext): $(COLLECT2_OBJS) $(LIBDEPS)
e77fd588 1116# Don't try modifying collect2 (aka ld) in place--it might be linking this.
62268150 1117 -rm -f collect2$(exeext)
be2828ce 1118 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(COLLECT2_OBJS) $(LIBS)
32e6d418 1119
be2828ce 1120collect2.o : collect2.c $(CONFIG_H) system.h gstab.h intl.h \
8a5b87ad 1121 $(OBSTACK_H) $(DEMANGLE_H) collect2.h version.h
5e03c63d 1122 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
67cb4bc1 1123 -DTARGET_MACHINE=\"$(target_alias)\" $(MAYBE_USE_COLLECT2) \
5e03c63d 1124 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
32e6d418 1125
6e6e5faa 1126tlink.o: tlink.c $(DEMANGLE_H) hash.h $(CONFIG_H) system.h collect2.h intl.h
c3ab7bd5 1127hash.o: hash.c hash.h system.h toplev.h
cc895f11 1128
4a7d7a8b 1129vfprintf.o: $(srcdir)/../libiberty/vfprintf.c $(CONFIG_H) system.h
099377d8 1130 rm -f vfprintf.c
1131 $(LN_S) $(srcdir)/../libiberty/vfprintf.c vfprintf.c
1132 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) vfprintf.c
1133
a5b1863e 1134splay-tree.o: $(srcdir)/../libiberty/splay-tree.c \
4a7d7a8b 1135 $(srcdir)/../include/splay-tree.h $(srcdir)/../include/libiberty.h
a5b1863e 1136 rm -f splay-tree.c
1137 $(LN_S) $(srcdir)/../libiberty/splay-tree.c splay-tree.c
1138 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) splay-tree.c
1139
997d68fe 1140underscore.c: s-under ; @true
7306ddcf 1141
997d68fe 1142s-under: $(GCC_PASSES)
c20b28d5 1143 echo "int xxy_us_dummy;" >tmp-dum.c
1144 $(GCC_FOR_TARGET) -S tmp-dum.c
1145 echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c
1146 if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
1147 echo "int prepends_underscore = 1;" >>tmp-under.c; \
d2f0b724 1148 else \
c20b28d5 1149 echo "int prepends_underscore = 0;" >>tmp-under.c; \
d2f0b724 1150 fi
bbb1c53a 1151 $(SHELL) $(srcdir)/move-if-change tmp-under.c underscore.c
c20b28d5 1152 -rm -f tmp-dum.c tmp-dum.s
997d68fe 1153 touch s-under
d2f0b724 1154
32e6d418 1155# A file used by all variants of C.
1156
988fc1d1 1157c-common.o : c-common.c $(CONFIG_H) system.h $(TREE_H) \
769177ac 1158 c-common.h flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
74647769 1159 $(EXPR_H)
32e6d418 1160
5c3247a9 1161c-semantics.o : c-semantics.c $(CONFIG_H) system.h $(TREE_H) c-tree.h c-lex.h \
1162 c-common.h flags.h toplev.h output.h c-pragma.h $(RTL_H) $(GGC_H) \
1163 $(EXPR_H)
1164
32e6d418 1165# Language-independent files.
1166
4813bdd4 1167DRIVER_DEFINES = \
b155ba2f 1168 -DSTANDARD_STARTFILE_PREFIX=\"$(unlibsubdir)/\" \
c6396a0b 1169 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
7df9e578 1170 -DDEFAULT_TARGET_VERSION=\"$(version)\" \
67cb4bc1 1171 -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
b155ba2f 1172 -DSTANDARD_BINDIR_PREFIX=\"$(bindir)/\" \
1173 -DTOOLDIR_BASE_PREFIX=\"$(unlibsubdir)/../\"
be2828ce 1174gcc.o: gcc.c $(CONFIG_H) system.h intl.h multilib.h \
4f5e65d7 1175 Makefile $(lang_specs_files) prefix.h $(GCC_H)
4813bdd4 1176 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1177 $(DRIVER_DEFINES) \
32e6d418 1178 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
1179
4f5e65d7 1180gccspec.o: gccspec.c $(CONFIG_H) system.h $(GCC_H)
1181cppspec.o: cppspec.c $(CONFIG_H) system.h $(GCC_H)
cdf76fe2 1182
3e207e38 1183tree-check.h: s-check ; @true
1051d196 1184s-check : gencheck $(srcdir)/move-if-change
3e207e38 1185 ./gencheck > tmp-check.h
bbb1c53a 1186 $(SHELL) $(srcdir)/move-if-change tmp-check.h tree-check.h
3e207e38 1187 touch s-check
1188
60239181 1189gencheck : gencheck.o $(HOST_LIBDEPS)
3e207e38 1190 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1191 gencheck.o $(HOST_LIBS)
1192
60239181 1193gencheck.o : gencheck.c gencheck.h tree.def $(CONFIG_H) hconfig.h system.h \
1194 $(lang_tree_files)
be2828ce 1195 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1196 $(srcdir)/gencheck.c
580b113f 1197
32e6d418 1198dumpvers: dumpvers.c
1199
4f5e65d7 1200version.o: version.c version.h
05513b45 1201
6374999a 1202ggc-common.o: ggc-common.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
769177ac 1203 flags.h $(GGC_H) varray.h hash.h
bebb7b68 1204
6374999a 1205ggc-simple.o: ggc-simple.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
553e1559 1206 $(GGC_H) varray.h $(TIMEVAR_H)
05513b45 1207
90856340 1208ggc-page.o: ggc-page.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h toplev.h \
553e1559 1209 $(GGC_H) varray.h $(TIMEVAR_H)
911ab6b9 1210
769177ac 1211ggc-none.o: ggc-none.c $(CONFIG_H) $(RTL_H) $(GGC_H)
05513b45 1212
769177ac 1213ggc-callbacks.o: ggc-callbacks.c $(CONFIG_H) $(RTL_H) $(TREE_H) $(GGC_H)
fa8477c9 1214
7b6bbd12 1215obstack.o: $(srcdir)/../libiberty/obstack.c $(CONFIG_H)
1216 rm -f obstack.c
1217 $(LN_S) $(srcdir)/../libiberty/obstack.c obstack.c
1218 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) obstack.c
1219
7bcdc3c7 1220prefix.o: prefix.c $(CONFIG_H) system.h Makefile prefix.h
0dbd1c74 1221 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1222 -DPREFIX=\"$(prefix)\" \
1223 -c `echo $(srcdir)/prefix.c | sed 's,^\./,,'`
32e6d418 1224
7014838c 1225convert.o: convert.c $(CONFIG_H) system.h $(TREE_H) flags.h convert.h toplev.h
beb68ac1 1226
a7b0c170 1227tree.o : tree.c $(CONFIG_H) system.h $(TREE_H) flags.h function.h toplev.h \
e772a198 1228 $(GGC_H) $(HASHTAB_H) output.h
769177ac 1229print-tree.o : print-tree.c $(CONFIG_H) system.h $(TREE_H) $(GGC_H)
c091e5a4 1230stor-layout.o : stor-layout.c $(CONFIG_H) system.h $(TREE_H) flags.h \
769177ac 1231 function.h $(EXPR_H) $(RTL_H) toplev.h $(GGC_H)
0f9685e4 1232fold-const.o : fold-const.c $(CONFIG_H) system.h $(TREE_H) flags.h toplev.h \
993ca5a5 1233 $(RTL_H) ggc.h
1234diagnostic.o : diagnostic.c diagnostic.h \
1235 $(CONFIG_H) system.h $(TREE_H) $(RTL_H) tm_p.h flags.h \
1236 $(GGC_H) input.h insn-attr.h insn-codes.h insn-config.h toplev.h intl.h
0a893c29 1237toplev.o : toplev.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) function.h \
990339dd 1238 flags.h input.h insn-attr.h xcoffout.h defaults.h output.h diagnostic.h \
be2828ce 1239 insn-codes.h insn-config.h intl.h $(RECOG_H) Makefile toplev.h dwarfout.h \
d6cb6164 1240 dwarf2out.h sdbout.h dbxout.h $(EXPR_H) hard-reg-set.h $(BASIC_BLOCK_H) \
1241 graph.h loop.h except.h regs.h $(TIMEVAR_H) $(lang_options_files)
b600804e 1242 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \
67cb4bc1 1243 -DTARGET_NAME=\"$(target_alias)\" \
fe918d35 1244 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
32e6d418 1245
769177ac 1246rtl.o : rtl.c $(CONFIG_H) system.h $(RTL_H) bitmap.h $(GGC_H) toplev.h
32e6d418 1247
d6cb6164 1248print-rtl.o : print-rtl.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h \
1249 $(BASIC_BLOCK_H)
405711de 1250rtlanal.o : rtlanal.c $(CONFIG_H) system.h $(RTL_H)
04b58880 1251errors.o : errors.c $(CONFIG_H) system.h errors.h
32e6d418 1252
405711de 1253varasm.o : varasm.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h \
d6ff8d83 1254 function.h defaults.h $(EXPR_H) hard-reg-set.h $(REGS_H) \
769177ac 1255 xcoffout.h output.h c-pragma.h toplev.h dbxout.h sdbout.h $(GGC_H)
405711de 1256function.o : function.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
d6ff8d83 1257 function.h insn-flags.h insn-codes.h $(EXPR_H) $(REGS_H) hard-reg-set.h \
769177ac 1258 insn-config.h $(RECOG_H) output.h toplev.h except.h hash.h $(GGC_H)
405711de 1259stmt.o : stmt.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
ae262a47 1260 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h $(EXPR_H) except.h \
769177ac 1261 $(LOOP_H) $(RECOG_H) toplev.h output.h varray.h $(GGC_H)
405711de 1262except.o : except.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
d6ff8d83 1263 function.h insn-flags.h $(EXPR_H) $(REGS_H) hard-reg-set.h \
769177ac 1264 insn-config.h $(RECOG_H) output.h except.h toplev.h intl.h $(GGC_H)
405711de 1265expr.o : expr.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h function.h \
d3b64f2d 1266 $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h $(RECOG_H) \
521dd524 1267 output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h except.h \
6702c250 1268 reload.h $(GGC_H) intl.h
53800dbe 1269builtins.o : builtins.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1270 function.h $(REGS_H) insn-flags.h insn-codes.h $(EXPR_H) insn-config.h \
1271 $(RECOG_H) output.h typeclass.h hard-reg-set.h toplev.h hard-reg-set.h \
1272 except.h
ae262a47 1273calls.o : calls.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h $(EXPR_H) \
0b8eccec 1274 insn-flags.h $(REGS_H) toplev.h output.h function.h $(TIMEVAR_H)
405711de 1275expmed.o : expmed.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
d3b64f2d 1276 insn-flags.h insn-config.h insn-codes.h $(EXPR_H) $(RECOG_H) real.h toplev.h
405711de 1277explow.o : explow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
d3b64f2d 1278 hard-reg-set.h insn-config.h $(EXPR_H) $(RECOG_H) insn-flags.h \
a5fb14bd 1279 insn-codes.h toplev.h function.h
405711de 1280optabs.o : optabs.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
d3b64f2d 1281 insn-flags.h insn-config.h insn-codes.h $(EXPR_H) $(RECOG_H) reload.h \
769177ac 1282 toplev.h $(GGC_H) real.h
d6ff8d83 1283dbxout.o : dbxout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h $(REGS_H) \
0e93a6ac 1284 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h dbxout.h \
4f5e65d7 1285 toplev.h
405711de 1286sdbout.o : sdbout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) flags.h except.h \
d6ff8d83 1287 function.h $(EXPR_H) output.h hard-reg-set.h $(REGS_H) defaults.h real.h \
8a5b87ad 1288 insn-config.h $(OBSTACK_H) xcoffout.h c-pragma.h \
7b6bbd12 1289 sdbout.h toplev.h
405711de 1290dwarfout.o : dwarfout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf.h \
de2f3039 1291 flags.h insn-config.h reload.h output.h defaults.h toplev.h dwarfout.h
405711de 1292dwarf2out.o : dwarf2out.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) dwarf2.h \
ae262a47 1293 flags.h insn-config.h reload.h output.h defaults.h \
eacbfaac 1294 hard-reg-set.h $(REGS_H) $(EXPR_H) toplev.h dwarf2out.h varray.h \
769177ac 1295 $(GGC_H) except.h
405711de 1296xcoffout.o : xcoffout.c $(CONFIG_H) system.h $(TREE_H) $(RTL_H) xcoffout.h \
769177ac 1297 flags.h toplev.h output.h dbxout.h $(GGC_H)
405711de 1298emit-rtl.o : emit-rtl.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
769177ac 1299 function.h $(REGS_H) insn-config.h $(RECOG_H) real.h $(GGC_H) \
73f5c1e3 1300 $(EXPR_H) $(srcdir)/../include/obstack.h hard-reg-set.h bitmap.h toplev.h \
1301 $(HASHTAB_H)
c3ab7bd5 1302real.o : real.c $(CONFIG_H) system.h $(TREE_H) toplev.h
405711de 1303integrate.o : integrate.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
395adca1 1304 $(INTEGRATE_H) insn-flags.h insn-config.h $(EXPR_H) real.h $(REGS_H) \
a4d05baf 1305 intl.h function.h output.h $(RECOG_H) except.h toplev.h $(LOOP_H)
d6ff8d83 1306jump.o : jump.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h $(REGS_H) \
0a893c29 1307 insn-config.h insn-flags.h $(RECOG_H) $(EXPR_H) real.h except.h function.h \
fe3b47be 1308 toplev.h insn-attr.h
32e6d418 1309
af21a202 1310simplify-rtx.o : simplify-rtx.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) \
1311 hard-reg-set.h flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h \
8a5b87ad 1312 output.h function.h cselib.h ggc.h $(OBSTACK_H)
d6ff8d83 1313cse.o : cse.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
769177ac 1314 real.h insn-config.h $(RECOG_H) $(EXPR_H) toplev.h output.h function.h $(GGC_H)
d3b64f2d 1315gcse.o : gcse.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h \
1316 flags.h real.h insn-config.h $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H) \
0a893c29 1317 function.h output.h toplev.h
60ecc450 1318sibcall.o : sibcall.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) function.h \
1319 hard-reg-set.h flags.h insn-config.h $(RECOG_H) $(BASIC_BLOCK_H)
fb11422a 1320resource.o : resource.c $(CONFIG_H) $(RTL_H) hard-reg-set.h system.h \
d8c9779c 1321 $(BASIC_BLOCK_H) $(REGS_H) flags.h output.h resource.h function.h toplev.h \
05806416 1322 insn-attr.h except.h
e48ba7af 1323lcm.o : lcm.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) hard-reg-set.h flags.h \
18862b5a 1324 real.h insn-config.h insn-attr.h $(RECOG_H) $(EXPR_H) $(BASIC_BLOCK_H)
dadde703 1325ssa.o : ssa.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) $(BASIC_BLOCK_H) \
1326 output.h insn-config.h
54932b4d 1327conflict.o : conflict.c $(CONFIG_H) system.h $(OBSTACK_H) $(HASHTAB_H) \
d6cb6164 1328 $(RTL_H) hard-reg-set.h $(BASIC_BLOCK_H)
1329profile.o : profile.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1330 insn-flags.h insn-config.h output.h $(REGS_H) $(EXPR_H) function.h \
1331 gcov-io.h toplev.h $(GGC_H) hard-reg-set.h $(BASIC_BLOCK_H)
a4d05baf 1332loop.o : loop.c $(CONFIG_H) system.h $(RTL_H) flags.h $(LOOP_H) insn-config.h \
d6ff8d83 1333 insn-flags.h $(REGS_H) hard-reg-set.h $(RECOG_H) $(EXPR_H) real.h \
1617c276 1334 $(BASIC_BLOCK_H) function.h toplev.h varray.h except.h cselib.h
0a893c29 1335unroll.o : unroll.c $(CONFIG_H) system.h $(RTL_H) insn-config.h function.h \
395adca1 1336 $(INTEGRATE_H) $(REGS_H) $(RECOG_H) flags.h $(EXPR_H) $(LOOP_H) toplev.h \
d6cb6164 1337 hard-reg-set.h varray.h $(BASIC_BLOCK_H)
2d9b9dfe 1338flow.o : flow.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h insn-config.h \
952b0f82 1339 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h $(RECOG_H) \
c98bac56 1340 insn-flags.h function.h except.h $(EXPR_H)
0a893c29 1341combine.o : combine.c $(CONFIG_H) system.h $(RTL_H) flags.h function.h \
d6ff8d83 1342 insn-config.h insn-flags.h insn-codes.h insn-attr.h $(REGS_H) $(EXPR_H) \
ce1fd7fc 1343 $(BASIC_BLOCK_H) $(RECOG_H) real.h hard-reg-set.h toplev.h
405711de 1344regclass.o : regclass.c $(CONFIG_H) system.h $(RTL_H) hard-reg-set.h flags.h \
0a893c29 1345 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h $(RECOG_H) reload.h real.h \
769177ac 1346 toplev.h function.h output.h $(GGC_H)
405711de 1347local-alloc.o : local-alloc.c $(CONFIG_H) system.h $(RTL_H) flags.h \
0a893c29 1348 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h $(RECOG_H) \
1349 output.h function.h insn-attr.h toplev.h
405711de 1350bitmap.o : bitmap.c $(CONFIG_H) system.h $(RTL_H) flags.h $(BASIC_BLOCK_H) \
d6ff8d83 1351 $(REGS_H)
0a893c29 1352global.o : global.c $(CONFIG_H) system.h $(RTL_H) flags.h reload.h function.h \
d6ff8d83 1353 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h insn-config.h output.h toplev.h
1354varray.o : varray.c $(CONFIG_H) system.h varray.h $(RTL_H) $(TREE_H) bitmap.h
ae262a47 1355reload.o : reload.c $(CONFIG_H) system.h $(RTL_H) flags.h output.h $(EXPR_H) \
d6ff8d83 1356 reload.h $(RECOG_H) hard-reg-set.h insn-config.h insn-codes.h $(REGS_H) \
0a893c29 1357 function.h real.h toplev.h
ae262a47 1358reload1.o : reload1.c $(CONFIG_H) system.h $(RTL_H) real.h flags.h $(EXPR_H) \
d6ff8d83 1359 reload.h $(REGS_H) hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
1617c276 1360 $(BASIC_BLOCK_H) $(RECOG_H) output.h function.h toplev.h cselib.h
405711de 1361caller-save.o : caller-save.c $(CONFIG_H) system.h $(RTL_H) flags.h \
0a893c29 1362 $(REGS_H) hard-reg-set.h insn-config.h $(BASIC_BLOCK_H) function.h \
ae262a47 1363 $(RECOG_H) reload.h $(EXPR_H) toplev.h
405711de 1364reorg.o : reorg.c $(CONFIG_H) system.h $(RTL_H) conditions.h hard-reg-set.h \
d3b64f2d 1365 $(BASIC_BLOCK_H) $(REGS_H) insn-config.h insn-attr.h insn-flags.h \
0a893c29 1366 $(RECOG_H) function.h flags.h output.h $(EXPR_H) toplev.h
308704fb 1367alias.o : alias.c $(CONFIG_H) system.h $(RTL_H) flags.h hard-reg-set.h \
769177ac 1368 $(REGS_H) toplev.h output.h $(EXPR_H) insn-flags.h $(GGC_H) function.h \
c0af8599 1369 cselib.h $(TREE_H)
405711de 1370regmove.o : regmove.c $(CONFIG_H) system.h $(RTL_H) insn-config.h \
0a893c29 1371 $(RECOG_H) output.h reload.h $(REGS_H) hard-reg-set.h flags.h function.h \
ae262a47 1372 $(EXPR_H) insn-flags.h $(BASIC_BLOCK_H) toplev.h
5701cb15 1373haifa-sched.o : haifa-sched.c $(CONFIG_H) system.h $(RTL_H) \
0a893c29 1374 $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h flags.h insn-config.h function.h \
952b0f82 1375 insn-attr.h toplev.h $(RECOG_H) except.h
be2828ce 1376final.o : final.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h intl.h \
0a893c29 1377 $(REGS_H) $(RECOG_H) conditions.h insn-config.h insn-attr.h function.h \
1378 real.h output.h hard-reg-set.h insn-flags.h insn-codes.h gstab.h except.h \
1379 xcoffout.h defaults.h toplev.h reload.h dwarfout.h dwarf2out.h sdbout.h \
74b0991d 1380 dbxout.h $(BASIC_BLOCK_H)
f6b12c3a 1381recog.o : recog.c $(CONFIG_H) system.h $(RTL_H) function.h $(BASIC_BLOCK_H) \
d6ff8d83 1382 $(REGS_H) $(RECOG_H) hard-reg-set.h flags.h insn-config.h insn-attr.h \
3e9f1237 1383 insn-flags.h insn-codes.h real.h toplev.h output.h
952b0f82 1384reg-stack.o : reg-stack.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) $(RECOG_H) \
0a893c29 1385 $(REGS_H) hard-reg-set.h flags.h insn-config.h insn-flags.h toplev.h \
82575fa7 1386 varray.h function.h
59423b59 1387predict.o: predict.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1388 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1e53290d 1389 $(RECOG_H) insn-flags.h function.h except.h $(EXPR_H)
769177ac 1390lists.o: lists.c $(CONFIG_H) system.h toplev.h $(RTL_H) $(GGC_H)
a6540cbf 1391bb-reorder.o : bb-reorder.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1392 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h toplev.h \
1393 $(RECOG_H) insn-flags.h function.h except.h $(EXPR_H)
6e6e5faa 1394timevar.o : timevar.c $(CONFIG_H) system.h $(TIMEVAR_H) flags.h intl.h
b9a06185 1395regrename.o : regrename.c $(CONFIG_H) system.h $(RTL_H) $(TREE_H) flags.h \
1396 insn-config.h $(BASIC_BLOCK_H) $(REGS_H) hard-reg-set.h output.h \
1397 $(RECOG_H) function.h resource.h
0bb604ca 1398ifcvt.o : ifcvt.c $(CONFIG_H) system.h $(RTL_H) $(REGS_H) \
1399 flags.h insn-config.h function.h $(RECOG_H) $(BASIC_BLOCK_H) $(EXPR_H) \
1400 output.h
769177ac 1401$(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) $(GGC_H) \
d6ff8d83 1402 $(RTL_H) $(REGS_H) hard-reg-set.h real.h insn-config.h conditions.h \
0a893c29 1403 insn-flags.h output.h insn-attr.h insn-codes.h system.h toplev.h function.h
b600804e 1404 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(out_file)
32e6d418 1405
f213fcf9 1406# Build auxiliary files that support ecoff format.
1407mips-tfile: mips-tfile.o version.o $(LIBDEPS)
62268150 1408 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
f213fcf9 1409
56fc5f02 1410mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H) system.h version.h
f213fcf9 1411
1412mips-tdump: mips-tdump.o version.o $(LIBDEPS)
62268150 1413 $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
f213fcf9 1414
47003e2a 1415mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H) system.h
f213fcf9 1416
636b182c 1417# Build file to support OSF/rose half-pic format.
1486870d 1418halfpic.o: halfpic.c $(CONFIG_H) $(RTL_H) $(TREE_H) system.h
636b182c 1419
32e6d418 1420# Normally this target is not used; but it is used if you
1421# define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
1422# from the GNU Emacs distribution.
099377d8 1423alloca.o: $(srcdir)/../libiberty/alloca.c
1424 rm -f alloca.c
1425 $(LN_S) $(srcdir)/../libiberty/alloca.c alloca.c
32e6d418 1426 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
099377d8 1427 -c `echo alloca.c | sed 's,^\./,,'`
32e6d418 1428 $(ALLOCA_FINISH)
2e9d8ccf 1429#\f
c6221df9 1430# Generate header and source files from the machine description,
32e6d418 1431# and compile them.
1432
1433.PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
1434 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1435 insn-attr.h insn-attrtab.c
1436
1437# The following pair of rules has this effect:
1438# genconfig is run only if the md has changed since genconfig was last run;
1439# but the file insn-config.h is touched only when its contents actually change.
1440
1441# Each of the other insn-* files is handled by a similar pair of rules.
1442
3f69fed5 1443# This causes an anomaly in the results of make -n
997d68fe 1444# because insn-* is older than s-*
3f69fed5 1445# and thus make -n thinks that insn-* will be updated
1446# and force recompilation of things that depend on it.
9ac790c5 1447# We use move-if-change precisely to avoid such recompilation.
3f69fed5 1448# But there is no way to teach make -n that it will be avoided.
1449
32e6d418 1450# Each of the insn-*.[ch] rules has a semicolon at the end,
1451# for otherwise the system Make on SunOS 4.1 never tries
876dc5b0 1452# to recompile insn-*.o. To avoid problems and extra noise from
1453# versions of make which don't like empty commands (nothing after the
1454# trailing `;'), we call true for each.
32e6d418 1455
997d68fe 1456insn-config.h: s-config ; @true
1457s-config : $(md_file) genconfig $(srcdir)/move-if-change
c20b28d5 1458 ./genconfig $(md_file) > tmp-config.h
bbb1c53a 1459 $(SHELL) $(srcdir)/move-if-change tmp-config.h insn-config.h
997d68fe 1460 touch s-config
32e6d418 1461
997d68fe 1462insn-flags.h: s-flags ; @true
1463s-flags : $(md_file) genflags $(srcdir)/move-if-change
c20b28d5 1464 ./genflags $(md_file) > tmp-flags.h
bbb1c53a 1465 $(SHELL) $(srcdir)/move-if-change tmp-flags.h insn-flags.h
997d68fe 1466 touch s-flags
32e6d418 1467
997d68fe 1468insn-codes.h: s-codes ; @true
1469s-codes : $(md_file) gencodes $(srcdir)/move-if-change
c20b28d5 1470 ./gencodes $(md_file) > tmp-codes.h
bbb1c53a 1471 $(SHELL) $(srcdir)/move-if-change tmp-codes.h insn-codes.h
997d68fe 1472 touch s-codes
32e6d418 1473
ae262a47 1474insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) $(EXPR_H) real.h output.h \
952b0f82 1475 insn-config.h insn-flags.h insn-codes.h system.h reload.h $(RECOG_H) \
1476 function.h flags.h hard-reg-set.h resource.h
32e6d418 1477 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1478
997d68fe 1479insn-emit.c: s-emit ; @true
1480s-emit : $(md_file) genemit $(srcdir)/move-if-change
c20b28d5 1481 ./genemit $(md_file) > tmp-emit.c
bbb1c53a 1482 $(SHELL) $(srcdir)/move-if-change tmp-emit.c insn-emit.c
997d68fe 1483 touch s-emit
32e6d418 1484
ad87de1e 1485insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h $(RECOG_H) \
5bcc7f1f 1486 real.h output.h flags.h system.h function.h hard-reg-set.h resource.h
32e6d418 1487 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1488
997d68fe 1489insn-recog.c: s-recog ; @true
1490s-recog : $(md_file) genrecog $(srcdir)/move-if-change
c20b28d5 1491 ./genrecog $(md_file) > tmp-recog.c
bbb1c53a 1492 $(SHELL) $(srcdir)/move-if-change tmp-recog.c insn-recog.c
997d68fe 1493 touch s-recog
32e6d418 1494
bdb66cef 1495insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
ae262a47 1496 insn-config.h flags.h $(RECOG_H) $(EXPR_H) reload.h system.h
bdb66cef 1497 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1498
997d68fe 1499insn-opinit.c: s-opinit ; @true
1500s-opinit : $(md_file) genopinit $(srcdir)/move-if-change
c20b28d5 1501 ./genopinit $(md_file) > tmp-opinit.c
bbb1c53a 1502 $(SHELL) $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
997d68fe 1503 touch s-opinit
bdb66cef 1504
5d07813e 1505insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H) system.h toplev.h \
952b0f82 1506 insn-config.h $(RECOG_H)
32e6d418 1507 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1508
997d68fe 1509insn-extract.c: s-extract ; @true
1510s-extract : $(md_file) genextract $(srcdir)/move-if-change
c20b28d5 1511 ./genextract $(md_file) > tmp-extract.c
bbb1c53a 1512 $(SHELL) $(srcdir)/move-if-change tmp-extract.c insn-extract.c
997d68fe 1513 touch s-extract
32e6d418 1514
4063e82c 1515insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) $(REGS_H) output.h real.h \
952b0f82 1516 system.h insn-config.h $(RECOG_H) except.h function.h
32e6d418 1517 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1518
997d68fe 1519insn-peep.c: s-peep ; @true
1520s-peep : $(md_file) genpeep $(srcdir)/move-if-change
c20b28d5 1521 ./genpeep $(md_file) > tmp-peep.c
bbb1c53a 1522 $(SHELL) $(srcdir)/move-if-change tmp-peep.c insn-peep.c
997d68fe 1523 touch s-peep
32e6d418 1524
74273693 1525insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) $(REGS_H) real.h \
952b0f82 1526 output.h insn-attr.h insn-config.h system.h toplev.h $(RECOG_H)
32e6d418 1527 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1528
997d68fe 1529insn-attr.h: s-attr ; @true
1530s-attr : $(md_file) genattr $(srcdir)/move-if-change
c20b28d5 1531 ./genattr $(md_file) > tmp-attr.h
bbb1c53a 1532 $(SHELL) $(srcdir)/move-if-change tmp-attr.h insn-attr.h
997d68fe 1533 touch s-attr
32e6d418 1534
997d68fe 1535insn-attrtab.c: s-attrtab ; @true
1536s-attrtab : $(md_file) genattrtab $(srcdir)/move-if-change
44981bc7 1537 ./genattrtab $(md_file) > tmp-attrtab.c
bbb1c53a 1538 $(SHELL) $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
997d68fe 1539 touch s-attrtab
32e6d418 1540
769177ac 1541insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) $(GGC_H) $(REGS_H) real.h \
bde3a957 1542 conditions.h hard-reg-set.h insn-config.h insn-flags.h insn-attr.h \
1543 output.h $(RECOG_H) function.h insn-codes.h system.h toplev.h flags.h
32e6d418 1544 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1545
997d68fe 1546insn-output.c: s-output ; @true
1547s-output : $(md_file) genoutput $(srcdir)/move-if-change
c20b28d5 1548 ./genoutput $(md_file) > tmp-output.c
bbb1c53a 1549 $(SHELL) $(srcdir)/move-if-change tmp-output.c insn-output.c
997d68fe 1550 touch s-output
3ad7bb1c 1551
769177ac 1552genrtl.o : genrtl.c $(CONFIG_H) $(RTL_H) system.h $(GGC_H)
997d68fe 1553genrtl.c genrtl.h : s-genrtl
7cc452c1 1554 @true # force gnu make to recheck modification times.
1555
997d68fe 1556s-genrtl: gengenrtl $(srcdir)/move-if-change $(RTL_BASE_H)
7014838c 1557 ./gengenrtl -h >tmp-genrtl.h
bbb1c53a 1558 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.h genrtl.h
7014838c 1559 ./gengenrtl >tmp-genrtl.c
bbb1c53a 1560 $(SHELL) $(srcdir)/move-if-change tmp-genrtl.c genrtl.c
997d68fe 1561 touch s-genrtl
2e9d8ccf 1562#\f
32e6d418 1563# Compile the programs that generate insn-* from the machine description.
1564# They are compiled with $(HOST_CC), and associated libraries,
1565# since they need to run on this machine
1566# even if GCC is being compiled to run on some other machine.
1567
1568# $(CONFIG_H) is omitted from the deps of the gen*.o
c6221df9 1569# because these programs don't really depend on anything
32e6d418 1570# about the target machine. They do depend on config.h itself,
1571# since that describes the host machine.
1572
89e36a04 1573# Pass the md file through cpp if the target requests it.
2c352995 1574$(MD_FILE): $(MD_DEPS)
1575 rm -f $@
c20b28d5 1576 $(MD_CPP) $(MD_CPPFLAGS) $(md_file) | sed 's/^# /; /g' > tmp-$@
c92e16d4 1577 mv tmp-$@ $@
89e36a04 1578
96d905e5 1579gensupport.o: gensupport.c $(RTL_H) $(OBSTACK_H) system.h errors.h gensupport.h
85c33ee1 1580 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gensupport.c
96d905e5 1581
04b58880 1582genconfig : genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1583 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1584 genconfig.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1585
96d905e5 1586genconfig.o : genconfig.c $(RTL_H) $(build_xm_file) \
1587 system.h errors.h gensupport.h
32e6d418 1588 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1589
04b58880 1590genflags : genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1591 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1592 genflags.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1593
96d905e5 1594genflags.o : genflags.c $(RTL_H) $(OBSTACK_H) $(build_xm_file) \
1595 system.h errors.h gensupport.h
32e6d418 1596 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1597
04b58880 1598gencodes : gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1599 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1600 gencodes.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1601
96d905e5 1602gencodes.o : gencodes.c $(RTL_H) $(build_xm_file) \
1603 system.h errors.h gensupport.h
32e6d418 1604 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1605
04b58880 1606genemit : genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1607 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1608 genemit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1609
96d905e5 1610genemit.o : genemit.c $(RTL_H) $(build_xm_file) system.h errors.h gensupport.h
32e6d418 1611 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1612
04b58880 1613genopinit : genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1614 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1615 genopinit.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
bdb66cef 1616
96d905e5 1617genopinit.o : genopinit.c $(RTL_H) $(build_xm_file) \
1618 system.h errors.h gensupport.h
bdb66cef 1619 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1620
04b58880 1621genrecog : genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1622 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1623 genrecog.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1624
96d905e5 1625genrecog.o : genrecog.c $(RTL_H) $(build_xm_file) \
1626 system.h errors.h gensupport.h
1627 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
04b58880 1628genextract : genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1629 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1630 genextract.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1631
96d905e5 1632genextract.o : genextract.c $(RTL_H) $(build_xm_file) \
1633 system.h insn-config.h errors.h gensupport.h
32e6d418 1634 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1635
04b58880 1636genpeep : genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1637 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1638 genpeep.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1639
96d905e5 1640genpeep.o : genpeep.c $(RTL_H) $(build_xm_file) system.h errors.h gensupport.h
32e6d418 1641 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1642
04b58880 1643genattr : genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1644 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1645 genattr.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1646
96d905e5 1647genattr.o : genattr.c $(RTL_H) $(build_xm_file) system.h errors.h gensupport.h
32e6d418 1648 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1649
140cb7e4 1650genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1651 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
140cb7e4 1652 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1653
96d905e5 1654genattrtab.o : genattrtab.c $(RTL_H) $(OBSTACK_H) $(build_xm_file) \
1655 system.h errors.h $(GGC_H) gensupport.h
32e6d418 1656 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1657
04b58880 1658genoutput : genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBDEPS)
62268150 1659 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
04b58880 1660 genoutput.o $(HOST_RTL) $(HOST_PRINT) $(HOST_ERRORS) $(HOST_LIBS)
32e6d418 1661
96d905e5 1662genoutput.o : genoutput.c $(RTL_H) $(build_xm_file) \
1663 system.h errors.h gensupport.h
32e6d418 1664 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
3ad7bb1c 1665
1666gengenrtl : gengenrtl.o $(HOST_LIBDEPS)
1667 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1668 gengenrtl.o $(HOST_LIBS)
1669
952b0f82 1670gengenrtl.o : gengenrtl.c $(RTL_BASE_H) system.h real.h
3ad7bb1c 1671 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gengenrtl.c
2e9d8ccf 1672#\f
32e6d418 1673# Compile the libraries to be used by gen*.
1674# If we are not cross-building, gen* use the same .o's that cc1 will use,
1675# and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1676# with the rules for rtl.o, alloca.o, etc.
b38d33a3 1677$(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) system.h $(RTL_H) \
769177ac 1678 bitmap.h $(GGC_H) toplev.h
32e6d418 1679 rm -f $(HOST_PREFIX)rtl.c
e77fd588 1680 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
32e6d418 1681 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1682
f6b12c3a 1683$(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) \
1684 $(RTL_H) $(BASIC_BLOCK_H) system.h
262d46de 1685 rm -f $(HOST_PREFIX)print-rtl.c
e77fd588 1686 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
262d46de 1687 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1688
a3426c4c 1689$(HOST_PREFIX_1)bitmap.o: $(srcdir)/bitmap.c $(CONFIG_H) system.h $(RTL_H) \
d6cb6164 1690 flags.h bitmap.h
a3426c4c 1691 rm -f $(HOST_PREFIX)bitmap.c
1692 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/bitmap.c > $(HOST_PREFIX)bitmap.c
1693 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)bitmap.c
1694
b38d33a3 1695$(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) system.h $(RTL_H)
32e6d418 1696 rm -f $(HOST_PREFIX)rtlanal.c
e77fd588 1697 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
32e6d418 1698 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1699
099377d8 1700$(HOST_PREFIX_1)alloca.o: $(srcdir)/../libiberty/alloca.c
32e6d418 1701 rm -f $(HOST_PREFIX)alloca.c
099377d8 1702 $(LN_S) $(srcdir)/../libiberty/alloca.c $(HOST_PREFIX)alloca.c
32e6d418 1703 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1704
b38d33a3 1705$(HOST_PREFIX_1)obstack.o: $(srcdir)/../libiberty/obstack.c $(CONFIG_H)
32e6d418 1706 rm -f $(HOST_PREFIX)obstack.c
7b6bbd12 1707 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/../libiberty/obstack.c > $(HOST_PREFIX)obstack.c
32e6d418 1708 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1709
44a8856e 1710$(HOST_PREFIX_1)vfprintf.o: $(srcdir)/../libiberty/vfprintf.c
b8a373b2 1711 rm -f $(HOST_PREFIX)vfprintf.c
099377d8 1712 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/../libiberty/vfprintf.c > $(HOST_PREFIX)vfprintf.c
b8a373b2 1713 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)vfprintf.c
1714
1715$(HOST_PREFIX_1)doprint.o: doprint.c
1716 rm -f $(HOST_PREFIX)doprint.c
1717 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/doprint.c > $(HOST_PREFIX)doprint.c
1718 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)doprint.c
1719
32e6d418 1720$(HOST_PREFIX_1)malloc.o: malloc.c
1721 rm -f $(HOST_PREFIX)malloc.c
e77fd588 1722 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
32e6d418 1723 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1724
04b58880 1725$(HOST_PREFIX_1)errors.o: errors.c
1726 rm -f $(HOST_PREFIX)errors.c
1727 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/errors.c > $(HOST_PREFIX)errors.c
1728 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)errors.c
1729
1730
32e6d418 1731# This satisfies the dependency that we get if you cross-compile a compiler
1732# that does not need to compile alloca, malloc or whatever.
c6221df9 1733$(HOST_PREFIX_1):
32e6d418 1734 touch $(HOST_PREFIX_1)
649d8da6 1735
92d28b1c 1736$(HOST_PREFIX_1)ggc-none.o: ggc-none.c
297db6d7 1737 rm -f $(HOST_PREFIX)ggc-none.c
1738 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/ggc-none.c > $(HOST_PREFIX)ggc-none.c
1739 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)ggc-none.c
92d28b1c 1740
be2828ce 1741#\f
1742# Remake internationalization support.
1743
1744intl.o: intl.c intl.h gansidecl.h Makefile
1745 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1746 -DLOCALEDIR=\"$(localedir)\" \
1747 -c `echo $(srcdir)/intl.c | sed 's,^\./,,'`
1748
e7a67646 1749$(top_builddir)/intl/libintl.a: intl.all
be2828ce 1750
1751# Make sure all the headers are there for xgettext to scan.
5728fc9b 1752$(INTL_TARGETS): $(srcdir)/c-gperf.h \
0b30807c 1753 $(srcdir)/c-parse.c $(srcdir)/c-parse.h
be2828ce 1754
1755intl.all intl.install intl.uninstall intl.distdir \
1756 intl.mostlyclean intl.clean intl.distclean intl.maintainer-clean:
1757 @for d in $(INTL_SUBDIRS); do \
1758 target=`expr $@ : 'intl.\(.*\)'` && \
1759 echo "(cd $$d && $(MAKE) $$target)" && \
1760 (cd $$d && AWK='$(AWK)' $(MAKE) $(SUBDIR_FLAGS_TO_PASS) $$target); \
6a46fa59 1761 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
be2828ce 1762 done
1763
1764# intl.distdir doesn't copy the intl makefiles (since they aren't distributed),
1765# but we need them for the `make extraclean' in distdir-finish.
1766intl.distdir-fixup:
1767 for d in $(INTL_SUBDIRS); do \
1768 ln $$d/Makefile tmp/$$d || cp $$d/Makefile tmp/$$d || exit; \
1769 done
2e9d8ccf 1770#\f
32e6d418 1771# Remake cpp and protoize.
1772
e2d3326d 1773PREPROCESSOR_DEFINES = \
1774 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1775 -DGPLUSPLUS_INCLUDE_DIR=\"$(gcc_gxx_include_dir)\" \
1776 -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1777 -DCROSS_INCLUDE_DIR=\"$(gcc_tooldir)/sys-include\" \
1778 -DTOOL_INCLUDE_DIR=\"$(gcc_tooldir)/include\"
32e6d418 1779
58113712 1780LIBCPP_OBJS = cpplib.o cpphash.o cpperror.o cppexp.o cppfiles.o \
0578f103 1781 cppinit.o cppulp.o cpplex.o mkdeps.o \
62adb1fe 1782 prefix.o version.o mbchar.o @extra_cpp_objs@
95c4b02a 1783
0b30807c 1784LIBCPP_DEPS = cpplib.h cpphash.h intl.h system.h
a7ccf951 1785
73b4c875 1786# All the other archives built/used by this makefile are for targets. This
1787# one is strictly for the host.
1788#
95c4b02a 1789libcpp.a: $(LIBCPP_OBJS)
6d250c05 1790 -rm -rf libcpp.a
396c97db 1791 $(AR) $(AR_FLAGS) libcpp.a $(LIBCPP_OBJS)
1792 if $(RANLIB_TEST) ; then $(RANLIB) libcpp.a ; else true ; fi
95c4b02a 1793
0b30807c 1794cpp$(exeext): cppmain.o intl.o libcpp.a $(LIBDEPS)
1795 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cpp$(exeext) cppmain.o \
20ed13da 1796 intl.o libcpp.a $(LIBS)
3e4227af 1797
5ecec5da 1798cppmain.o: cppmain.c $(CONFIG_H) cpplib.h intl.h system.h
f03d7bcd 1799
5ecec5da 1800cppulp.o: cppulp.c $(CONFIG_H) system.h output.h
a7ccf951 1801cpperror.o: cpperror.c $(CONFIG_H) $(LIBCPP_DEPS)
1802cppexp.o: cppexp.c $(CONFIG_H) $(LIBCPP_DEPS)
0578f103 1803cpplex.o: cpplex.c $(CONFIG_H) $(LIBCPP_DEPS)
f51c2148 1804cpplib.o: cpplib.c $(CONFIG_H) $(LIBCPP_DEPS) $(OBSTACK_H)
1805cpphash.o: cpphash.c $(CONFIG_H) $(LIBCPP_DEPS) $(OBSTACK_H) $(HASHTAB_H)
bb96e316 1806cppfiles.o: cppfiles.c $(CONFIG_H) $(LIBCPP_DEPS) $(SPLAY_TREE_H) mkdeps.h
164e0f66 1807
f51c2148 1808cppinit.o: cppinit.c $(CONFIG_H) $(LIBCPP_DEPS) \
bb96e316 1809 mkdeps.h prefix.h output.h Makefile version.h
3e4227af 1810 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
e2d3326d 1811 $(PREPROCESSOR_DEFINES) \
6d71dc85 1812 -c `echo $(srcdir)/cppinit.c | sed 's,^\./,,'`
a852e3b1 1813
62adb1fe 1814mkdeps.o: mkdeps.c $(CONFIG_H) system.h mkdeps.h
1815
876dc5b0 1816# Note for the stamp targets, we run the program `true' instead of
1817# having an empty command (nothing following the semicolon).
1818
7f6a6499 1819proto: config.status protoize$(exeext) unprotoize$(exeext) SYSCALLS.c.X
32e6d418 1820
c6221df9 1821PROTO_OBJS = intl.o version.o
be2828ce 1822
1823protoize$(exeext): protoize.o $(PROTO_OBJS) $(LIBDEPS)
1824 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ protoize.o $(PROTO_OBJS) $(LIBS)
ab866dde 1825
be2828ce 1826unprotoize$(exeext): unprotoize.o $(PROTO_OBJS) $(LIBDEPS)
1827 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ unprotoize.o $(PROTO_OBJS) $(LIBS)
ab866dde 1828
eeadfa9d 1829protoize.o: protoize.c $(srcdir)/../include/getopt.h $(CONFIG_H) system.h \
56fc5f02 1830 Makefile version.h
32e6d418 1831 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
e2d3326d 1832 $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \
122c82ed 1833 $(srcdir)/protoize.c
1834
eeadfa9d 1835unprotoize.o: unprotoize.c protoize.c $(srcdir)/../include/getopt.h \
56fc5f02 1836 $(CONFIG_H) system.h Makefile version.h
32e6d418 1837 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
e2d3326d 1838 $(DRIVER_DEFINES) $(PREPROCESSOR_DEFINES) \
122c82ed 1839 $(srcdir)/unprotoize.c
32e6d418 1840
32e6d418 1841# This info describes the target machine, so compile with GCC just built.
62268150 1842SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
1843 stmp-int-hdrs
f678532a 1844 -rm -f SYSCALLS.c tmp-SYSCALLS.s
79f818d0 1845 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
32e6d418 1846 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
f678532a 1847 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1848 -rm -f SYSCALLS.c tmp-SYSCALLS.s
0b20f012 1849
a5889b74 1850
0b20f012 1851test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
c548e550 1852 -rm -f tmp-proto.[cso]
262d46de 1853 cp $(srcdir)/protoize.c tmp-proto.c
1854 chmod u+w tmp-proto.c
c548e550 1855 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
e2d3326d 1856 $(GCC_CFLAGS) $(INCLUDES) \
0b20f012 1857 -DGCC_INCLUDE_DIR=0 \
1858 -DGPLUSPLUS_INCLUDE_DIR=0 \
1859 -DCROSS_INCLUDE_DIR=0 \
46073b39 1860 -DTOOL_INCLUDE_DIR=0 \
e2d3326d 1861 -DSTANDARD_EXEC_PREFIX=0 \
1862 -DDEFAULT_TARGET_MACHINE=0 \
1863 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
1a754c64 1864 @echo '**********' Expect 400 lines of differences.
c548e550 1865 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1866 -wc -l tmp-proto.diff
1867 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
e2d3326d 1868 $(GCC_CFLAGS) $(INCLUDES) \
0b20f012 1869 -DGCC_INCLUDE_DIR=0 \
1870 -DGPLUSPLUS_INCLUDE_DIR=0 \
1871 -DCROSS_INCLUDE_DIR=0 \
46073b39 1872 -DTOOL_INCLUDE_DIR=0 \
e2d3326d 1873 -DSTANDARD_EXEC_PREFIX=0 \
1874 -DDEFAULT_TARGET_MACHINE=0 \
1875 -DDEFAULT_TARGET_VERSION=0" tmp-proto.c
0b20f012 1876 @echo Expect zero differences.
262d46de 1877 diff $(srcdir)/protoize.c tmp-proto.c | cat
62268150 1878 -rm -f tmp-proto.[cs] tmp-proto$(objext)
2b55270a 1879
be2828ce 1880gcov.o: gcov.c gcov-io.h intl.h system.h
2b55270a 1881
0f11bb5d 1882# Only one of 'gcov' or 'gcov.exe' is actually built, depending
1883# upon whether $(exeext) is empty or not.
be2828ce 1884GCOV_OBJS = gcov.o intl.o
1885gcov$(exeext): $(GCOV_OBJS) $(LIBDEPS)
1886 $(CC) $(ALL_CFLAGS) $(LDFLAGS) $(GCOV_OBJS) $(LIBS) -o $@
2e9d8ccf 1887#\f
2cfd79fe 1888# Build the include directory. The stamp files are stmp-* rather than
997d68fe 1889# s-* so that mostlyclean does not force the include directory to
2cfd79fe 1890# be rebuilt.
1891
d54b81e0 1892# Build the include directory including float.h (which no longer depends upon
690a93ea 1893# enquire).
58113712 1894stmp-int-hdrs: $(STMP_FIXINC) $(USER_H) xlimits.h
2cfd79fe 1895# Copy in the headers provided with gcc.
1896# The sed command gets just the last file name component;
1897# this is necessary because VPATH could add a dirname.
1898# Using basename would be simpler, but some systems don't have it.
220345e0 1899# The touch command is here to workaround an AIX/Linux NFS bug.
dc901594 1900 -if [ -d include ] ; then true; else mkdir include; chmod a+rx include; fi
c8763215 1901 for file in .. $(USER_H); do \
1902 if [ X$$file != X.. ]; then \
1903 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
220345e0 1904 touch include/$$realfile; \
1941d7da 1905 rm -f include/$$realfile; \
1906 cp $$file include; \
1907 chmod a+r include/$$realfile; \
c8763215 1908 fi; \
2cfd79fe 1909 done
b5850e21 1910 rm -f include/limits.h
2cfd79fe 1911 cp xlimits.h include/limits.h
1912 chmod a+r include/limits.h
690a93ea 1913 rm -f include/float.h
19c49761 1914 if [ x$(FLOAT_H) != xMakefile.in ]; then \
1915 cp $(srcdir)/config/$(FLOAT_H) include/float.h && \
0dbd1c74 1916 chmod a+r include/float.h; \
1917 else :; fi
d54b81e0 1918# Install the README
1919 rm -f include/README
1920 cp $(srcdir)/README-fixinc include/README
1921 chmod a+r include/README
1922 touch $@
1923
584727c9 1924# fixinc.sh depends on this, not on specs directly.
1925# The idea is to make sure specs gets built, but not rerun fixinc.sh
1926# after each stage just because specs' mtime has changed.
1927specs.ready: specs
1928 -if [ -f specs.ready ] ; then \
1929 true; \
1930 else \
1931 touch specs.ready; \
1932 fi
1933
2dc7f475 1934FIXINCSRCDIR=$(srcdir)/fixinc
1935fixinc.sh: $(FIXINCSRCDIR)/mkfixinc.sh $(FIXINCSRCDIR)/fixincl.c \
ed8eb9b3 1936 $(FIXINCSRCDIR)/procopen.c $(FIXINCSRCDIR)/gnu-regex.c \
1937 $(FIXINCSRCDIR)/server.c $(FIXINCSRCDIR)/gnu-regex.h \
584727c9 1938 $(FIXINCSRCDIR)/server.h $(FIXINCSRCDIR)/inclhack.def specs.ready
434bb88d 1939 MAKE="$(MAKE)"; srcdir=`cd $(srcdir)/fixinc; pwd` ; \
1940 export MAKE srcdir ; \
1941 cd ./fixinc; $(SHELL) $${srcdir}/mkfixinc.sh $(target)
1942
2cfd79fe 1943# Build fixed copies of system files.
434bb88d 1944stmp-fixinc: fixinc.sh gsyslimits.h
1945 rm -rf include; mkdir include
7014838c 1946 -chmod a+rx include
434bb88d 1947 TARGET_MACHINE=$(target); srcdir=`cd $(srcdir); pwd`; \
f26c984d 1948 INSTALL_ASSERT_H=$(INSTALL_ASSERT_H); SHELL=$(SHELL) ;\
1949 export TARGET_MACHINE srcdir INSTALL_ASSERT_H SHELL ; \
434bb88d 1950 $(SHELL) ./fixinc.sh `pwd`/include $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS)
b7d4d520 1951 rm -f include/syslimits.h
1952 if [ -f include/limits.h ]; then \
1953 mv include/limits.h include/syslimits.h; \
1954 else \
1955 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1956 fi
1957 chmod a+r include/syslimits.h
d989b259 1958# If $(SYSTEM_HEADER_DIR) is $(tooldir)/sys-include, and
8099945b 1959# that directory exists, then make sure that $(libsubdir) exists.
d989b259 1960# This is because cpp is compiled to find $(tooldir)/include via
8099945b 1961# $(libsubdir)/$(unlibsubdir), which will only work if $(libsubdir)
1962# exists.
d989b259 1963# We deliberately use tooldir instead of gcc_tooldir here. gcc_tooldir
1964# won't work because libsubdir doesn't exist yet.
1965 if [ "$(SYSTEM_HEADER_DIR)" = "$(tooldir)/sys-include" ] \
1966 && [ -d $(tooldir)/sys-include ]; then \
8099945b 1967 if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi; \
1968 if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib; fi; \
1969 if [ -d $(libdir)/gcc-lib/$(target_alias) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias) ; fi; \
1970 if [ -d $(libdir)/gcc-lib/$(target_alias)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias)/$(version) ; fi; \
1971 else true; fi
9e74f24f 1972 touch stmp-fixinc
7c4f0e88 1973
a5889b74 1974# Files related to the fixproto script.
58113712 1975# gen-protos and fix-header are compiled with HOST_CC, but they are only
1976# used in native and host-x-target builds, so it's safe to link them with
1977# libiberty.a.
a5889b74 1978
047c2b8b 1979deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
6ce07cb7 1980 if [ -d $(SYSTEM_HEADER_DIR) ]; \
1981 then \
d23f832c 1982 CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -isystem include -isystem ${SYSTEM_HEADER_DIR}"; \
a5889b74 1983 export CC; \
6ce07cb7 1984 $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h; \
1985 mv tmp-deduced.h deduced.h; \
1986 else \
1987 touch deduced.h; \
1988 fi
a5889b74 1989
745272db 1990GEN_PROTOS_OBJS = gen-protos.o scan.o
e65966c3 1991gen-protos: $(GEN_PROTOS_OBJS)
8ac08729 1992 ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gen-protos \
58113712 1993 $(GEN_PROTOS_OBJS) ../libiberty/libiberty.a
a5889b74 1994
745272db 1995gen-protos.o: gen-protos.c scan.h $(build_xm_file) system.h
c68462d9 1996 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c
1997
1486870d 1998scan.o: scan.c scan.h $(build_xm_file) system.h
c68462d9 1999 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c
9541a717 2000
047c2b8b 2001xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
c92e16d4 2002 cat deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
2003 mv tmp-fixtmp.c fixtmp.c
2f9d2927 2004 $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
6fc3eafd 2005 | sed -e 's/ / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
c92e16d4 2006 | ./gen-protos >xsys-protos.hT
2007 mv xsys-protos.hT xsys-protos.h
d7c4552e 2008 rm -rf fixtmp.c
a5889b74 2009
89246c93 2010# This is nominally a 'build' program, but it's run only when host==build,
2011# so we can (indeed, must) use $(LIBDEPS) and $(LIBS).
2012fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(LIBDEPS) \
95c4b02a 2013 libcpp.a
62268150 2014 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ fix-header.o \
89246c93 2015 scan-decls.o scan.o libcpp.a $(LIBS)
a5889b74 2016
8a5b87ad 2017fix-header.o: fix-header.c $(OBSTACK_H) scan.h \
745272db 2018 xsys-protos.h $(build_xm_file) system.h cpplib.h
c68462d9 2019 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c
2020
164e0f66 2021scan-decls.o: scan-decls.c scan.h cpplib.h $(build_xm_file) system.h
c68462d9 2022 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c
a5889b74 2023
047c2b8b 2024# stmp-fixproto depends on this, not on fix-header directly.
2025# The idea is to make sure fix-header gets built,
2026# but not rerun fixproto after each stage
2027# just because fix-header's mtime has changed.
2028fixhdr.ready: fix-header
2029 -if [ -f fixhdr.ready ] ; then \
2030 true; \
2031 else \
2032 touch fixhdr.ready; \
2033 fi
2034
58113712 2035# stmp-int-headers is to make sure fixincludes has already finished.
276709eb 2036# The if statement is so that we don't run fixproto a second time
2037# if it has already been run on the files in `include'.
58113712 2038stmp-fixproto: fixhdr.ready fixproto stmp-int-hdrs
6cb9024d 2039 if [ -f include/fixed ] ; then true; \
276709eb 2040 else \
6f1f992e 2041 : This line works around a 'make' bug in BSDI 1.1.; \
ff8281e4 2042 FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
e555525a 2043 mkinstalldirs="$(SHELL) $(srcdir)/mkinstalldirs"; \
2044 export mkinstalldirs; \
bcc35674 2045 if [ -d $(SYSTEM_HEADER_DIR) ] ; then \
2046 $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
6cb9024d 2047 if [ $$? -eq 0 ] ; then true ; else exit 1 ; fi ; \
bcc35674 2048 else true; fi; \
276709eb 2049 touch include/fixed; \
2050 fi
a5889b74 2051 touch stmp-fixproto
2e9d8ccf 2052#\f
32e6d418 2053# Remake the info files.
2054
049ccec1 2055doc: $(BUILD_INFO) gccbug
17b258fe 2056info: cpp.info gcc.info lang.info
32e6d418 2057
17b258fe 2058cpp.info: $(srcdir)/cpp.texi
069f16fd 2059 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o cpp.info $(srcdir)/cpp.texi
32e6d418 2060
17b258fe 2061gcc.info: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2062 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2063 $(srcdir)/tm.texi $(srcdir)/gcov.texi
069f16fd 2064 $(MAKEINFO) $(MAKEINFOFLAGS) -I$(srcdir) -o gcc.info $(srcdir)/gcc.texi
630c76ba 2065
17b258fe 2066dvi: gcc.dvi cpp.dvi lang.dvi
627defc4 2067
64616031 2068# This works with GNU Make's default rule.
17b258fe 2069gcc.dvi: $(srcdir)/gcc.texi $(srcdir)/extend.texi $(srcdir)/install.texi \
2070 $(srcdir)/invoke.texi $(srcdir)/md.texi $(srcdir)/rtl.texi \
2071 $(srcdir)/tm.texi $(srcdir)/gcov.texi
2072 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2073 texindex gcc.??
2074 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex gcc.texi
2075
2076cpp.dvi: $(srcdir)/cpp.texi
2077 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2078 texindex cpp.??
2079 TEXINPUTS=${texidir}:$(srcdir):$$TEXINPUTS tex cpp.texi
2080
2081
2082INSTALL: $(srcdir)/install1.texi $(srcdir)/install.texi
3ed0d670 2083 cd $(srcdir); $(MAKEINFO) -D INSTALLONLY \
0b30807c 2084 --no-split --no-headers -o INSTALL install1.texi
2e9d8ccf 2085#\f
32e6d418 2086# Deletion of files made during compilation.
2087# There are four levels of this:
a8514488 2088# `mostlyclean', `clean', `distclean' and `maintainer-clean'.
32e6d418 2089# `mostlyclean' is useful while working on a particular type of machine.
c6396a0b 2090# It deletes most, but not all, of the files made by compilation.
32e6d418 2091# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
c6396a0b 2092# `clean' deletes everything made by running `make all'.
79f818d0 2093# `distclean' also deletes the files made by config.
a8514488 2094# `maintainer-clean' also deletes everything that could be regenerated
1f42ecdc 2095# automatically, except for `configure'.
2096# We remove as much from the language subdirectories as we can
73027c94 2097# (less duplicated code).
32e6d418 2098
c50e5930 2099INTL_MOSTLYCLEAN = intl.mostlyclean
2100mostlyclean: $(INTL_MOSTLYCLEAN) lang.mostlyclean
32e6d418 2101 -rm -f $(STAGESTUFF)
2102# Delete the temporary source copies for cross compilation.
2103 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
2104 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
c6221df9 2105 -rm -f $(HOST_PREFIX_1)obstack.c
32e6d418 2106# Delete the temp files made in the course of building libgcc.a.
3f9b9702 2107 -rm -f xlimits.h libgcc1-test
32e6d418 2108 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
997d68fe 2109# Delete other built files.
3f9b9702 2110 -rm -f t-float.h-cross xsys-protos.hT
997d68fe 2111# Delete the stamp and temporary files.
2112 -rm -f s-* tmp-* stamp-* stmp-*
73027c94 2113 -rm -f */stamp-* */tmp-*
c6396a0b 2114# Delete debugging dump files.
713a4057 2115 -rm -f *.[0-9][0-9].* */*.[0-9][0-9].*
c6396a0b 2116# Delete some files made during installation.
19c49761 2117 -rm -f specs float.h-* enquire SYSCALLS.c.X SYSCALLS.c
e98401fc 2118 -rm -f collect collect2 mips-tfile mips-tdump alloca.s
a5889b74 2119# Delete files generated for fixproto
15dece2a 2120 -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \
c9c7b9d8 2121 gen-protos fixproto.list fixtmp.* fixhdr.ready
aa694eff 2122# Delete files generated for fixincl
2123 -rm -rf fixincl fixinc.sh specs.ready
d28b3c79 2124 (cd fixinc && $(MAKE) clean)
c6396a0b 2125# Delete unwanted output files from TeX.
2126 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
73027c94 2127 -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
79f818d0 2128# Delete sorted indices we don't actually use.
2129 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
c6396a0b 2130# Delete core dumps.
73027c94 2131 -rm -f core */core
32e6d418 2132
79f818d0 2133# Delete all files made by compilation
2134# that don't exist in the distribution.
c50e5930 2135INTL_CLEAN = intl.clean
2136clean: mostlyclean $(INTL_CLEAN) lang.clean
2bd9055c 2137 -rm -f libgcc.a
131b361e 2138 -rm -f *.dvi
73027c94 2139 -rm -f */*.dvi
89e36a04 2140 -if [ -f md.pre-cpp ]; then \
2141 rm -f md ; \
2142 fi
2cfd79fe 2143# Delete the include directory.
997d68fe 2144 -rm -rf include
d73a48cc 2145# Delete files used by the "multilib" facility (including libgcc subdirs).
f1ad3130 2146 -rm -f multilib.h tmpmultilib*
d73a48cc 2147 -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2148 rm -rf $(MULTILIB_DIRNAMES); \
2149 else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2150 rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2151 fi ; fi
119f80e4 2152 -rm -fr stage1 stage2 stage3 stage4
32e6d418 2153
79f818d0 2154# Delete all files that users would normally create
2155# while building and installing GCC.
be2828ce 2156INTL_DISTCLEAN = intl.distclean
2157distclean: clean $(INTL_DISTCLEAN) lang.distclean
7953c610 2158 -rm -f tm.h tm_p.h config.h auto-host.h auto-build.h tconfig.h hconfig.h
764fc592 2159 -rm -f md cstamp-h
1f42ecdc 2160 -rm -f config.status config.run config.cache config.bak
160b6fa9 2161 -rm -f Make-lang Make-hooks Make-host Make-target
c3cc26e1 2162 -rm -f Makefile specs.h options.h gencheck.h *.oaux
58febf9e 2163 -rm -f gthr-default.h
c4ed51d6 2164 -rm -f */stage1 */stage2 */stage3 */stage4 */include
08d7a103 2165 -rm -f c-parse.output
b541ad9d 2166 -rm -f *.asm
ae115421 2167 -rm -f float.h
45e01ea1 2168 -rm -f site.exp site.bak testsuite/site.exp testsuite/site.bak
2169 -rm -f testsuite/{gcc,g++}.{log,sum}
be2828ce 2170 -rm -f intl/libintl.h libintl.h
c6396a0b 2171
2172# Delete anything likely to be found in the source directory
2173# that shouldn't be in the distribution.
73027c94 2174extraclean: distclean lang.extraclean
bbbdbddd 2175 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
131b361e 2176 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
08d7a103 2177 -rm -f config/*/=* config/*/"#"* config/*/*~*
2178 -rm -f config/*/*.orig config/*/*.rej
300d5cb3 2179 -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
13da1009 2180 -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
08d7a103 2181 -rm -f *lose config/*lose config/*/*lose
997d68fe 2182 -rm -f *.s *.s[0-9] *.i config/ChangeLog
be2828ce 2183 -rm -f y.tab.c yacc.*
73027c94 2184 -rm -f */=* */"#"* */*~*
2185 -rm -f */patch* */*.orig */*.rej
2186 -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2187 -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2188 -rm -f */*lose */*.s */*.s[0-9] */*.i
32e6d418 2189
1f42ecdc 2190# Get rid of every file that's generated from some other file, except for `configure'.
32e6d418 2191# Most of these files ARE PRESENT in the GCC distribution.
c50e5930 2192# We define INTL_DISTCLEAN, INTL_CLEAN & INTL_MOSTLYCLEAN to be empty in the
2193# submake, so that we don't descend into intl after its makefile has been
2194# removed.
1f42ecdc 2195maintainer-clean:
2196 @echo 'This command is intended for maintainers to use; it'
2197 @echo 'deletes files that may need special tools to rebuild.'
c50e5930 2198 $(MAKE) INTL_DISTCLEAN= INTL_CLEAN= INTL_MOSTLYCLEAN= \
2199 intl.maintainer-clean lang.maintainer-clean distclean
8757933b 2200 -rm -f c-parse.y c-gperf.h
0b30807c 2201 -rm -f c-parse.c c-parse.h c-parse.output TAGS
c6396a0b 2202 -rm -f cpp.info* cpp.??s cpp.*aux
2203 -rm -f gcc.info* gcc.??s gcc.*aux
2e9d8ccf 2204#\f
32e6d418 2205# Entry points `install' and `uninstall'.
c6396a0b 2206# Also use `install-collect2' to install collect2 when the config files don't.
32e6d418 2207
3f69fed5 2208# The semicolon is to prevent the install.sh -> install default rule
876dc5b0 2209# from doing anything. Having it run true helps avoid problems and
2210# noise from versions of make which don't like to have null commands.
c2a18965 2211install: $(INSTALL_TARGET) ; @true
32e6d418 2212
2cfd79fe 2213# Copy the compiler files into directories where they will be run.
62268150 2214# Install the driver last so that the window when things are
2215# broken is small.
2289acd7 2216install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
049ccec1 2217 $(INSTALL_CPP) install-man $(INSTALL_INFO) intl.install \
2218 lang.install-normal install-driver
32e6d418 2219
e77fd588 2220# Do nothing while making gcc with a cross-compiler. The person who
2221# makes gcc for the target machine has to know how to put a complete
2222# gcc together by hand.
2223install-build: force
2224 @echo You have to install gcc on your target machine by hand.
2225
32e6d418 2226# Run this on the target machine
2227# to finish installation of cross compiler.
19c49761 2228# This is not used anymore now that float.h does not depend on enquire.
32e6d418 2229install-cross-rest: install-float-h-cross
2230
3e2f90b9 2231# Handle cpp installation.
28c11b39 2232install-cpp: xcpp$(exeext)
2ff5d8bd 2233 -if [ -f gcc-cross$(exeext) ] ; then \
2234 rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2235 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(bindir)/$(CPP_CROSS_NAME)$(exeext); \
2236 if [ x$(cpp_install_dir) != x ]; then \
2237 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2238 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
2239 else true; fi; \
2240 else \
2241 rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2242 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(bindir)/$(CPP_INSTALL_NAME)$(exeext); \
2243 if [ x$(cpp_install_dir) != x ]; then \
2244 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2245 $(INSTALL_PROGRAM) -m 755 xcpp$(exeext) $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2246 else true; fi; \
2247 fi
3e2f90b9 2248
2249uninstall-cpp:
2ff5d8bd 2250 -rm -f $(bindir)/$(CPP_INSTALL_NAME)$(exeext)
2251 -rm -f $(bindir)/$(CPP_CROSS_NAME)$(exeext)
3e2f90b9 2252 -if [ x$(cpp_install_dir) != x ]; then \
2ff5d8bd 2253 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_INSTALL_NAME)$(exeext); \
2254 rm -f $(prefix)/$(cpp_install_dir)/$(CPP_CROSS_NAME)$(exeext); \
3e2f90b9 2255 else true; fi
2256
32e6d418 2257# Install float.h for cross compiler.
2258# Run this on the target machine!
19c49761 2259# This is not used anymore now that float.h does not depend on enquire.
0d5bce1b 2260install-float-h-cross: installdirs
9f10de4b 2261# if [ -f enquire ] ; then true; else false; fi
2262# Note: don't use -. We should fail right away if enquire was not made.
2263 ./enquire -f > $(tmpdir)/float.h
32e6d418 2264 -rm -f $(libsubdir)/include/float.h
f32abccb 2265 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
2266 -rm -f $(tmpdir)/float.h
32e6d418 2267 chmod a-x $(libsubdir)/include/float.h
2268
0d5bce1b 2269# Create the installation directories.
2270installdirs:
2271 -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
2272 -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
47db7968 2273 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
2274 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
444c3fb0 2275# This dir isn't currently searched by cpp.
47db7968 2276# -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
c6367e90 2277 -fdir= ; for dir in `echo $(libsubdir) | tr '/' ' '`; do \
2278 fdir=$${fdir}/$${dir}; \
2279 if [ -d $${fdir} ] ; then true ; else mkdir $${fdir}; chmod a+rx $${fdir}; fi ; \
2280 done
47db7968 2281 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
2282 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
40cb25f2 2283 -if [ -d $(gcc_tooldir) ] ; then true ; else mkdir $(gcc_tooldir) ; chmod a+rx $(gcc_tooldir) ; fi
47db7968 2284 -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; chmod a+rx $(assertdir) ; fi
2285 -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
3cf6a465 2286# We don't use mkdir -p to create the parents of man1dir,
32e6d418 2287# because some systems don't support it.
3cf6a465 2288# Instead, we use this technique to create the immediate parent of man1dir.
2289 -parent=`echo $(man1dir)|sed -e 's@/[^/]*$$@@'`; \
47db7968 2290 if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
3cf6a465 2291 -if [ -d $(man1dir) ] ; then true ; else mkdir $(man1dir) ; chmod a+rx $(man1dir) ; fi
32e6d418 2292
2293# Install the compiler executables built during cross compilation.
0d5bce1b 2294install-common: native installdirs $(EXTRA_PARTS) lang.install-common
32e6d418 2295 for file in $(COMPILERS); do \
2296 if [ -f $$file ] ; then \
2297 rm -f $(libsubdir)/$$file; \
2298 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2299 else true; \
2300 fi; \
2301 done
1a1e7b42 2302 for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
32e6d418 2303 if [ x"$$file" != x.. ]; then \
2304 rm -f $(libsubdir)/$$file; \
2305 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2306 else true; fi; \
2307 done
1a1e7b42 2308 for file in $(EXTRA_PARTS) ..; do \
2309 if [ x"$$file" != x.. ]; then \
2310 rm -f $(libsubdir)/$$file; \
2311 $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
0dbd1c74 2312 chmod a-x $(libsubdir)/$$file; \
1a1e7b42 2313 else true; fi; \
2314 done
8a4b1e01 2315# Don't mess with specs if it doesn't exist yet.
94c53b91 2316 -if [ -f specs ] ; then \
2317 rm -f $(libsubdir)/specs; \
8a4b1e01 2318 $(INSTALL_DATA) specs $(libsubdir)/specs; \
0dbd1c74 2319 chmod a-x $(libsubdir)/specs; \
8a4b1e01 2320 fi
62268150 2321# Install protoize if it was compiled.
2322 -if [ -f protoize$(exeext) ]; \
2323 then \
fc56a674 2324 if [ -f gcc-cross$(exeext) ] ; then \
2325 rm -f $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2326 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext); \
2327 rm -f $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2328 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext); \
2329 else \
2330 rm -f $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2331 $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext); \
2332 rm -f $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2333 $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext); \
2334 fi ; \
62268150 2335 rm -f $(libsubdir)/SYSCALLS.c.X; \
2336 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
2337 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
2338 fi
2339 -rm -f $(libsubdir)/cpp$(exeext)
2340 $(INSTALL_PROGRAM) cpp$(exeext) $(libsubdir)/cpp$(exeext)
e2a2be99 2341# Install gcov if it was compiled.
2b55270a 2342 -if [ -f gcov$(exeext) ]; \
2343 then \
2344 rm -f $(bindir)/gcov$(exeext); \
5ef852e5 2345 $(INSTALL_PROGRAM) gcov$(exeext) $(bindir)/$(GCOV_INSTALL_NAME)$(exeext); \
2b55270a 2346 fi
86220f45 2347 $(INSTALL_PROGRAM) gccbug $(bindir)/$(GCCBUG_INSTALL_NAME)
62268150 2348
67cb4bc1 2349# Install the driver program as $(target_alias)-gcc
40cb25f2 2350# and also as either gcc (if native) or $(gcc_tooldir)/bin/gcc.
7f6a6499 2351install-driver: xgcc$(exeext)
f403cbcb 2352 -if [ -f gcc-cross$(exeext) ] ; then \
2353 rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
12d8e722 2354 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
40cb25f2 2355 if [ -d $(gcc_tooldir)/bin/. ] ; then \
2356 rm -f $(gcc_tooldir)/bin/gcc$(exeext); \
2357 $(INSTALL_PROGRAM) gcc-cross$(exeext) $(gcc_tooldir)/bin/gcc$(exeext); \
32e6d418 2358 else true; fi; \
2359 else \
f403cbcb 2360 rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2361 $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
67cb4bc1 2362 rm -f $(bindir)/$(target_alias)-gcc-1$(exeext); \
ea4a6c81 2363 $(LN) $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext); \
67cb4bc1 2364 mv $(bindir)/$(target_alias)-gcc-1$(exeext) $(bindir)/$(target_alias)-gcc$(exeext); \
32e6d418 2365 fi
32e6d418 2366
a2aa0fc1 2367# Install the info files.
dff6b323 2368# $(INSTALL_DATA) might be a relative pathname, so we can't cd into srcdir
509d95a7 2369# to do the install.
0d5bce1b 2370install-info: doc installdirs lang.install-info
a2aa0fc1 2371 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
17b258fe 2372 for f in cpp.info* gcc.info*; do \
509d95a7 2373 $(INSTALL_DATA) $$f $(infodir)/$$f; \
dff6b323 2374 done
509d95a7 2375 -if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
530e88cf 2376 if [ -f $(infodir)/dir ] ; then \
89980492 2377 for f in cpp.info gcc.info; do \
509d95a7 2378 install-info --dir-file=$(infodir)/dir $(infodir)/$$f; \
89980492 2379 done; \
530e88cf 2380 else true; fi; \
89980492 2381 else true; fi;
a2aa0fc1 2382 -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
2383
32e6d418 2384# Install the man pages.
0b30807c 2385install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cpp.1 lang.install-man
0dbd1c74 2386 -if [ -f gcc-cross$(exeext) ] ; then \
3cf6a465 2387 rm -f $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
2388 $(INSTALL_DATA) $(srcdir)/gcc.1 $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
2389 chmod a-x $(man1dir)/$(GCC_CROSS_NAME)$(manext); \
b541ad9d 2390 else \
3cf6a465 2391 rm -f $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
2392 $(INSTALL_DATA) $(srcdir)/gcc.1 $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
2393 chmod a-x $(man1dir)/$(GCC_INSTALL_NAME)$(manext); \
b541ad9d 2394 fi
0b30807c 2395 -rm -f $(man1dir)/cpp$(manext)
2396 -$(INSTALL_DATA) $(srcdir)/cpp.1 $(man1dir)/cpp$(manext)
2397 -chmod a-x $(man1dir)/cpp$(manext)
32e6d418 2398
2399# Install the library.
0d5bce1b 2400install-libgcc: libgcc.a installdirs
32e6d418 2401 -if [ -f libgcc.a ] ; then \
2402 rm -f $(libsubdir)/libgcc.a; \
2403 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
396c97db 2404 if $(RANLIB_TEST_FOR_TARGET) ; then \
2405 (cd $(libsubdir); $(RANLIB_FOR_TARGET) libgcc.a); else true; fi; \
32e6d418 2406 chmod a-x $(libsubdir)/libgcc.a; \
2407 else true; fi
2408
f1ad3130 2409# Install multiple versions of libgcc.a.
0d5bce1b 2410install-multilib: stmp-multilib installdirs
f1ad3130 2411 for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
2412 dir=`echo $$i | sed -e 's/;.*$$//'`; \
7014838c 2413 if [ -d $(libsubdir)/$${dir} ]; then true; else mkdir $(libsubdir)/$${dir}; chmod a+rx $(libsubdir)/$${dir}; fi; \
cdc96909 2414 for f in libgcc.a $(EXTRA_MULTILIB_PARTS); do \
2415 rm -f $(libsubdir)/$${dir}/$${f}; \
2416 $(INSTALL_DATA) $${dir}/$${f} $(libsubdir)/$${dir}/$${f}; \
2417 done; \
396c97db 2418 if $(RANLIB_TEST_FOR_TARGET); then \
2419 (cd $(libsubdir)/$${dir}; $(RANLIB_FOR_TARGET) libgcc.a); \
2420 else true; fi; \
f1ad3130 2421 chmod a-x $(libsubdir)/$${dir}/libgcc.a; \
2422 done
2423
2cfd79fe 2424# Install all the header files built in the include subdirectory.
c8763215 2425install-headers: install-include-dir $(INSTALL_HEADERS_DIR) $(INSTALL_ASSERT_H)
2cfd79fe 2426# Fix symlinks to absolute paths in the installed include directory to
2427# point to the installed directory, not the build directory.
ea4a6c81 2428# Don't need to use LN_S here since we really do need ln -s and no substitutes.
2cfd79fe 2429 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
2430 if [ $$? -eq 0 ]; then \
2431 dir=`cd include; pwd`; \
2432 for i in $$files; do \
2433 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
2434 if expr "$$dest" : "$$dir.*" > /dev/null; then \
2435 rm -f $(libsubdir)/include/$$i; \
5822e312 2436 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
2cfd79fe 2437 fi; \
2438 done; \
2439 fi
32e6d418 2440
2cfd79fe 2441# Create or recreate the gcc private include file directory.
0d5bce1b 2442install-include-dir: installdirs
2cfd79fe 2443 -rm -rf $(libsubdir)/include
2444 mkdir $(libsubdir)/include
2445 -chmod a+rx $(libsubdir)/include
2446
2447# Install the include directory using tar.
58113712 2448install-headers-tar: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
aa2760ef 2449# We use `pwd`/include instead of just include to problems with CDPATH
2450# Unless a full pathname is provided, some shells would print the new CWD,
2451# found in CDPATH, corrupting the output. We could just redirect the
2452# output of `cd', but some shells lose on redirection within `()'s
2453 (cd `pwd`/include ; \
39fd4ce1 2454 tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar xpf - )
16db1e2d 2455# /bin/sh on some systems returns the status of the first tar,
2456# and that can lose with GNU tar which always writes a full block.
2457# So use `exit 0' to ignore its exit status.
2cfd79fe 2458
2459# Install the include directory using cpio.
58113712 2460install-headers-cpio: stmp-int-hdrs $(STMP_FIXPROTO) install-include-dir
aa2760ef 2461# See discussion about the use of `pwd` above
2462 cd `pwd`/include ; \
2463 find . -print | cpio -pdum $(libsubdir)/include
32e6d418 2464
35df828f 2465# Put assert.h where it won't override GNU libc's assert.h.
2466# It goes in a dir that is searched after GNU libc's headers;
2467# thus, the following conditionals are no longer needed.
2468# But it's not worth deleting them now.
2469## Don't replace the assert.h already there if it is not from GCC.
2470## This code would be simpler if it tested for -f ... && ! grep ...
2471## but supposedly the ! operator is missing in sh on some systems.
0d5bce1b 2472install-assert-h: assert.h installdirs
eb5a0caa 2473 if [ -f $(assertdir)/assert.h ]; \
2474 then \
95856242 2475 if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
a953974c 2476 then \
eb5a0caa 2477 rm -f $(assertdir)/assert.h; \
2478 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 2479 chmod a-x $(assertdir)/assert.h; \
eb5a0caa 2480 else true; \
2481 fi; \
2ba284c3 2482 else \
db9a0b19 2483 rm -f $(assertdir)/assert.h; \
2484 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 2485 chmod a-x $(assertdir)/assert.h; \
2ba284c3 2486 fi
32e6d418 2487
0c787992 2488# Use this target to install the program `collect2' under the name `collect2'.
0d5bce1b 2489install-collect2: collect2 installdirs
0c787992 2490 $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/collect2$(exeext)
c6396a0b 2491# Install the driver program as $(libsubdir)/gcc for collect2.
f403cbcb 2492 $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
c6396a0b 2493
32e6d418 2494# Cancel installation by deleting the installed files.
3e2f90b9 2495uninstall: intl.uninstall lang.uninstall $(UNINSTALL_CPP)
32e6d418 2496 -rm -rf $(libsubdir)
f403cbcb 2497 -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
2498 -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
5ef852e5 2499 -rm -rf $(bindir)/$(PROTOIZE_INSTALL_NAME)$(exeext)
2500 -rm -rf $(bindir)/$(PROTOIZE_CROSS_NAME)$(exeext)
2501 -rm -rf $(bindir)/$(UNPROTOIZE_INSTALL_NAME)$(exeext)
2502 -rm -rf $(bindir)/$(UNPROTOIZE_CROSS_NAME)$(exeext)
2503 -rm -rf $(bindir)/$(GCOV_INSTALL_NAME)$(exeext)
3cf6a465 2504 -rm -rf $(man1dir)/$(GCC_INSTALL_NAME)$(manext)
2505 -rm -rf $(man1dir)/$(GCC_CROSS_NAME)$(manext)
0b30807c 2506 -rm -rf $(man1dir)/cpp$(manext)
3cf6a465 2507 -rm -rf $(man1dir)/protoize$(manext)
2508 -rm -rf $(man1dir)/unprotoize$(manext)
9e042f31 2509 -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
2e9d8ccf 2510#\f
c6221df9 2511# These targets are for the dejagnu testsuites. The file site.exp
6c08487b 2512# contains global variables that all the testsuites will use.
2513
2514# Set to $(target_alias)/ for cross.
2515target_subdir = @target_subdir@
2516
2517site.exp: ./config.status Makefile
2518 @echo "Making a new config file..."
2519 -@rm -f ./tmp?
2520 @touch site.exp
2521 -@mv site.exp site.bak
2522 @echo "## these variables are automatically generated by make ##" > ./tmp0
2523 @echo "# Do not edit here. If you wish to override these values" >> ./tmp0
2524 @echo "# add them to the last section" >> ./tmp0
2525 @echo "set rootme \"`pwd`\"" >> ./tmp0
2526 @echo "set srcdir \"`cd ${srcdir}; pwd`\"" >> ./tmp0
2527 @echo "set host_triplet $(host_canonical)" >> ./tmp0
2528 @echo "set build_triplet $(build_canonical)" >> ./tmp0
2529 @echo "set target_triplet $(target)" >> ./tmp0
2530 @echo "set target_alias $(target_alias)" >> ./tmp0
2531# CFLAGS is set even though it's empty to show we reserve the right to set it.
2532 @echo "set CFLAGS \"\"" >> ./tmp0
2533 @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
2534# If newlib has been configured, we need to pass -B to gcc so it can find
2535# newlib's crt0.o if it exists. This will cause a "path prefix not used"
2536# message if it doesn't, but the testsuite is supposed to ignore the message -
2537# it's too difficult to tell when to and when not to pass -B (not all targets
2538# have crt0's). We could only add the -B if ../newlib/crt0.o exists, but that
2539# seems like too selective a test.
2540# ??? Another way to solve this might be to rely on linker scripts. Then
2541# theoretically the -B won't be needed.
2542# We also need to pass -L ../ld so that the linker can find ldscripts.
2543 @if [ -d $(objdir)/../$(target_subdir)newlib ] ; then \
2544 echo "set newlib_cflags \"-I$(objdir)/../$(target_subdir)newlib/targ-include -I\$$srcdir/../newlib/libc/include\"" >> ./tmp0; \
2545 echo "set newlib_ldflags \"-B$(objdir)/../$(target_subdir)newlib/\"" >> ./tmp0; \
2546 echo "append CFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2547 echo "append CXXFLAGS \" \$$newlib_cflags\"" >> ./tmp0; \
2548 echo "append LDFLAGS \" \$$newlib_ldflags\"" >> ./tmp0; \
2549 else true; \
2550 fi
2551 @if [ -d $(objdir)/../ld ] ; then \
2552 echo "append LDFLAGS \" -L$(objdir)/../ld\"" >> ./tmp0; \
2553 else true; \
2554 fi
16ee23c7 2555 echo "set tmpdir $(objdir)/testsuite" >> ./tmp0
6c08487b 2556 @echo "set srcdir \"\$${srcdir}/testsuite\"" >> ./tmp0
2557 @echo "## All variables above are generated by configure. Do Not Edit ##" >> ./tmp0
2558 @cat ./tmp0 > site.exp
2559 @cat site.bak | sed \
2560 -e '1,/^## All variables above are.*##/ d' >> site.exp
2561 -@rm -f ./tmp?
2562
5c872430 2563CHECK_TARGETS = check-gcc check-g++ check-g77 check-objc
6c08487b 2564
2565check: $(CHECK_TARGETS)
2566
20ab2c9c 2567testsuite/site.exp: site.exp
6c08487b 2568 if [ -d testsuite ]; then \
2569 true; \
2570 else \
2571 mkdir testsuite; \
2572 fi
2573 rm -rf testsuite/site.exp
2574 cp site.exp testsuite/site.exp
20ab2c9c 2575
2576check-g++: testsuite/site.exp
2577 -rootme=`pwd`; export rootme; \
6c08487b 2578 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2579 cd testsuite; \
2580 EXPECT=${EXPECT} ; export EXPECT ; \
2581 if [ -f $${rootme}/../expect/expect ] ; then \
57b96326 2582 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
6c08487b 2583 export TCL_LIBRARY ; fi ; \
2584 $(RUNTEST) --tool g++ $(RUNTESTFLAGS)
2585
20ab2c9c 2586check-gcc: testsuite/site.exp
2587 -rootme=`pwd`; export rootme; \
6c08487b 2588 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2589 cd testsuite; \
2590 EXPECT=${EXPECT} ; export EXPECT ; \
2591 if [ -f $${rootme}/../expect/expect ] ; then \
57b96326 2592 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
6c08487b 2593 export TCL_LIBRARY ; fi ; \
2594 $(RUNTEST) --tool gcc $(RUNTESTFLAGS)
2595
4230ead8 2596check-g77: testsuite/site.exp
2597 -rootme=`pwd`; export rootme; \
2598 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2599 cd testsuite; \
2600 EXPECT=${EXPECT} ; export EXPECT ; \
2601 if [ -f $${rootme}/../expect/expect ] ; then \
57b96326 2602 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
4230ead8 2603 export TCL_LIBRARY ; fi ; \
2604 $(RUNTEST) --tool g77 $(RUNTESTFLAGS)
2605
5c872430 2606check-objc: testsuite/site.exp
2607 -rootme=`pwd`; export rootme; \
2608 srcdir=`cd ${srcdir}; pwd` ; export srcdir ; \
2609 cd testsuite; \
2610 EXPECT=${EXPECT} ; export EXPECT ; \
2611 if [ -f $${rootme}/../expect/expect ] ; then \
57b96326 2612 TCL_LIBRARY=`cd .. ; cd ${srcdir}/../tcl/library ; pwd` ; \
5c872430 2613 export TCL_LIBRARY ; fi ; \
2614 $(RUNTEST) --tool objc $(RUNTESTFLAGS)
2615
32e6d418 2616# These exist for maintenance purposes.
2617
2618# Update the tags table.
2619TAGS: force
2620 cd $(srcdir); \
997d68fe 2621 mkdir tmp-tags; \
0b30807c 2622 mv -f c-parse.[ch] =*.[chy] tmp-tags; \
32e6d418 2623 etags *.y *.h *.c; \
997d68fe 2624 mv tmp-tags/* .; \
2625 rmdir tmp-tags
32e6d418 2626
997d68fe 2627# Create the distribution tar.gz file.
2628dist: tmp-gcc.xtar
2629 gzip --best < tmp-gcc.xtar > tmp-gcc.xtar.gz
2630 mv tmp-gcc.xtar.gz gcc-$(version).tar.gz
32e6d418 2631
997d68fe 2632tmp-gcc.xtar: distdir
6c76e6ec 2633# Make the distribution.
997d68fe 2634 tar -chf tmp-gcc.xtar gcc-$(version)
2635
2636distdir-cvs: force
a4867808 2637 if [ -d $(srcdir)/CVS ]; then cd $(srcdir) && cvs -r update; fi
6c76e6ec 2638
73027c94 2639# This target exists to do the initial work before the language specific
2640# stuff gets done.
0f557c81 2641distdir-start: doc $(srcdir)/INSTALL $(srcdir)/c-parse.y $(srcdir)/c-gperf.h \
0b30807c 2642 $(srcdir)/c-parse.c $(srcdir)/config.in $(srcdir)/version.c TAGS
be2828ce 2643 @case '$(USE_NLS)' in \
2644 yes) ;; \
2645 *) echo "configure with --enable-nls before making a distribution"; \
2646 exit 1;; \
2647 esac
2deaa28d 2648 @if grep -s "for version ${mainversion}" gcc.texi > /dev/null; \
630c76ba 2649 then true; \
0dce1b01 2650 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
630c76ba 2651 fi
131b361e 2652# Update the version number in README
be2828ce 2653 $(AWK) '$$1 " " $$2 " " $$3 == "This directory contains" \
131b361e 2654 { $$6 = version; print $$0 } \
2655 $$1 " " $$2 " " $$3 != "This directory contains"' \
a4867808 2656 version=$(version) $(srcdir)/README > tmp.README
131b361e 2657 mv tmp.README README
c6221df9 2658 -rm -rf gcc-$(version) tmp
32e6d418 2659# Put all the files in a temporary subdirectory
2660# which has the name that we want to have in the tar file.
c6396a0b 2661 mkdir tmp
2662 mkdir tmp/config
3bc8e4d6 2663 mkdir tmp/ginclude
a4867808 2664 mkdir tmp/objc
be2828ce 2665 mkdir tmp/intl
2666 mkdir tmp/po
a4867808 2667 for file in `(cd $(srcdir) && echo *[0-9a-zA-Z+])`; do \
2668 test -f $(srcdir)/$$file && $(LN_S) $(srcdir)/$$file tmp; \
c6396a0b 2669 done
a4867808 2670 if test "$(srcdir)" != "." ; then \
0b30807c 2671 for file in c-parse.c ; do \
a4867808 2672 test -f ./$$file && $(LN_S) ../$$file tmp; \
2673 done; \
2674 fi
2675 for file in `(cd $(srcdir)/config && echo *[0-9a-zA-Z+])`; do \
2676 if test -d $(srcdir)/config/$$file \
2677 && test "$$file" != RCS && test "$$file" != CVS; then \
2678 mkdir tmp/config/$$file; \
2679 for subfile in `(cd $(srcdir)/config/$$file && echo *[0-9a-zA-Z+])`; do \
2680 $(LN_S) $(srcdir)/config/$$file/$$subfile tmp/config/$$file; \
8a32ef6f 2681 done; \
8a32ef6f 2682 else \
a4867808 2683 $(LN_S) $(srcdir)/config/$$file tmp/config; \
8a32ef6f 2684 fi; \
32e6d418 2685 done
a4867808 2686 for file in `(cd $(srcdir)/ginclude && echo *[0-9a-zA-Z+])`; do \
2687 $(LN_S) $(srcdir)/ginclude/$$file tmp/ginclude; \
3bc8e4d6 2688 done
a4867808 2689 for file in `(cd $(srcdir)/objc && echo *[0-9a-zA-Z+])`; do \
2690 $(LN_S) $(srcdir)/objc/$$file tmp/objc; \
4f1fd857 2691 done
a4867808 2692 $(LN_S) .gdbinit tmp
73027c94 2693
2694# Finish making `distdir', after the languages have done their thing.
2695distdir-finish:
c6396a0b 2696 mv tmp gcc-$(version)
3bc8e4d6 2697# Get rid of everything we don't want in the distribution. We'd want
2698# this to use Makefile.in, but it doesn't have the `lang.foo' targets
2699# expanded.
be2828ce 2700 cd gcc-$(version); make extraclean distdir-check VERSION_DEP=
2701
2702distdir-check:
2703 ($(AWK) '/^[^#]/{print} /^#[A-Za-z]/{print substr($$1, 2)}' | sort) \
2704 < po/POTFILES.in > tmp.POTFILES
2705 ls [A-Za-z]*.[ch] [a-z]*/[A-Za-z]*.[ch] \
2706 [a-z]*/[a-z]*/[A-Za-z]*.[ch] | sort > tmp.src
2707 diff tmp.POTFILES tmp.src || { \
2708 echo "po/POTFILES.in and sources do not match -- please fix"; \
2709 exit 1; \
2710 }
2711 rm -f tmp.*
32e6d418 2712
be2828ce 2713distdir: distdir-cvs distdir-start intl.distdir intl.distdir-fixup \
2714 lang.distdir distdir-finish
73027c94 2715
c6221df9 2716# make diff oldversion=M.N
2deaa28d 2717# creates a diff file between an older distribution and this one.
2718# The -P option assumes this is GNU diff.
2719diff:
6a4a0b58 2720 diff -rc2P -x c-parse.y -x c-parse.c -x c-parse.h -x c-gperf.h \
0b30807c 2721 -x TAGS -x INSTALL -x configure -x config.in \
73027c94 2722 -x "gcc.??" -x "gcc.??s" -x gcc.aux -x "gcc.info*" \
2723 -x "cpp.??" -x "cpp.??s" -x cpp.aux -x "cpp.info*" \
2724 $(LANG_DIFF_EXCLUDES) \
997d68fe 2725 gcc-$(oldversion) gcc-$(version) > gcc-$(oldversion)-$(version).diff
2deaa28d 2726
fef36666 2727# A list of files to be destroyed during "lean" builds.
2728VOL_FILES=`echo $(OBJS) $(C_OBJS) $(LIBCPP_OBJS) *.c *.h gen*`
2729
58622ee7 2730bootstrap bootstrap-lean: force
41f63c60 2731# Only build the C compiler for stage1, because that is the only one that
2732# we can guarantee will build with the native compiler, and also it is the
2733# only thing useful for building stage2.
c74546f6 2734 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)" LANG_LIB2FUNCS=
32e6d418 2735 $(MAKE) stage1
fef36666 2736 -if test $@ = bootstrap-lean; then cd stage1 ; rm -f $(VOL_FILES); else true; fi
c6396a0b 2737# This used to define ALLOCA as empty, but that would lead to bad results
2738# for a subsequent `make install' since that would not have ALLOCA empty.
2739# To prevent `make install' from compiling alloca.o and then relinking cc1
2740# because alloca.o is newer, we permit these recursive makes to compile
2741# alloca.o. Then cc1 is newer, so it won't have to be relinked.
12626b99 2742 $(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)"
32e6d418 2743 $(MAKE) stage2
fef36666 2744 -if test $@ = bootstrap-lean; then rm -rf stage1; cd stage2 ; rm -f $(VOL_FILES); else true; fi
12626b99 2745 $(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)"
732395de 2746
e4051ec5 2747bootstrap2 bootstrap2-lean: force
12626b99 2748 $(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)"
32e6d418 2749 $(MAKE) stage2
fef36666 2750 -if test $@ = bootstrap2-lean; then rm -rf stage1; cd stage2 ; rm -f $(VOL_FILES); else true; fi
12626b99 2751 $(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)"
32e6d418 2752
e4051ec5 2753bootstrap3 bootstrap3-lean: force
12626b99 2754 $(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)"
32e6d418 2755
e4051ec5 2756bootstrap4 bootstrap4-lean: force
12626b99 2757 $(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)"
58622ee7 2758
48c6936b 2759# Compare the object files in the current directory with those in the
2760# stage2 directory.
2761
639b13ee 2762# ./ avoids bug in some versions of tail.
d7fba489 2763compare compare3 compare4 compare-lean compare3-lean compare4-lean: force
20becaef 2764 -rm -f .bad_compare
d7fba489 2765 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
62268150 2766 for file in *$(objext); do \
639b13ee 2767 tail +16c ./$$file > tmp-foo1; \
d7fba489 2768 tail +16c stage$$stage/$$file > tmp-foo2 \
20becaef 2769 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
48c6936b 2770 done
d7fba489 2771 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
be2828ce 2772 for dir in tmp-foo intl $(SUBDIRS); do \
62268150 2773 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2774 for file in $$dir/*$(objext); do \
73027c94 2775 tail +16c ./$$file > tmp-foo1; \
d7fba489 2776 tail +16c stage$$stage/$$file > tmp-foo2 \
20becaef 2777 && (cmp tmp-foo1 tmp-foo2 > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
9771451c 2778 done; \
3806ffea 2779 else true; fi; \
73027c94 2780 done
48c6936b 2781 -rm -f tmp-foo*
77333ad9 2782 case "$@" in compare | compare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^compare\([0-9][0-9]*\).*,\1,'` ;; esac; \
20becaef 2783 if [ -f .bad_compare ]; then \
2784 echo "Bootstrap comparison failure!"; \
2785 cat .bad_compare; \
2786 exit 1; \
d7fba489 2787 else \
2788 case "$@" in \
2789 *-lean ) rm -rf stage$$stage ;; \
05bdc491 2790 *) ;; \
d7fba489 2791 esac; true; \
20becaef 2792 fi
48c6936b 2793
d7fba489 2794# Compare the object files in the current directory with those in the
2795# stage2 directory. Use gnu cmp (diffutils v2.4 or later) to avoid
2796# running tail and the overhead of twice copying each object file.
2797
2798gnucompare gnucompare3 gnucompare4 gnucompare-lean gnucompare3-lean gnucompare4-lean: force
732395de 2799 -rm -f .bad_compare
d7fba489 2800 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
732395de 2801 for file in *$(objext); do \
d7fba489 2802 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
732395de 2803 done
d7fba489 2804 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
be2828ce 2805 for dir in tmp-foo intl $(SUBDIRS); do \
732395de 2806 if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2807 for file in $$dir/*$(objext); do \
d7fba489 2808 (cmp --ignore-initial=16 $$file stage$$stage/$$file > /dev/null 2>&1 || echo $$file differs >> .bad_compare) || true; \
732395de 2809 done; \
3806ffea 2810 else true; fi; \
732395de 2811 done
77333ad9 2812 case "$@" in gnucompare | gnucompare-lean ) stage=2 ;; * ) stage=`echo $@ | sed -e 's,^gnucompare\([0-9][0-9]*\).*,\1,'` ;; esac; \
732395de 2813 if [ -f .bad_compare ]; then \
2814 echo "Bootstrap comparison failure!"; \
2815 cat .bad_compare; \
2816 exit 1; \
d7fba489 2817 else \
2818 case "$@" in \
2819 *-lean ) rm -rf stage$$stage ;; \
2820 esac; true; \
732395de 2821 fi
2822
32e6d418 2823# Copy the object files from a particular stage into a subdirectory.
73027c94 2824stage1-start:
c6396a0b 2825 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
be2828ce 2826 -for dir in intl $(SUBDIRS) ; \
73027c94 2827 do \
21fde8a9 2828 if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
73027c94 2829 done
32e6d418 2830 -mv $(STAGESTUFF) stage1
be2828ce 2831 -mv intl/*$(objext) stage1/intl
b541ad9d 2832# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2833# dir will work properly.
ea4a6c81 2834 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage1 ; else true ; fi
2835 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage1 ; else true ; fi
2836 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage1 ; else true ; fi
32e6d418 2837 -rm -f stage1/libgcc.a
2838 -cp libgcc.a stage1
396c97db 2839 -if $(RANLIB_TEST_FOR_TARGET) ; then \
2840 $(RANLIB_FOR_TARGET) stage1/libgcc.a; \
2841 else true; fi
3efc89f0 2842 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2843 cp stage1/$${f} . ; \
7561ae90 2844 else true; \
3efc89f0 2845 fi; done
73027c94 2846stage1: force stage1-start lang.stage1
32e6d418 2847
73027c94 2848stage2-start:
c6396a0b 2849 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
be2828ce 2850 -for dir in intl $(SUBDIRS) ; \
73027c94 2851 do \
21fde8a9 2852 if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
73027c94 2853 done
32e6d418 2854 -mv $(STAGESTUFF) stage2
be2828ce 2855 -mv intl/*$(objext) stage2/intl
b541ad9d 2856# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2857# dir will work properly.
ea4a6c81 2858 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage2 ; else true ; fi
2859 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage2 ; else true ; fi
2860 -if [ -f collect-ld ] ; then $(LN_S) ../collect-ld$(exeext) stage2 ; else true ; fi
32e6d418 2861 -rm -f stage2/libgcc.a
2862 -cp libgcc.a stage2
396c97db 2863 -if $(RANLIB_TEST_FOR_TARGET) ; then \
2864 $(RANLIB_FOR_TARGET) stage2/libgcc.a; \
2865 else true; fi
3efc89f0 2866 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2867 cp stage2/$${f} . ; \
7561ae90 2868 else true; \
3efc89f0 2869 fi; done
73027c94 2870stage2: force stage2-start lang.stage2
32e6d418 2871
73027c94 2872stage3-start:
2388f67d 2873 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
be2828ce 2874 -for dir in intl $(SUBDIRS) ; \
73027c94 2875 do \
21fde8a9 2876 if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
73027c94 2877 done
32e6d418 2878 -mv $(STAGESTUFF) stage3
be2828ce 2879 -mv intl/*$(objext) stage3/intl
b541ad9d 2880# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2881# dir will work properly.
ea4a6c81 2882 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage3 ; else true ; fi
2883 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage3 ; else true ; fi
2884 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage3 ; else true ; fi
32e6d418 2885 -rm -f stage3/libgcc.a
2886 -cp libgcc.a stage3
396c97db 2887 -if $(RANLIB_TEST_FOR_TARGET) ; then \
2888 $(RANLIB_FOR_TARGET) stage3/libgcc.a; \
2889 else true; fi
3efc89f0 2890 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2891 cp stage3/$${f} . ; \
7561ae90 2892 else true; \
3efc89f0 2893 fi; done
73027c94 2894stage3: force stage3-start lang.stage3
32e6d418 2895
73027c94 2896stage4-start:
2388f67d 2897 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
be2828ce 2898 -for dir in intl $(SUBDIRS) ; \
73027c94 2899 do \
21fde8a9 2900 if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
73027c94 2901 done
32e6d418 2902 -mv $(STAGESTUFF) stage4
be2828ce 2903 -mv intl/*$(objext) stage4/intl
b541ad9d 2904# Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2905# dir will work properly.
ea4a6c81 2906 -if [ -f as$(exeext) ] ; then $(LN_S) ../as$(exeext) stage4 ; else true ; fi
2907 -if [ -f ld$(exeext) ] ; then $(LN_S) ../ld$(exeext) stage4 ; else true ; fi
2908 -if [ -f collect-ld$(exeext) ] ; then $(LN_S) ../collect-ld$(exeext) stage4 ; else true ; fi
32e6d418 2909 -rm -f stage4/libgcc.a
2910 -cp libgcc.a stage4
396c97db 2911 -if $(RANLIB_TEST_FOR_TARGET) ; then \
2912 $(RANLIB_FOR_TARGET) stage4/libgcc.a; \
2913 else true; fi
3efc89f0 2914 -for f in .. $(EXTRA_MULTILIB_PARTS); do if [ x$${f} != x.. ]; then \
2915 cp stage4/$${f} . ; \
7561ae90 2916 else true; \
3efc89f0 2917 fi; done
73027c94 2918stage4: force stage4-start lang.stage4
32e6d418 2919
2920# Copy just the executable files from a particular stage into a subdirectory,
2921# and delete the object files. Use this if you're just verifying a version
2922# that is pretty sure to work, and you are short of disk space.
62268150 2923risky-stage1: stage1
7cc2ce68 2924 -make clean
32e6d418 2925
62268150 2926risky-stage2: stage2
32e6d418 2927 -make clean
2928
62268150 2929risky-stage3: stage3
32e6d418 2930 -make clean
2931
62268150 2932risky-stage4: stage4
32e6d418 2933 -make clean
2934
2935#In GNU Make, ignore whether `stage*' exists.
a8514488 2936.PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
32e6d418 2937.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2938
2939force:
d54b81e0 2940
2941# ---
2942# The enquire rules are still useful for building new float-anything.h.
2943# Special flags for compiling enquire.
2944# We disable optimization to make floating point more reliable.
2945ENQUIRE_CFLAGS = -DNO_MEM -DNO_LONG_DOUBLE_IO -O0
2946ENQUIRE_LDFLAGS = $(LDFLAGS)
2947
2948# Enquire target (This is a variable so that a target can choose not to
2949# build it.)
2950ENQUIRE = enquire
2951
2952# Test to see whether <float.h> exists in the system header files,
2953# and is not derived from GCC.
2954FLOAT_H_TEST = \
2955 [ -f $(SYSTEM_HEADER_DIR)/float.h ] && \
2956 if grep 'ifndef _FLOAT_H___' $(SYSTEM_HEADER_DIR)/float.h >/dev/null; \
2957 then false; \
2958 else :; fi
2959# We pretend to not having a usable <float.h>, hence disable the FLOAT_H_TEST
2960# to ensure, we're emitting a full blown <float.h> ourselves.
2961FLOAT_H_TEST = false
2962
2963# Used to compile enquire with standard cc, but have forgotten why.
2964# Let's try with GCC.
2965enquire: enquire.o $(GCC_PARTS)
2966 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
2967enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
2968 if $(FLOAT_H_TEST); then \
2969 rm -f include/float.h; \
2970 SYS_FLOAT_H_WRAP=1; \
2971 else :; \
2972 SYS_FLOAT_H_WRAP=0; \
2973 fi; \
2974 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) \
2975 -DSYS_FLOAT_H_WRAP=$$SYS_FLOAT_H_WRAP \
2976 -I. -c $(srcdir)/enquire.c
2977
2978# Create float.h source for the native machine.
2979# Make it empty if we can use the system float.h without changes.
2980float.h-nat: enquire
2981 -./enquire -f > tmp-float.h
2982 grep '#define [^_]' tmp-float.h >/dev/null || true > tmp-float.h
2983 mv tmp-float.h float.h-nat
2984
2985# Create a dummy float.h source for a cross-compiler.
2986# ??? This isn't used anymore. Should we create config/float-unkn.h
2987# and make that the default float_format in configure?
2988float.h-cross:
2989 echo "#ifndef __GCC_FLOAT_NOT_NEEDED" > t-float.h-cross
2990 echo "#error float.h values not known for cross-compiler" >> t-float.h-cross
2991 echo "#endif" >> t-float.h-cross
2992 mv t-float.h-cross float.h-cross