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