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