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