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