]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/Makefile.in
(mtherr): Don't put newlines in error message string.
[thirdparty/gcc.git] / gcc / Makefile.in
CommitLineData
32e6d418 1# Makefile for GNU C compiler.
61aeb438 2# Copyright (C) 1987, 88, 90, 91, 92, 1993 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
18#the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20# The targets for external use include:
21# all, doc, proto, install, install-cross, install-cross-rest,
c6396a0b 22# uninstall, TAGS, mostlyclean, clean, distclean, realclean,
32e6d418 23# stage1, stage2, stage3, stage4.
24
c6396a0b 25# Suppress smart makes who think they know how to automake Yacc files
26.y.c:
27
32e6d418 28# Variables that exist for you to override.
29# See below for how to change them for certain systems.
30
31# Selection of languages to be made.
32LANGUAGES = c c++ objective-c proto
33
34ALLOCA =
1ab99fde 35ALLOCA_FLAGS =
94c53b91 36ALLOCA_FINISH = true
32e6d418 37
38# Various ways of specifying flags for compilations:
39# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
40# BOOT_CFLAGS is the value of CFLAGS to pass
41# to the stage2 and stage3 compilations
42# XCFLAGS is used for most compilations but not when using the GCC just built.
43XCFLAGS =
44CFLAGS = -g
45BOOT_CFLAGS = -O $(CFLAGS)
46# These exists to be overridden by the x-* and t-* files, respectively.
47X_CFLAGS =
48T_CFLAGS =
49
50X_CPPFLAGS =
51T_CPPFLAGS =
52
53CC = cc
54BISON = bison
9e74f24f 55BISONFLAGS = -v
32e6d418 56AR = ar
57OLDAR_FLAGS = qc
58AR_FLAGS = rc
59SHELL = /bin/sh
60# on sysV, define this as cp.
61INSTALL = install -c
62# These permit overriding just for certain files.
63INSTALL_PROGRAM = $(INSTALL)
64INSTALL_DATA = $(INSTALL)
65SYMLINK = ln -s
bc51108a 66MAKEINFO = makeinfo
f345940f 67TEXI2DVI = texi2dvi
32e6d418 68
69# Define this as & to perform parallel make on a Sequent.
70# Note that this has some bugs, and it seems currently necessary
71# to compile all the gen* files first by hand to avoid erroneous results.
72P =
73
74# How to invoke ranlib.
75RANLIB = ranlib
76# Test to use to see whether ranlib exists on the system.
77RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
78
79# Compiler to use for compiling libgcc1.a.
80# OLDCC should not be the GNU C compiler,
81# since that would compile typical libgcc1.a functions such as mulsi3
82# into infinite recursions.
83OLDCC = cc
84
85# CFLAGS for use with OLDCC, for compiling libgcc1.a.
86# NOTE: -O does not work on some Unix systems!
87CCLIBFLAGS = -O
88
c6396a0b 89# Version of ar to use when compiling libgcc1.a.
32e6d418 90OLDAR = ar
91
2cfd79fe 92# Target to use when installing include directory. Either
93# install-headers-tar or install-headers-cpio.
94INSTALL_HEADERS_DIR = install-headers-tar
95
b3781cc4 96# The GCC to use for compiling libgcc2.a, enquire, and cross-test.
97# Usually the one we just built.
32e6d418 98# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
79613d1b 99GCC_FOR_TARGET = ./xgcc -B./
32e6d418 100
101# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
102# It omits XCFLAGS, and specifies -B./.
b3781cc4 103# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
66e9b81a 104GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
32e6d418 105
106# Special flags for compiling enquire.
107# We disable optimization to make floating point more reliable.
f06c46e6 108ENQUIRE_CFLAGS = -DNO_MEM -DNO_STDDEF -DNO_LONG_DOUBLE_IO -O0
32e6d418 109ENQUIRE_LDFLAGS = $(LDFLAGS)
110
111# Tools to use when building a cross-compiler.
112# These are used because `configure' appends `cross-make'
113# to the makefile when making a cross-compiler.
114
115TARGET_TOOLPREFIX = $(tooldir)/bin/
116AR_FOR_TARGET = $(TARGET_TOOLPREFIX)ar
117AR_FOR_TARGET_FLAGS = rc
118RANLIB_FOR_TARGET = $(TARGET_TOOLPREFIX)ranlib
119RANLIB_TEST_FOR_TARGET = [ -f $(TARGET_TOOLPREFIX)ranlib ]
32e6d418 120
3f69fed5 121# Dir to search for system headers. Overridden by cross-make.
122SYSTEM_HEADER_DIR = /usr/include
123
8bd8ea06 124# There may be a premade insn-attrtab.c for this machine.
125# (You could rebuild it with genattrtab as usual, but it takes a long time.)
126# PREMADE_ATTRTAB is the file name of the file to use.
127# PREMADE_ATTRTAB_MD is the md file it corresponds to.
128PREMADE_ATTRTAB_MD = Makefile # Guaranteed not to cmp equal to md.
129PREMADE_ATTRTAB =
130
32e6d418 131target= ... `configure' substitutes actual target name here.
132xmake_file= ... `configure' substitutes actual x- file name here.
133tmake_file= ... `configure' substitutes actual t- file name here.
18196d1e 134version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
32e6d418 135
136# Directory where sources are, from where we are.
137srcdir = .
138# Common prefix for installation directories.
139# NOTE: This directory must exist when you start installation.
140prefix = /usr/local
2ffdcadf 141# Directory in which to put localized header files. On the systems with
142# gcc as the native cc, `local_prefix' may not be `prefix' which is
143# `/usr'.
144local_prefix = $(prefix)
c6396a0b 145# Directory in which to put host dependent programs and libraries
146exec_prefix = $(prefix)
32e6d418 147# Directory in which to put the executable for the command `gcc'
c6396a0b 148bindir = $(exec_prefix)/bin
32e6d418 149# Directory in which to put the directories used by the compiler.
c6396a0b 150libdir = $(exec_prefix)/lib
32e6d418 151# Directory in which the compiler finds executables, libraries, etc.
c6396a0b 152libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
f8330604 153# Directory for header file assert.h.
9671ce48 154includedir = $(local_prefix)/include
db9a0b19 155# assertdir is overridden in cross-make.
156assertdir = $(includedir)
32e6d418 157# Extension (if any) to put in installed man-page filename.
158manext = .1
159# Directory in which to put man pages.
160mandir = $(prefix)/man/man1
161# Directory in which to find other cross-compilation tools and headers.
162# Used in install-cross.
556d8d24 163tooldir = $(exec_prefix)/$(target)
f32abccb 164# Dir for temp files.
165tmpdir = /tmp
32e6d418 166
167# Additional system libraries to link with.
168CLIB=
169
170# Change this to a null string if obstacks are installed in the
171# system library.
172OBSTACK=obstack.o
173
174# Specify the rule for actually making libgcc1.a.
c6396a0b 175# The value may be empty; that means to do absolutely nothing
176# with or for libgcc1.a.
32e6d418 177LIBGCC1 = libgcc1.a
178
179# Specify the rule for actually making libgcc2.a.
180LIBGCC2 = libgcc2.a
181
182# Options to use when compiling libgcc2.a.
183# -g1 causes output of debug info only for file-scope entities.
184# we use this here because that should be enough, and also
185# so that -g1 will be tested.
690a93ea 186LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) -g1
187
188# Additional options to use when compiling libgcc2.a.
189# Some targets override this to -Iinclude
190LIBGCC2_INCLUDES =
191
192# Things which must be built before building libgcc2.a.
193# Some targets override this to stmp-int-hdrs
194LIBGCC2_DEPS =
32e6d418 195
196# List of extra executables that should be compiled for this target machine
197# that are used for compiling from source code to object code.
198# The rules for compiling them should be in the t-* file for the machine.
199EXTRA_PASSES =
200
c6396a0b 201# Like EXTRA_PASSES, but these are used when linking.
202EXTRA_PROGRAMS =
203
204# List of extra object files that should be compiled for this target machine.
32e6d418 205# The rules for compiling them should be in the t-* file for the machine.
206EXTRA_PARTS =
207
c6396a0b 208# List of extra object files that should be compiled and linked with
209# compiler proper (cc1, cc1obj, cc1plus).
210EXTRA_OBJS =
211
630c76ba 212# List of additional header files to install.
213# Often this is edited directly by `configure'.
214EXTRA_HEADERS =
215
79f818d0 216# Set this to `ld' to enable use of collect2.
217# USE_COLLECT2 =
218# It is convenient for configure to add the assignment at the beginning,
219# so don't override it here.
220
32e6d418 221# List of extra C and assembler files to add to libgcc1.a.
222# Assembler files should have names ending in `.asm'.
223LIB1FUNCS_EXTRA =
224
225# List of extra C and assembler files to add to libgcc2.a.
226# Assembler files should have names ending in `.asm'.
227LIB2FUNCS_EXTRA =
228
2cfd79fe 229# Default float.h source to use for cross-compiler.
230CROSS_FLOAT_H=float.h-cross
231
32e6d418 232# Program to convert libraries.
233LIBCONVERT =
234
235# Control whether header files are installed.
32e6d418 236INSTALL_HEADERS=install-headers
237
238# Select which version of fixincludes to use (I.E. regular versus SVR4)
6848a9c6 239# This value is overridden directly by configure.
32e6d418 240FIXINCLUDES=fixincludes
241
106a27e5 242# Additional directories of header files to run fixincludes on.
243# On most systems, this is empty.
244OTHER_FIXINCLUDES_DIRS=
245
77a164d8 246# List of things which should already be built whenever we try to use xgcc
32e6d418 247# to compile anything (without linking).
77a164d8 248GCC_PASSES=xgcc cc1 cpp $(EXTRA_PASSES)
32e6d418 249
77a164d8 250# List of things which should already be built whenever we try to use xgcc
32e6d418 251# to link anything.
79f818d0 252GCC_PARTS=$(GCC_PASSES) libgcc.a $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
32e6d418 253
32e6d418 254# Directory to link to, when using the target `maketest'.
255DIR = ../gcc
256
257# Flags to use when cross-building GCC.
258# Prefix to apply to names of object files when using them
259# to run on the machine we are compiling on.
260HOST_PREFIX=
261# Prefix to apply to names of object files when compiling them
262# to run on the machine we are compiling on.
263# The default for this variable is chosen to keep these rules
264# out of the way of the other rules for compiling the same source files.
265HOST_PREFIX_1=loser-
266HOST_CC=$(CC)
267HOST_CFLAGS=$(ALL_CFLAGS)
c6396a0b 268HOST_CLIB=$(CLIB)
32e6d418 269HOST_LDFLAGS=$(LDFLAGS)
270HOST_CPPFLAGS=$(ALL_CPPFLAGS)
c6396a0b 271HOST_ALLOCA=$(ALLOCA)
272HOST_MALLOC=$(MALLOC)
273HOST_OBSTACK=$(OBSTACK)
32e6d418 274
275# Choose the real default target.
276ALL=all.internal
277
278# Choose the real install target.
2cfd79fe 279INSTALL_TARGET=install-normal
280
281# Source for float.h. Overridden by cross-make.
282FLOAT_H=float.h-nat
32e6d418 283
284# End of variables for you to override.
285
286# Definition of `all' is here so that new rules inserted by sed
287# do not specify the default target.
288# The real definition is under `all.internal' (for native compilers)
289# or `all.cross' (for cross compilers).
c6396a0b 290all: all.indirect
32e6d418 291
131b361e 292# This tells GNU Make version 3 not to put all variables in the environment.
293.NOEXPORT:
294
32e6d418 295# sed inserts variable overrides after the following line.
a0a99f10 296####target overrides
297####host overrides
298####cross overrides
e77fd588 299####build overrides
32e6d418 300\f
301# Now figure out from those variables how to compile and link.
302
c6396a0b 303all.indirect: $(ALL)
304
34b1478f 305# IN_GCC tells obstack.h to use gstddef.h.
306INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
32e6d418 307
308# This is the variable actually used when we compile.
309ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
310
311# Likewise.
312ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
313
314# Even if ALLOCA is set, don't use it if compiling with GCC.
c6396a0b 315USE_ALLOCA= ` case "${CC}" in "${OLDCC}") echo ${ALLOCA} ;; esac `
316USE_HOST_ALLOCA= ` case "${HOST_CC}"@"${HOST_ALLOCA}" in "${OLDCC}"@?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
317USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
318USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
32e6d418 319
320# Dependency on obstack, alloca, malloc or whatever library facilities
321# are not installed in the system libraries.
322# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
323LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
324
325# Likewise, for use in the tools that must run on this machine
326# even if we are cross-building GCC.
327# We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
c6396a0b 328HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
32e6d418 329
330# How to link with both our special library facilities
331# and the system's installed libraries.
332LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(CLIB)
333
334# Likewise, for use in the tools that must run on this machine
335# even if we are cross-building GCC.
c6396a0b 336HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
337 $(HOST_CLIB)
32e6d418 338
339HOST_RTL = $(HOST_PREFIX)rtl.o
340HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
262d46de 341HOST_PRINT = $(HOST_PREFIX)print-rtl.o
32e6d418 342
343# Specify the directories to be searched for header files.
344# Both . and srcdir are used, in that order,
345# so that tm.h and config.h will be found in the compilation
346# subdirectory rather than in the source directory.
347INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
348SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
349
350# Always use -I$(srcdir)/config when compiling.
351.c.o:
352 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
353
354# This tells GNU make version 3 not to export all the variables
355# defined in this file into the environment.
356.NOEXPORT:
357\f
358# Lists of files for various purposes.
359
360# A list of all the language-specific executables.
361COMPILERS = cc1 cc1plus cc1obj
362
363# Language-specific object files for C.
1294913b 364C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o \
365 c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
32e6d418 366
367# Language-specific object files for Objectionable C.
1294913b 368OBJC_OBJS = objc-parse.o objc-act.o c-lex.o c-pragma.o \
369 c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
32e6d418 370
371# Language-specific object files for C++.
372CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
373 cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
374 cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
375 cp-class.o cp-init.o cp-method.o cp-except.o \
376 cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
377 $(CPLUS_INPUT) cp-spew.o c-common.o
378
379# Language-independent object files.
380OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
381 function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
6d9f2c4c 382 rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
79f818d0 383 dbxout.o sdbout.o dwarfout.o xcoffout.o \
32e6d418 384 integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
8a4b1e01 385 regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
32e6d418 386 insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
bdb66cef 387 insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
de6985af 388 insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
32e6d418 389
390# GEN files are listed separately, so they can be built before doing parallel
391# makes for cc1 or cc1plus. Otherwise sequent parallel make attempts to load
392# them before rtl.o is compiled.
393GEN= genemit genoutput genrecog genextract genflags gencodes genconfig genpeep
394
395# Files to be copied away after each stage in building.
396STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
397 insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
d95fa18c 398 insn-attr.h insn-attrtab.c insn-opinit.c \
32e6d418 399 stamp-flags stamp-config stamp-codes \
400 stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
d95fa18c 401 stamp-attr stamp-attrtab stamp-opinit stamp-proto \
32e6d418 402 genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
d95fa18c 403 genattrtab genattr genopinit \
79f818d0 404 $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
0b20f012 405 cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
32e6d418 406
407# Members of libgcc1.a.
408LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
409 _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
410 _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
411 _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
412 _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
413 _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
414 _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
415
416# Library members defined in libgcc2.c.
417LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
dc1db499 418 _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _ffsdi2 \
4b8f50a8 419 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
32e6d418 420 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
619c3e71 421 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
03ae18f4 422 __gcc_bcmp _varargs _eprintf _op_new _new_handler _op_delete \
c59af377 423 _bb _shtab _clear_cache _trampoline __main _exit _ctors
32e6d418 424
425# Header files that are made available under the same name
77a164d8 426# to programs compiled with GCC.
f8330604 427USER_H = va-alpha.h va-i860.h va-i960.h va-mips.h va-m88k.h \
131bde04 428 va-pa.h va-pyr.h va-sparc.h va-clipper.h va-spur.h proto.h $(EXTRA_HEADERS)
32e6d418 429
32e6d418 430# The files that "belong" in CONFIG_H are deliberately omitted
431# because having them there would not be useful in actual practice.
432# All they would do is cause complete recompilation every time
433# one of the machine description files is edited.
434# That may or may not be what one wants to do.
435# If it is, rm *.o is an easy way to do it.
436# CONFIG_H = config.h tm.h
437CONFIG_H =
438RTL_H = rtl.h rtl.def machmode.h machmode.def
439TREE_H = tree.h real.h tree.def machmode.h machmode.def
440CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
441\f
442# Avoid a lot of time thinking about remaking Makefile.in and *.def.
443.SUFFIXES: .in .def
444
79f818d0 445Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
32e6d418 446 $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
447 sh config.status
448
449all.internal: start.encap rest.encap
450# This is what to compile if making a cross-compiler.
87540b0a 451# Note that we can compile enquire using the cross-compiler just build,
452# although we can't run it on this machine.
453all.cross: native gcc-cross specs libgcc.a stmp-headers cross-test enquire $(EXTRA_PARTS)
e77fd588 454# This is what to compile if making gcc with a cross-compiler.
2cd018ae 455all.build: native xgcc $(EXTRA_PARTS)
32e6d418 456# This is what must be made before installing GCC and converting libraries.
3f69fed5 457start.encap: native xgcc specs $(LIBGCC1) xlimits.h
32e6d418 458# Use this to make a GCC that will be used only to recompile GCC.
459for-bootstrap: start.encap libgcc.a
460# These can't be made, with COFF encapsulation, until after GCC can run.
2cfd79fe 461rest.encap: libgcc.a stmp-headers $(EXTRA_PARTS)
32e6d418 462# This is what is made with the host's compiler
463# whether making a cross compiler or not.
79f818d0 464native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
32e6d418 465
466# Define the names for selecting languages in LANGUAGES.
467C c: cc1
468C++ c++: cc1plus
4f1fd857 469OBJC objc: cc1obj objc-runtime
470OBJECTIVE-C objective-c: cc1obj objc-runtime
32e6d418 471PROTO: proto
472
c6396a0b 473# Really, really stupid make features, such as SUN's KEEP_STATE, may force
474# a target to build even if it is up-to-date. So we must verify that
475# config.status does not exist before failing.
32e6d418 476config.status:
c6396a0b 477 @if [ ! -f config.status ] ; then \
478 echo You must configure gcc. Look at the INSTALL file for details.; \
479 false; \
480 else \
481 true; \
482 fi
32e6d418 483
840a6e8d 484# On the target machine, finish building a cross compiler.
485# This does the things that can't be done on the host machine.
d82b9c93 486rest.cross: libgcc.a gfloat.h specs
840a6e8d 487
d7330690 488# Verify that it works to compile and link cross-test.
489# If it does, then there are sufficient replacements for libgcc1.a.
6b2f2531 490cross-test: cross-test.o native gcc-cross libgcc.a $(GCC_PARTS)
d7330690 491 $(GCC_FOR_TARGET) $(GCC_CFLAGS) cross-test.o -o $@
492cross-test.o: cross-test.c native gcc-cross
493 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/cross-test.c
494
840a6e8d 495# Recompile all the language-independent object files.
496# This is used only if the user explicitly asks for it.
32e6d418 497compilations: ${OBJS}
498
77a164d8 499# We call this executable `xgcc' rather than `gcc'
500# to avoid confusion if the current directory is in the path
501# and CC is `gcc'. It is renamed to `gcc' when it is installed.
502xgcc: gcc.o version.o $(LIBDEPS)
503 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o xgcc gcc.o version.o $(LIBS)
840a6e8d 504
505# Dump a specs file to make -B./ read these specs over installed ones.
77a164d8 506specs: xgcc
c666179a 507 $(GCC_FOR_TARGET) -dumpspecs > specs
32e6d418 508
77a164d8 509# We do want to create an executable named `xgcc', so we can use it to
32e6d418 510# compile libgcc2.a.
511# Also create gcc-cross, so that install-common will install properly.
77a164d8 512gcc-cross: xgcc
513 cp xgcc gcc-cross
32e6d418 514
515cc1:$(P) $(C_OBJS) $(OBJS) $(LIBDEPS)
516 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
517
518cc1plus:$(P) $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
519 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
520
521cc1obj:$(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS)
522 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1obj $(OBJC_OBJS) $(OBJS) $(LIBS)
523
2cfd79fe 524# Copy float.h from its source.
d82b9c93 525gfloat.h: $(FLOAT_H)
526 cp $(FLOAT_H) gfloat.h
2cfd79fe 527
528# Create float.h source for the native machine.
529float.h-nat: enquire
121c5e86 530 -./enquire -f > tmp-float.h
531 mv tmp-float.h float.h-nat
2cfd79fe 532
533# Create a dummy float.h source for a cross-compiler.
534float.h-cross:
535 echo "#error float.h values not known for cross-compiler" > float.h-cross
32e6d418 536
537# Used to compile enquire with standard cc, but have forgotten why.
538# Let's try with GCC.
539enquire: enquire.o $(GCC_PARTS)
540 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
541enquire.o: $(srcdir)/enquire.c $(GCC_PASSES)
1a754c64 542# -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
543# -cp $(srcdir)/enquire.c . > /dev/null 2>&1
c6396a0b 544# Breaking this line caused a problem with one version of GNU make.
1a754c64 545 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
3f69fed5 546
547# Build the version of limits.h that we will install.
548xlimits.h: glimits.h limitx.h limity.h
549 if [ -f $(SYSTEM_HEADER_DIR)/limits.h ] ; then \
550 cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > xlimits.h; \
551 else \
552 cat $(srcdir)/glimits.h > xlimits.h; \
553 fi
32e6d418 554\f
555# Build libgcc.a.
556# This is done in two parts because some functions, in libgcc1.c,
77a164d8 557# must be compiled with something other than GCC,
558# while the rest, in libgcc2.c, must be compiled with xgcc.
559# That means we can't do libgcc2.c until after xgcc, cc1, etc.
32e6d418 560
561# Use this as value of LIBGCC1 to cause conversion to GNU library format.
562# LIBCONVERT should put its output in libgcc1.conv.
563libgcc1.conv: libgcc1.a
564 $(LIBCONVERT) libgcc1.a libgcc1.conv
565
566# Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
567# Make an empty file instead.
66e9b81a 568libgcc1.null: $(GCC_PASSES)
32e6d418 569 echo "__foo () {}" > dummy.c
570 $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
571 $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy.o
572 rm -f dummy.o dummy.c
573
fe918d35 574# This is $(LIBGCC1) for a cross-compiler.
575# We have no automatic way of building libgcc1.a,
576# so it's up to the installer to find a way to do that.
577# This rule deliberately does not depend on libgcc1.a
578# so that it will fail if the installer hasn't provided it.
579libgcc1.cross:
580 mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
581
32e6d418 582# Compile the library of arithmetic subroutines with the native compiler.
77a164d8 583# Don't compile it with GCC!
32e6d418 584# (That would cause most arithmetic functions to call themselves.)
585libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
586 -rm -f tmplibgcc1.a
587# Actually build it in tmplibgcc1.a, then rename at end,
588# so that libgcc1.a itself remains nonexistent if compilation is aborted.
589# -e causes any failing command to make this rule fail.
590# -e doesn't work in certain shells, so we test $$? as well.
591 set -e; \
592 for name in $(LIB1FUNCS); \
593 do \
594 echo $${name}; \
595 rm -f $${name}.o; \
596 $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
597 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
598 mv libgcc1.o $${name}.o; \
599 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
600 rm -f $${name}.o; \
601 done
602# Some shells crash when a loop has no items.
603# So make sure there is always at least one--`..'.
604# Then ignore it.
605# We don't use -e here because there are if statements
606# that should not make the command give up when the if condition is false.
607# Instead, we test for failure after each command where it matters.
c6396a0b 608 -for file in .. $(LIB1FUNCS_EXTRA); \
32e6d418 609 do \
610 if [ x$${file} != x.. ]; then \
611 name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
612 echo $${name}; \
613 if [ $${name}.asm = $${file} ]; then \
f32abccb 614 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 615 else true; fi; \
616 $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
617 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
618 $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
619 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
620 rm -f $${name}.[so]; \
621 else true; \
622 fi; \
623 done
624 mv tmplibgcc1.a libgcc1.a
625
626# Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
627# But recompiling cc1 should not force recompilation of libgcc2.a.
628# If you want to force recompilation, delete libgcc2.a.
690a93ea 629libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS)
32e6d418 630 -if [ -f libgcc2.ready ] ; then \
631 true; \
632 else \
633 touch libgcc2.ready; \
634 fi
635
636libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
33927595 637 machmode.h longlong.h gbl-ctors.h config.status
32e6d418 638# Actually build it in tmplibgcc2.a, then rename at end,
639# so that libgcc2.a itself remains nonexistent if compilation is aborted.
640 -rm -f tmplibgcc2.a
641# -e causes any failing command to make this rule fail.
642# -e doesn't work in certain shells, so we test $$? as well.
643 set -e; \
644 for name in $(LIB2FUNCS); \
645 do \
646 echo $${name}; \
c6396a0b 647 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
32e6d418 648 $(srcdir)/libgcc2.c -o $${name}.o; \
649 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
650 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
651 rm -f $${name}.o; \
652 done
653# Some shells crash when a loop has no items.
654# So make sure there is always at least one--`..'.
655# Then ignore it.
656# We don't use -e here because there are if statements
657# that should not make the command give up when the if condition is false.
658# Instead, we test for failure after each command where it matters.
c6396a0b 659 -for file in .. $(LIB2FUNCS_EXTRA); \
32e6d418 660 do \
661 if [ x$${file} != x.. ]; then \
662 name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
663 echo $${name}; \
664 if [ $${name}.asm = $${file} ]; then \
f32abccb 665 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 666 else true; fi; \
c6396a0b 667 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
32e6d418 668 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
669 $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
670 rm -f $${name}.[so]; \
671 else true; \
672 fi; \
673 done
674 mv tmplibgcc2.a libgcc2.a
675# These lines were deleted from above the mv command
676# because ranlibing libgcc.a itself should suffice.
677# -if [ x${HPUX_GAS} = x ] ; then \
678# if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi \
679# else true; fi
680
681# Combine the various libraries into a single library, libgcc.a.
682libgcc.a: $(LIBGCC1) $(LIBGCC2)
683 -rm -rf tmplibgcc.a libgcc.a tmpcopy
684 mkdir tmpcopy
c6396a0b 685 -if [ x$(LIBGCC1) != x ]; \
686 then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
687 else true; \
688 fi
32e6d418 689 (cd tmpcopy; $(AR) x ../$(LIBGCC2))
690 (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o)
691 rm -rf tmpcopy
692 -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
693# Actually build it in tmplibgcc.a, then rename at end,
694# so that libgcc.a itself remains nonexistent if compilation is aborted.
695 mv tmplibgcc.a libgcc.a
696
4f1fd857 697objc-runtime: libobjc.a
698
bd594491 699# Build the Objective C runtime library.
1e91114d 700libobjc.a: cc1obj libgcc2.ready $(USE_COLLECT2)
d6518ea8 701 if [ -d objc ]; then true; else mkdir objc; fi
4f1fd857 702 thisdir1=`pwd`; \
e5190fd1 703 srcdir1=`cd $(srcdir); pwd`; \
4f1fd857 704 cd objc; \
72bce1c3 705 $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
706 srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
707 GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
4f1fd857 708 GCC_CFLAGS="$(GCC_CFLAGS)"
553479e8 709 -rm -f libobjc.a
8281617f 710 ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
4f1fd857 711 -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
712
713# This is used by objc/Makefile if the user runs that directly.
714sublibobjc.a: cc1obj libgcc2.ready
e5190fd1 715 thisdir1=`pwd`; \
716 srcdir1=`cd $(srcdir); pwd`; \
717 cd objc; \
553479e8 718 $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
e5190fd1 719 srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
720 GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
721 GCC_CFLAGS="$(GCC_CFLAGS)"
32e6d418 722
723# Compile two additional files that are linked with every program
724# linked using GCC on system V, for the sake of C++ constructors.
725crtbegin.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
726 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \
c6396a0b 727 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
32e6d418 728
729crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
730 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
c6396a0b 731 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o
32e6d418 732\f
733# Compiling object files from source files.
734
735# Note that dependencies on obstack.h are not written
736# because that file is not part of GCC.
737# Dependencies on gvarargs.h are not written
738# because all that file does, when not compiling with GCC,
739# is include the system varargs.h.
740
741# C language specific files.
742
f678532a 743c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h c-parse.h \
744 c-tree.h input.h flags.h
32e6d418 745 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
ab2562cb 746$(srcdir)/c-parse.c $(srcdir)/c-parse.h: $(srcdir)/c-parse.y
747 cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
d7c691fa 748$(srcdir)/c-parse.y: $(srcdir)/c-parse.in
749 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
750 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
751 $(srcdir)/c-parse.in > $(srcdir)/c-parse.y
752
32e6d418 753c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
754c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
755c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
756c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h c-parse.h \
757 input.h flags.h
758c-aux-info.o : c-aux-info.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
759c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
b3781cc4 760c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
1294913b 761c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
32e6d418 762
763# C++ language specific files.
764
2ee73e3e 765cp-parse.o : $(srcdir)/cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h cp-lex.h
32e6d418 766 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
767 `echo $(srcdir)/cp-parse.c | sed 's,^\./,,'`
768
769$(srcdir)/cp-parse.c $(srcdir)/cp-parse.h : $(srcdir)/cp-parse.y
bb02c0b3 770 @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
32e6d418 771 cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
fe918d35 772 cd $(srcdir); grep '^#define[ ]*YYEMPTY' cp-parse.c >>cp-parse.h
32e6d418 773
774cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
2ee73e3e 775 $(srcdir)/cp-parse.h flags.h cp-lex.h
32e6d418 776cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
2ee73e3e 777 $(srcdir)/cp-parse.h $(srcdir)/cp-input.c flags.h cp-hash.h cp-lex.h
32e6d418 778cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
779 cp-lex.h cp-decl.h stack.h
780cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
781 cp-lex.h cp-decl.h
782cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
2ee73e3e 783cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
784cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
785cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
786cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
32e6d418 787cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
788cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
789cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
790cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
791cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
792cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
2ee73e3e 793cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
32e6d418 794cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
795 expr.h insn-codes.h
796cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
2ee73e3e 797cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H) input.h
32e6d418 798cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
799
79f818d0 800# To make a configuration always use collect2, set USE_COLLECT2 to ld.
801ld: collect2
802 rm -f ld
803 ln collect2 ld
804
32e6d418 805collect2 : collect2.o version.o $(LIBDEPS)
e77fd588 806# Don't try modifying collect2 (aka ld) in place--it might be linking this.
807 -rm -f collect2
32e6d418 808 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
809
810collect2.o : collect2.c $(CONFIG_H) gstab.h
5e03c63d 811 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
812 -DTARGET_MACHINE=\"$(target)\" \
813 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
32e6d418 814
815# Objectionable C language specific files.
816
817objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
222e139b 818 c-tree.h input.h flags.h objc-act.h
32e6d418 819 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
820$(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
821 cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
ab2562cb 822$(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
823 sed -e "/^ifc$$/,/^end ifc$$/d" \
824 -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
825 $(srcdir)/c-parse.in > $(srcdir)/objc-parse.y
32e6d418 826
7c4f0e88 827objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
828 flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
32e6d418 829
830# A file used by all variants of C.
831
832c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
833
834# Language-independent files.
835
1294913b 836gcc.o: gcc.c $(CONFIG_H) gvarargs.h config.status
32e6d418 837 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
838 -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
c6396a0b 839 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
32e6d418 840 -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
556d8d24 841 -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
ae0fea3a 842 -DTOOLDIR=\"$(tooldir)/\" \
8618ef50 843 $(MAYBE_TARGET_DEFAULT) \
32e6d418 844 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
845
846dumpvers: dumpvers.c
847
848version.o: version.c
849obstack.o: obstack.c
850
beb68ac1 851convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
852
32e6d418 853tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
854print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
855stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
856fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h
c6396a0b 857toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
aadb7c33 858 insn-attr.h xcoffout.h defaults.h
79f818d0 859 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
fe918d35 860 $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
861 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
32e6d418 862
863rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
864
865print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
866rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
867
35325097 868varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
869 defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
32e6d418 870function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
871 insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
872 recog.h output.h
873stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
874 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
d077a015 875expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
32e6d418 876 insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
877calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
d077a015 878 insn-flags.h gvarargs.h
32e6d418 879expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
880 insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
881explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
882 insn-config.h expr.h recog.h insn-flags.h insn-codes.h
883optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
a8a33ff5 884 insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
32e6d418 885dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
e7748130 886 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
32e6d418 887sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
888 insn-config.h reload.h
889dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
8a19d0d5 890 insn-config.h reload.h output.h defaults.h
79f818d0 891xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
32e6d418 892emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h \
893 regs.h insn-config.h insn-codes.h real.h expr.h
6d9f2c4c 894real.o : real.c $(CONFIG_H) $(TREE_H)
c6396a0b 895getpwd.o : getpwd.c $(CONFIG_H)
32e6d418 896
897integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
898 insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
899
900jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
901 insn-config.h insn-flags.h insn-codes.h expr.h real.h
902stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
903
904cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
905 insn-config.h recog.h
906loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
907 insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
908unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
909 integrate.h regs.h flags.h expr.h loop.h
910flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
911 basic-block.h regs.h hard-reg-set.h output.h
912combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h \
913 insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
f0a903c4 914 basic-block.h recog.h real.h hard-reg-set.h
32e6d418 915regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
4023cea7 916 basic-block.h regs.h insn-config.h recog.h reload.h real.h
32e6d418 917local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
918 regs.h hard-reg-set.h insn-config.h recog.h output.h
8a4b1e01 919global.o : global.c $(CONFIG_H) $(RTL_H) flags.h \
32e6d418 920 basic-block.h regs.h hard-reg-set.h insn-config.h output.h
921
922reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
923 reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
924reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
925 reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
926 basic-block.h recog.h output.h
927caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
928 regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
929reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
930 basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
931 flags.h output.h
932sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
933 flags.h insn-config.h insn-attr.h
934final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
935 recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
fe918d35 936 hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
32e6d418 937recog.o : recog.c $(CONFIG_H) $(RTL_H) \
938 regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
939 insn-flags.h insn-codes.h real.h
940reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
941 regs.h hard-reg-set.h flags.h insn-config.h
48c6936b 942
32e6d418 943aux-output.o : aux-output.c $(CONFIG_H) \
944 $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
945 insn-flags.h output.h insn-attr.h insn-codes.h
946
947# Normally this target is not used; but it is used if you
948# define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
949# from the GNU Emacs distribution.
32e6d418 950alloca.o: alloca.c
32e6d418 951 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
cc2af6ca 952 -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
32e6d418 953 $(ALLOCA_FINISH)
954\f
955# Generate header and source files from the machine description,
956# and compile them.
957
958.PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
959 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
960 insn-attr.h insn-attrtab.c
961
962# The following pair of rules has this effect:
963# genconfig is run only if the md has changed since genconfig was last run;
964# but the file insn-config.h is touched only when its contents actually change.
965
966# Each of the other insn-* files is handled by a similar pair of rules.
967
3f69fed5 968# This causes an anomaly in the results of make -n
969# because insn-* is older than stamp-*
970# and thus make -n thinks that insn-* will be updated
971# and force recompilation of things that depend on it.
9ac790c5 972# We use move-if-change precisely to avoid such recompilation.
3f69fed5 973# But there is no way to teach make -n that it will be avoided.
974
32e6d418 975# Each of the insn-*.[ch] rules has a semicolon at the end,
976# for otherwise the system Make on SunOS 4.1 never tries
876dc5b0 977# to recompile insn-*.o. To avoid problems and extra noise from
978# versions of make which don't like empty commands (nothing after the
979# trailing `;'), we call true for each.
32e6d418 980
c2a18965 981insn-config.h: stamp-config ; @true
32e6d418 982stamp-config : md genconfig $(srcdir)/move-if-change
983 ./genconfig md > tmp-config.h
984 $(srcdir)/move-if-change tmp-config.h insn-config.h
985 touch stamp-config
986
c2a18965 987insn-flags.h: stamp-flags ; @true
32e6d418 988stamp-flags : md genflags $(srcdir)/move-if-change
989 ./genflags md > tmp-flags.h
990 $(srcdir)/move-if-change tmp-flags.h insn-flags.h
991 touch stamp-flags
992
c2a18965 993insn-codes.h: stamp-codes ; @true
32e6d418 994stamp-codes : md gencodes $(srcdir)/move-if-change
995 ./gencodes md > tmp-codes.h
996 $(srcdir)/move-if-change tmp-codes.h insn-codes.h
997 touch stamp-codes
998
999insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
1000 insn-config.h insn-flags.h insn-codes.h
1001 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1002
c2a18965 1003insn-emit.c: stamp-emit ; @true
32e6d418 1004stamp-emit : md genemit $(srcdir)/move-if-change
1005 ./genemit md > tmp-emit.c
1006 $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1007 touch stamp-emit
1008
1009insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
1010 real.h output.h flags.h
1011 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1012
c2a18965 1013insn-recog.c: stamp-recog ; @true
32e6d418 1014stamp-recog : md genrecog $(srcdir)/move-if-change
1015 ./genrecog md > tmp-recog.c
1016 $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1017 touch stamp-recog
1018
bdb66cef 1019insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1020 insn-config.h flags.h rtl.h recog.h expr.h reload.h
1021 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1022
1023insn-opinit.c: stamp-opinit ; @true
1024stamp-opinit : md genopinit $(srcdir)/move-if-change
1025 ./genopinit md > tmp-opinit.c
1026 $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1027 touch stamp-opinit
1028
32e6d418 1029insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
1030 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1031
c2a18965 1032insn-extract.c: stamp-extract ; @true
32e6d418 1033stamp-extract : md genextract $(srcdir)/move-if-change
1034 ./genextract md > tmp-extract.c
1035 $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1036 touch stamp-extract
1037
1038insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1039 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1040
c2a18965 1041insn-peep.c: stamp-peep ; @true
32e6d418 1042stamp-peep : md genpeep $(srcdir)/move-if-change
1043 ./genpeep md > tmp-peep.c
1044 $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1045 touch stamp-peep
1046
1047insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1048 insn-attr.h insn-config.h
1049 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1050
c2a18965 1051insn-attr.h: stamp-attr ; @true
32e6d418 1052stamp-attr : md genattr $(srcdir)/move-if-change
1053 ./genattr md > tmp-attr.h
1054 $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1055 touch stamp-attr
1056
c2a18965 1057insn-attrtab.c: stamp-attrtab ; @true
32e6d418 1058stamp-attrtab : md genattrtab $(srcdir)/move-if-change
8bd8ea06 1059 if cmp -s $(PREMADE_ATTRTAB_MD) md; \
1060 then \
1061 echo Using $(PREMADE_ATTRTAB); \
ab866dde 1062 cp $(PREMADE_ATTRTAB) tmp-attrtab.c; \
8bd8ea06 1063 else \
1064 ./genattrtab md > tmp-attrtab.c; \
1065 fi
32e6d418 1066 $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1067 touch stamp-attrtab
1068
1069insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1070 hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1071 insn-codes.h
1072 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1073
c2a18965 1074insn-output.c: stamp-output ; @true
32e6d418 1075stamp-output : md genoutput $(srcdir)/move-if-change
1076 ./genoutput md > tmp-output.c
1077 $(srcdir)/move-if-change tmp-output.c insn-output.c
1078 touch stamp-output
1079\f
1080# Compile the programs that generate insn-* from the machine description.
1081# They are compiled with $(HOST_CC), and associated libraries,
1082# since they need to run on this machine
1083# even if GCC is being compiled to run on some other machine.
1084
1085# $(CONFIG_H) is omitted from the deps of the gen*.o
1086# because these programs don't really depend on anything
1087# about the target machine. They do depend on config.h itself,
1088# since that describes the host machine.
1089
1090genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1091 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
1092 genconfig.o $(HOST_RTL) $(HOST_LIBS)
1093
e77fd588 1094genconfig.o : genconfig.c $(RTL_H) hconfig.h
32e6d418 1095 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1096
1097genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1098 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
1099 genflags.o $(HOST_RTL) $(HOST_LIBS)
1100
e77fd588 1101genflags.o : genflags.c $(RTL_H) hconfig.h
32e6d418 1102 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1103
1104gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1105 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
1106 gencodes.o $(HOST_RTL) $(HOST_LIBS)
1107
e77fd588 1108gencodes.o : gencodes.c $(RTL_H) hconfig.h
32e6d418 1109 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1110
1111genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1112 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
1113 genemit.o $(HOST_RTL) $(HOST_LIBS)
1114
e77fd588 1115genemit.o : genemit.c $(RTL_H) hconfig.h
32e6d418 1116 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1117
bdb66cef 1118genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
1119 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genopinit \
1120 genopinit.o $(HOST_RTL) $(HOST_LIBS)
1121
1122genopinit.o : genopinit.c $(RTL_H) hconfig.h
1123 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1124
32e6d418 1125genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1126 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
1127 genrecog.o $(HOST_RTL) $(HOST_LIBS)
1128
e77fd588 1129genrecog.o : genrecog.c $(RTL_H) hconfig.h
32e6d418 1130 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1131
1132genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1133 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
1134 genextract.o $(HOST_RTL) $(HOST_LIBS)
1135
e77fd588 1136genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1137 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1138
1139genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1140 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
1141 genpeep.o $(HOST_RTL) $(HOST_LIBS)
1142
e77fd588 1143genpeep.o : genpeep.c $(RTL_H) hconfig.h
32e6d418 1144 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1145
1146genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1147 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
1148 genattr.o $(HOST_RTL) $(HOST_LIBS)
1149
e77fd588 1150genattr.o : genattr.c $(RTL_H) hconfig.h
32e6d418 1151 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1152
262d46de 1153genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
32e6d418 1154 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
262d46de 1155 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
32e6d418 1156
e77fd588 1157genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1158 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1159
1160genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1161 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
1162 genoutput.o $(HOST_RTL) $(HOST_LIBS)
1163
e77fd588 1164genoutput.o : genoutput.c $(RTL_H) hconfig.h
32e6d418 1165 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1166\f
1167# Compile the libraries to be used by gen*.
1168# If we are not cross-building, gen* use the same .o's that cc1 will use,
1169# and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1170# with the rules for rtl.o, alloca.o, etc.
1171$(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1172 rm -f $(HOST_PREFIX)rtl.c
e77fd588 1173 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
32e6d418 1174 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1175
262d46de 1176$(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1177 rm -f $(HOST_PREFIX)print-rtl.c
e77fd588 1178 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
262d46de 1179 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1180
32e6d418 1181$(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1182 rm -f $(HOST_PREFIX)rtlanal.c
e77fd588 1183 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
32e6d418 1184 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1185
1186$(HOST_PREFIX_1)alloca.o: alloca.c
1187 rm -f $(HOST_PREFIX)alloca.c
1188 cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1189 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1190
1191$(HOST_PREFIX_1)obstack.o: obstack.c
1192 rm -f $(HOST_PREFIX)obstack.c
e77fd588 1193 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
32e6d418 1194 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1195
1196$(HOST_PREFIX_1)malloc.o: malloc.c
1197 rm -f $(HOST_PREFIX)malloc.c
e77fd588 1198 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
32e6d418 1199 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1200
1201# This satisfies the dependency that we get if you cross-compile a compiler
1202# that does not need to compile alloca, malloc or whatever.
1203$(HOST_PREFIX_1):
1204 touch $(HOST_PREFIX_1)
1205\f
1206# Remake cpp and protoize.
1207
1208# Making the preprocessor
1209cpp: cccp
1210 -rm -f cpp
1211 ln cccp cpp
1212cccp: cccp.o cexp.o version.o $(LIBDEPS)
1213 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
1214cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1215 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1216$(srcdir)/cexp.c: $(srcdir)/cexp.y
1217 cd $(srcdir); $(BISON) -o cexp.c cexp.y
d6b50af2 1218cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
32e6d418 1219# The reason we use $(libdir)/g++-include rather than using libsubdir
1220# is for compatibility with the current version of libg++.
1221 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
c6396a0b 1222 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1223 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
2ffdcadf 1224 -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
c6396a0b 1225 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1226 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
ae0fea3a 1227 -DTOOLDIR=\"$(tooldir)/\" \
32e6d418 1228 -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1229
876dc5b0 1230# Note for the stamp targets, we run the program `true' instead of
1231# having an empty command (nothing following the semicolon).
1232
77a164d8 1233proto: config.status protoize unprotoize SYSCALLS.c.X
32e6d418 1234
c6396a0b 1235protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
32e6d418 1236 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
c6396a0b 1237 protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
c2a18965 1238protoize.o: stamp-proto ; @true
ab866dde 1239
1240unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1241 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1242 unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
c2a18965 1243unprotoize.o: stamp-proto ; @true
ab866dde 1244
1245stamp-proto: $(srcdir)/protoize.c getopt.h $(CONFIG_H)
32e6d418 1246 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1247 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1248 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1249 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1250 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1251 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1252 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1253 -DUNPROTOIZE $(srcdir)/protoize.c
1254 mv protoize.o unprotoize.o
32e6d418 1255 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1256 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1257 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1258 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1259 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1260 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1261 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1262 $(srcdir)/protoize.c
77a164d8 1263 touch stamp-proto
32e6d418 1264
1265getopt.o: $(srcdir)/getopt.c getopt.h
1266 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1267getopt1.o: $(srcdir)/getopt1.c getopt.h
1268 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1269
32e6d418 1270# This info describes the target machine, so compile with GCC just built.
79f818d0 1271SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES)
f678532a 1272 -rm -f SYSCALLS.c tmp-SYSCALLS.s
79f818d0 1273 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
32e6d418 1274 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
f678532a 1275 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1276 -rm -f SYSCALLS.c tmp-SYSCALLS.s
0b20f012 1277
1278test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
c548e550 1279 -rm -f tmp-proto.[cso]
262d46de 1280 cp $(srcdir)/protoize.c tmp-proto.c
1281 chmod u+w tmp-proto.c
c548e550 1282 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1283 $(CFLAGS) $(INCLUDES) \
0b20f012 1284 -DGCC_INCLUDE_DIR=0 \
1285 -DGPLUSPLUS_INCLUDE_DIR=0 \
1286 -DCROSS_INCLUDE_DIR=0 \
46073b39 1287 -DTOOL_INCLUDE_DIR=0 \
262d46de 1288 -DSTD_PROTO_DIR=0" tmp-proto.c
1a754c64 1289 @echo '**********' Expect 400 lines of differences.
c548e550 1290 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1291 -wc -l tmp-proto.diff
1292 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1293 $(CFLAGS) $(INCLUDES) \
0b20f012 1294 -DGCC_INCLUDE_DIR=0 \
1295 -DGPLUSPLUS_INCLUDE_DIR=0 \
1296 -DCROSS_INCLUDE_DIR=0 \
46073b39 1297 -DTOOL_INCLUDE_DIR=0 \
262d46de 1298 -DSTD_PROTO_DIR=0" tmp-proto.c
0b20f012 1299 @echo Expect zero differences.
262d46de 1300 diff $(srcdir)/protoize.c tmp-proto.c | cat
c548e550 1301 -rm -f tmp-proto.[cso]
32e6d418 1302\f
2cfd79fe 1303# Build the include directory. The stamp files are stmp-* rather than
1304# stamp-* so that mostlyclean does not force the include directory to
1305# be rebuilt.
1306
690a93ea 1307# Build the include directory except for float.h (which depends upon
1308# enquire).
b7d4d520 1309stmp-int-hdrs: stmp-fixinc $(USER_H) gvarargs.h gstdarg.h gstddef.h \
1310 xlimits.h objc-headers
2cfd79fe 1311# Copy in the headers provided with gcc.
1312# The sed command gets just the last file name component;
1313# this is necessary because VPATH could add a dirname.
1314# Using basename would be simpler, but some systems don't have it.
1315 objdir=`pwd`; \
1316 cd $(srcdir); \
1317 for file in $(USER_H); do \
1318 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
b5850e21 1319 rm -f $$objdir/include/$$realfile; \
2cfd79fe 1320 cp $$realfile $$objdir/include; \
1321 chmod a+r $$objdir/include/$$realfile; \
1322 done
b5850e21 1323 rm -f include/varargs.h
2cfd79fe 1324 cp $(srcdir)/gvarargs.h include/varargs.h
1325 chmod a+r include/varargs.h
b5850e21 1326 rm -f include/stdarg.h
2cfd79fe 1327 cp $(srcdir)/gstdarg.h include/stdarg.h
1328 chmod a+r include/stdarg.h
b5850e21 1329 rm -f include/stddef.h
2cfd79fe 1330 cp $(srcdir)/gstddef.h include/stddef.h
1331 chmod a+r include/stddef.h
b5850e21 1332 rm -f include/limits.h
2cfd79fe 1333 cp xlimits.h include/limits.h
1334 chmod a+r include/limits.h
2cfd79fe 1335# Install the README
b5850e21 1336 rm -f include/README
2cfd79fe 1337 cp $(srcdir)/README-fixinc include/README
1338 chmod a+r include/README
690a93ea 1339 touch stmp-int-hdrs
1340
1341# Build the complete include directory.
1342stmp-headers: stmp-int-hdrs gfloat.h
1343 rm -f include/float.h
1344 cp gfloat.h include/float.h
1345 chmod a+r include/float.h
2cfd79fe 1346 touch stmp-headers
1347
1348# Build fixed copies of system files.
b7d4d520 1349stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h
2cfd79fe 1350 rm -rf include
1351 mkdir include
92d223d1 1352 if [ x$(FIXINCLUDES) != xMakefile.in ]; \
6848a9c6 1353 then \
1354 for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1355 if [ -d $$dir ]; \
1356 then \
1357 $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir); \
1358 else true; fi; \
92d223d1 1359 done; \
6848a9c6 1360 else true; \
1361 fi
b7d4d520 1362 rm -f include/syslimits.h
1363 if [ -f include/limits.h ]; then \
1364 mv include/limits.h include/syslimits.h; \
1365 else \
1366 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1367 fi
1368 chmod a+r include/syslimits.h
9e74f24f 1369 touch stmp-fixinc
7c4f0e88 1370
1371# copy objc header files
1372objc-headers: force
a5199ad9 1373 if [ -d objc ]; then true; else mkdir objc; fi
7c4f0e88 1374 thisdir1=`pwd`; \
1375 srcdir1=`cd $(srcdir); pwd`; \
1376 cd objc; \
1377 $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
1378 srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1379 GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1380 GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
1381
2cfd79fe 1382\f
32e6d418 1383# Remake the info files.
1384
6c76e6ec 1385doc: $(srcdir)/cpp.info $(srcdir)/gcc.info
32e6d418 1386
630c76ba 1387$(srcdir)/cpp.info: cpp.texi
bc51108a 1388 $(MAKEINFO) `echo $(srcdir)/cpp.texi | sed 's,^\./,,'`
32e6d418 1389
630c76ba 1390#$(srcdir)/gplus.info: gplus.texi
bc51108a 1391# $(MAKEINFO) `echo $(srcdir)/gplus.texi | sed 's,^\./,,'`
32e6d418 1392
630c76ba 1393$(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1394 md.texi rtl.texi tm.texi
bc51108a 1395 $(MAKEINFO) `echo $(srcdir)/gcc.texi | sed 's,^\./,,'`
630c76ba 1396
64616031 1397# This works with GNU Make's default rule.
1398$(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1399 md.texi rtl.texi tm.texi
f345940f 1400 $(TEXI2DVI) $<
64616031 1401
1402# This works with GNU Make's default rule.
1403$(srcdir)/cpp.dvi: cpp.texi
f345940f 1404 $(TEXI2DVI) $<
64616031 1405
630c76ba 1406$(srcdir)/INSTALL: install1.texi install.texi
bc51108a 1407 $(MAKEINFO) -D INSTALLONLY --no-header `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
32e6d418 1408\f
1409# Deletion of files made during compilation.
1410# There are four levels of this:
79f818d0 1411# `mostlyclean', `clean', `distclean' and `realclean'.
32e6d418 1412# `mostlyclean' is useful while working on a particular type of machine.
c6396a0b 1413# It deletes most, but not all, of the files made by compilation.
32e6d418 1414# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
c6396a0b 1415# `clean' deletes everything made by running `make all'.
79f818d0 1416# `distclean' also deletes the files made by config.
32e6d418 1417# `realclean' also deletes everything that could be regenerated automatically.
1418
79f818d0 1419
32e6d418 1420mostlyclean:
1421 -rm -f $(STAGESTUFF)
343505c4 1422# Clean the objc subdir if we created one.
1423 if [ -d objc ]; then \
1424 srcdir1=`cd $(srcdir); pwd`; \
8c6da369 1425 cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
343505c4 1426 else true; fi
bd594491 1427 -rm -f libobjc.a
32e6d418 1428# Delete the temporary source copies for cross compilation.
1429 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1430 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1431 -rm -f $(HOST_PREFIX_1)obstack.c
1432# Delete the temp files made in the course of building libgcc.a.
590613c7 1433 -rm -f tmplibgcc* tmpcopy xlimits.h
32e6d418 1434 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1435# Delete other temporary files.
83bd2d97 1436 -rm -f tmp-float.h tmp-gcc.xtar.Z
f678532a 1437 -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
32e6d418 1438# Delete the stamp files.
1439 -rm -f stamp-* tmp-*
c6396a0b 1440# Delete debugging dump files.
32e6d418 1441 -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
c6396a0b 1442 -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
1443# Delete some files made during installation.
d82b9c93 1444 -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
79f818d0 1445 -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s
c6396a0b 1446# Delete unwanted output files from TeX.
1447 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
79f818d0 1448# Delete sorted indices we don't actually use.
1449 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
c6396a0b 1450# Delete core dumps.
8d14a5ba 1451 -rm -f core config/core
32e6d418 1452
79f818d0 1453# Delete all files made by compilation
1454# that don't exist in the distribution.
32e6d418 1455clean: mostlyclean
8bd8ea06 1456# It may not be quite desirable to delete unprotoize.c here,
1457# but the spec for `make clean' requires it.
1458# Using unprotoize.c is not quite right in the first place,
1459# but what better way is there?
840a6e8d 1460 -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready libgcc1.null
131b361e 1461 -rm -f *.dvi
2cfd79fe 1462# Delete the include directory.
1463 -rm -rf stmp-* include
32e6d418 1464
79f818d0 1465# Delete all files that users would normally create
1466# while building and installing GCC.
c6396a0b 1467distclean: clean
7267fd67 1468 -rm -f tm.h aux-output.c config.h md config.status tconfig.h hconfig.h
ab866dde 1469 -rm -f Makefile *.oaux
79f818d0 1470 -rm -fr stage1 stage2 stage3 stage4
c6396a0b 1471
1472# Delete anything likely to be found in the source directory
1473# that shouldn't be in the distribution.
1474extraclean: distclean
bbbdbddd 1475 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
131b361e 1476 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
61aeb438 1477 -rm -f *.dvi *.oaux *.d *.[zZ] *.tar *.xtar *diff
8d14a5ba 1478 -rm -f *lose config/*lose
3a0781a0 1479 -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
32e6d418 1480
1481# Get rid of every file that's generated from some other file.
1482# Most of these files ARE PRESENT in the GCC distribution.
c6396a0b 1483realclean: distclean
c373bd56 1484 -rm -f c-parse.y objc-parse.y
32e6d418 1485 -rm -f cp-parse.c cp-parse.h cp-parse.output
1486 -rm -f objc-parse.c objc-parse.output
32e6d418 1487 -rm -f c-parse.c c-parse.h c-parse.output
1488 -rm -f cexp.c cexp.output TAGS
c6396a0b 1489 -rm -f cpp.info* cpp.??s cpp.*aux
1490 -rm -f gcc.info* gcc.??s gcc.*aux
1491 -rm -f gplus.info* gplus.??s gplus.*aux
32e6d418 1492\f
1493# Entry points `install' and `uninstall'.
c6396a0b 1494# Also use `install-collect2' to install collect2 when the config files don't.
32e6d418 1495
3f69fed5 1496# The semicolon is to prevent the install.sh -> install default rule
876dc5b0 1497# from doing anything. Having it run true helps avoid problems and
1498# noise from versions of make which don't like to have null commands.
c2a18965 1499install: $(INSTALL_TARGET) ; @true
32e6d418 1500
2cfd79fe 1501# Copy the compiler files into directories where they will be run.
556d8d24 1502install-normal: install-common $(INSTALL_HEADERS) install-libgcc install-man
32e6d418 1503
e77fd588 1504# Do nothing while making gcc with a cross-compiler. The person who
1505# makes gcc for the target machine has to know how to put a complete
1506# gcc together by hand.
1507install-build: force
1508 @echo You have to install gcc on your target machine by hand.
1509
32e6d418 1510# Run this on the target machine
1511# to finish installation of cross compiler.
1512install-cross-rest: install-float-h-cross
1513
1514# Install float.h for cross compiler.
1515# Run this on the target machine!
1516install-float-h-cross:
9f10de4b 1517# if [ -f enquire ] ; then true; else false; fi
1518# Note: don't use -. We should fail right away if enquire was not made.
1519 ./enquire -f > $(tmpdir)/float.h
32e6d418 1520 -rm -f $(libsubdir)/include/float.h
f32abccb 1521 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
1522 -rm -f $(tmpdir)/float.h
32e6d418 1523 chmod a-x $(libsubdir)/include/float.h
1524
1525# Create the installation directory.
1526install-dir:
2388f67d 1527 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
1528 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
d0561ed0 1529# This dir isn't curretly searched by cpp.
1530# -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
2388f67d 1531 -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
1532 -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
630c76ba 1533 -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
2388f67d 1534 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
69184f78 1535 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
3ecfbab6 1536 -if [ -f gcc-cross ] ; \
10b27eb7 1537 then \
fea00636 1538 if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi ; \
10b27eb7 1539 if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi ; \
3ecfbab6 1540 else true; \
1541 fi
32e6d418 1542# We don't use mkdir -p to create the parents of mandir,
1543# because some systems don't support it.
1544# Instead, we use this technique to create the immediate parent of mandir.
2388f67d 1545 -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
32e6d418 1546 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
1547 -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
1548
1549# Install the compiler executables built during cross compilation.
90c04b70 1550# Deps on $(srcdir)/g++ $(srcdir)/c++ would be natural here,
1551# but the latter would get confused with the target `c++'.
1552install-common: native install-dir xgcc $(EXTRA_PARTS)
32e6d418 1553 for file in $(COMPILERS); do \
1554 if [ -f $$file ] ; then \
1555 rm -f $(libsubdir)/$$file; \
1556 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1557 else true; \
1558 fi; \
1559 done
79f818d0 1560 for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
32e6d418 1561 if [ x"$$file" != x.. ]; then \
1562 rm -f $(libsubdir)/$$file; \
1563 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1564 else true; fi; \
1565 done
8a4b1e01 1566# Don't mess with specs if it doesn't exist yet.
94c53b91 1567 -if [ -f specs ] ; then \
1568 rm -f $(libsubdir)/specs; \
8a4b1e01 1569 $(INSTALL_DATA) specs $(libsubdir)/specs; \
1570 fi
6005991e 1571# Install the driver program as $(target)-gcc
32e6d418 1572# and also as either gcc (if native) or $(tooldir)/bin/gcc.
1573 -if [ -f gcc-cross ] ; then \
7fdd7d43 1574 rm -f $(bindir)/$(target)-gcc; \
6005991e 1575 $(INSTALL_PROGRAM) gcc-cross $(bindir)/$(target)-gcc; \
32e6d418 1576 if [ -d $(tooldir)/bin/. ] ; then \
1577 rm -f $(tooldir)/bin/gcc; \
1578 $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
32e6d418 1579 else true; fi; \
1580 else \
1581 rm -f $(bindir)/gcc; \
77a164d8 1582 $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
6005991e 1583 rm -f $(bindir)/$(target)-gcc-1; \
1584 ln $(bindir)/gcc $(bindir)/$(target)-gcc-1; \
1585 mv $(bindir)/$(target)-gcc-1 $(bindir)/$(target)-gcc; \
32e6d418 1586 fi
9cee99f7 1587# Install protoize if it was compiled.
ae0fea3a 1588 -if [ -f protoize ]; \
9cee99f7 1589 then \
1590 rm -f $(bindir)/protoize; \
1591 $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
1592 rm -f $(bindir)/unprotoize; \
1593 $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
1594 rm -f $(libsubdir)/SYSCALLS.c.X; \
1595 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
1596 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
1597 fi
1fe386e3 1598 -if [ -f cc1plus ] ; then \
1599 rm -f $(bindir)/c++ ; \
1600 $(INSTALL_PROGRAM) $(srcdir)/c++ $(bindir)/c++ ; \
1601 rm -f $(bindir)/g++ ; \
1602 $(INSTALL_PROGRAM) $(srcdir)/g++ $(bindir)/g++ ; \
1603 fi
32e6d418 1604 -rm -f $(libsubdir)/cpp
1605 $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
1606
32e6d418 1607# Install the man pages.
77a164d8 1608install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 $(srcdir)/g++.1
32e6d418 1609 -rm -f $(mandir)/gcc$(manext)
ab866dde 1610 -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
1611 -chmod a-x $(mandir)/gcc$(manext)
c6396a0b 1612 -rm -f $(mandir)/cccp$(manext)
ab866dde 1613 -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
1614 -chmod a-x $(mandir)/cccp$(manext)
ab866dde 1615 -$(INSTALL_DATA) $(srcdir)/g++.1 $(mandir)/g++$(manext)
1616 -chmod a-x $(mandir)/g++$(manext)
32e6d418 1617
1618# Install the library.
807a86f6 1619install-libgcc: libgcc.a install-dir
32e6d418 1620 -if [ -f libgcc.a ] ; then \
1621 rm -f $(libsubdir)/libgcc.a; \
1622 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
1623 if $(RANLIB_TEST) ; then \
1624 (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
1625 chmod a-x $(libsubdir)/libgcc.a; \
1626 else true; fi
1627
f32abccb 1628# Install the objc run time library.
1629install-libobjc: libobjc.a install-dir
1630 -if [ -f libobjc.a ] ; then \
1631 rm -f $(libsubdir)/libobjc.a; \
1632 $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
1633 if $(RANLIB_TEST) ; then \
1634 (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
1635 chmod a-x $(libsubdir)/libobjc.a; \
1636 else true; fi
1637
2cfd79fe 1638# Install all the header files built in the include subdirectory.
1639install-headers: install-include-dir $(INSTALL_HEADERS_DIR) install-assert-h
1640# Fix symlinks to absolute paths in the installed include directory to
1641# point to the installed directory, not the build directory.
1642 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
1643 if [ $$? -eq 0 ]; then \
1644 dir=`cd include; pwd`; \
1645 for i in $$files; do \
1646 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
1647 if expr "$$dest" : "$$dir.*" > /dev/null; then \
1648 rm -f $(libsubdir)/include/$$i; \
5822e312 1649 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
2cfd79fe 1650 fi; \
1651 done; \
1652 fi
32e6d418 1653
2cfd79fe 1654# Create or recreate the gcc private include file directory.
2fc395f6 1655install-include-dir: install-dir
2cfd79fe 1656 -rm -rf $(libsubdir)/include
1657 mkdir $(libsubdir)/include
1658 -chmod a+rx $(libsubdir)/include
1659
1660# Install the include directory using tar.
1661install-headers-tar: stmp-headers install-include-dir
bea171c6 1662 cd include; tar cf - . | (cd $(libsubdir)/include; tar xpBf - )
2cfd79fe 1663
1664# Install the include directory using cpio.
1665install-headers-cpio: stmp-headers install-include-dir
bea171c6 1666 cd include; find . -print | cpio -pdum $(libsubdir)/include
32e6d418 1667
88d74741 1668# Put assert.h in /usr/local/include, so it won't override GNU libc's assert.h.
1669# Don't replace the assert.h already there if it is not from GCC.
eb5a0caa 1670# This code would be simpler if it tested for -f ... && ! grep ...
1671# but supposedly the ! operator is missing in sh on some systems.
2cfd79fe 1672install-assert-h: assert.h install-dir
eb5a0caa 1673 if [ -f $(assertdir)/assert.h ]; \
1674 then \
95856242 1675 if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
a953974c 1676 then \
eb5a0caa 1677 rm -f $(assertdir)/assert.h; \
1678 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1679 chmod a-x $(assertdir)/assert.h; \
eb5a0caa 1680 else true; \
1681 fi; \
2ba284c3 1682 else \
db9a0b19 1683 rm -f $(assertdir)/assert.h; \
1684 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1685 chmod a-x $(assertdir)/assert.h; \
2ba284c3 1686 fi
32e6d418 1687
c6396a0b 1688# Use this target to install the program `collect2' under the name `ld'.
1689install-collect2: collect2
1690 $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
1691# Install the driver program as $(libsubdir)/gcc for collect2.
77a164d8 1692 $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
c6396a0b 1693
32e6d418 1694# Cancel installation by deleting the installed files.
1695uninstall:
1696 -rm -rf $(libsubdir)
1697 -rm -rf $(bindir)/gcc
32e6d418 1698 -rm -rf $(bindir)/protoize
1699 -rm -rf $(bindir)/unprotoize
1700 -rm -rf $(mandir)/gcc$(manext)
3b50af09 1701 -rm -rf $(mandir)/g++$(manext)
c6396a0b 1702 -rm -rf $(mandir)/cccp$(manext)
32e6d418 1703 -rm -rf $(mandir)/protoize$(manext)
1704 -rm -rf $(mandir)/unprotoize$(manext)
1705\f
1706# These exist for maintenance purposes.
1707
1708# Update the tags table.
1709TAGS: force
1710 cd $(srcdir); \
1711 mkdir temp; \
8c1b3852 1712 mv -f c-parse.[ch] cp-parse.[ch] objc-parse.c cexp.c =*.[chy] temp; \
32e6d418 1713 etags *.y *.h *.c; \
1714 mv temp/* .; \
1715 rmdir temp
1716
1717# Create the distribution tar file.
1718#dist: gcc-$(version).tar.Z
1719dist: gcc.xtar.Z
1720
c6396a0b 1721gcc.xtar.Z: gcc.xtar
32e6d418 1722 compress < gcc.xtar > tmp-gcc.xtar.Z
1723 mv tmp-gcc.xtar.Z gcc.xtar.Z
1724
1725#gcc-$(version).tar.Z: gcc-$(version).tar
1726# compress < gcc-$(version).tar > gcc-$(version).tar.Z
1727
1728#gcc-$(version).tar:
6c76e6ec 1729gcc.xtar: distdir
1730# Make the distribution.
1731 tar chf gcc.xtar gcc-$(version)
1732
3b50af09 1733distdir: doc $(srcdir)/INSTALL c-parse.y objc-parse.y cp-parse.y \
1734 c-parse.c cp-parse.c objc-parse.c cexp.c
630c76ba 1735 if grep -s "for version ${version}" gcc.texi; \
1736 then true; \
0dce1b01 1737 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
630c76ba 1738 fi
131b361e 1739# Update the version number in README
1740 awk '$$1 " " $$2 " " $$3 == "This directory contains" \
1741 { $$6 = version; print $$0 } \
1742 $$1 " " $$2 " " $$3 != "This directory contains"' \
1743 version=$(version) README > tmp.README
1744 mv tmp.README README
c6396a0b 1745 -rm -rf gcc-$(version) tmp
32e6d418 1746# Put all the files in a temporary subdirectory
1747# which has the name that we want to have in the tar file.
c6396a0b 1748 mkdir tmp
1749 mkdir tmp/config
4f1fd857 1750 mkdir tmp/objc
c6396a0b 1751 for file in *[0-9a-zA-Z+]; do \
131b361e 1752 ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
c6396a0b 1753 done
1754 cd config; \
1755 for file in *[0-9a-zA-Z+]; do \
57e88ef9 1756 if test -d $$file && test "$$file" != RCS; then \
8a32ef6f 1757 mkdir ../tmp/config/$$file; \
1758 cd $$file; \
1759 for subfile in *[0-9a-zA-Z+]; do \
1760 ln $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
1761 || cp $$subfile ../../tmp/config/$$file; \
1762 done; \
1763 cd ..; \
1764 else \
1765 ln $$file ../tmp/config >/dev/null 2>&1 \
1766 || cp $$file ../tmp/config; \
1767 fi; \
32e6d418 1768 done
4f1fd857 1769 cd objc; \
1770 for file in *[0-9a-zA-Z+]; do \
e77fd588 1771 ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
4f1fd857 1772 done
c6396a0b 1773 ln .gdbinit tmp
1774 mv tmp gcc-$(version)
32e6d418 1775# Get rid of everything we don't want in the distribution.
c6396a0b 1776 cd gcc-$(version); make -f Makefile.in extraclean
32e6d418 1777
1778# do make -f ../gcc/Makefile maketest DIR=../gcc
1779# in the intended test directory to make it a suitable test directory.
1780# THIS IS OBSOLETE; use the -srcdir operand in configure instead.
1781maketest:
1782 ln -s $(DIR)/*.[chy] .
1783 ln -s $(DIR)/configure .
1784 ln -s $(DIR)/*.def .
1785 -rm -f =*
1786 ln -s $(DIR)/.gdbinit .
1787 ln -s $(DIR)/$(FIXINCLUDES) .
1788 -ln -s $(DIR)/bison.simple .
1789 ln -s $(DIR)/config .
1790 ln -s $(DIR)/move-if-change .
1791# The then and else were swapped to avoid a problem on Ultrix.
1792 if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile .; else false; fi
1793 -rm tm.h aux-output.c config.h md
1794 make clean
1795# You must then run config to set up for compilation.
77a164d8 1796
41f63c60 1797bootstrap: force
1798# Only build the C compiler for stage1, because that is the only one that
1799# we can guarantee will build with the native compiler, and also it is the
1800# only thing useful for building stage2.
3ef0efe3 1801 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES=c
32e6d418 1802 $(MAKE) stage1
c6396a0b 1803# This used to define ALLOCA as empty, but that would lead to bad results
1804# for a subsequent `make install' since that would not have ALLOCA empty.
1805# To prevent `make install' from compiling alloca.o and then relinking cc1
1806# because alloca.o is newer, we permit these recursive makes to compile
1807# alloca.o. Then cc1 is newer, so it won't have to be relinked.
12343c6a 1808 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1809 $(MAKE) stage2
12343c6a 1810 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1811
1812bootstrap2: force
12343c6a 1813 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1814 $(MAKE) stage2
12343c6a 1815 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1816
1817bootstrap3: force
12343c6a 1818 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1819
48c6936b 1820# Compare the object files in the current directory with those in the
1821# stage2 directory.
1822
1823compare: force
1824 for file in *.o; do \
77a164d8 1825 tail +16c $$file > tmp-foo1; \
1826 tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
1827 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1828 done
1829 -rm -f tmp-foo*
1830
1831# Similar, but compare with stage3 directory
1832compare3: force
1833 for file in *.o; do \
77a164d8 1834 tail +16c $$file > tmp-foo1; \
1835 tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
1836 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1837 done
1838 -rm -f tmp-foo*
1839
32e6d418 1840# Copy the object files from a particular stage into a subdirectory.
1841stage1: force
c6396a0b 1842 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
32e6d418 1843 -mv $(STAGESTUFF) stage1
1844 -rm -f stage1/libgcc.a
1845 -cp libgcc.a stage1
1846 -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
1847
1848stage2: force
c6396a0b 1849 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
32e6d418 1850 -mv $(STAGESTUFF) stage2
1851 -rm -f stage2/libgcc.a
1852 -cp libgcc.a stage2
1853 -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
1854
1855stage3: force
2388f67d 1856 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
32e6d418 1857 -mv $(STAGESTUFF) stage3
1858 -rm -f stage3/libgcc.a
1859 -cp libgcc.a stage3
1860 -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
1861
1862stage4: force
2388f67d 1863 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
32e6d418 1864 -mv $(STAGESTUFF) stage4
1865 -rm -f stage4/libgcc.a
1866 -cp libgcc.a stage4
1867 -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
1868
1869# Copy just the executable files from a particular stage into a subdirectory,
1870# and delete the object files. Use this if you're just verifying a version
1871# that is pretty sure to work, and you are short of disk space.
1872risky-stage1: force
2388f67d 1873 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
e650197c 1874 -mv $(GCC_PARTS) stage1
32e6d418 1875 -rm -f stage1/libgcc.a
1876 -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
1877 -make clean
1878
1879risky-stage2: force
2388f67d 1880 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
e650197c 1881 -mv $(GCC_PARTS) stage2
32e6d418 1882 -rm -f stage2/libgcc.a
1883 -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
1884 -make clean
1885
1886risky-stage3: force
2388f67d 1887 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
e650197c 1888 -mv $(GCC_PARTS) stage3
32e6d418 1889 -rm -f stage3/libgcc.a
1890 -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
1891 -make clean
1892
1893risky-stage4: force
2388f67d 1894 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
e650197c 1895 -mv $(GCC_PARTS) stage4
32e6d418 1896 -rm -f stage4/libgcc.a
1897 -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
1898 -make clean
1899
1900#In GNU Make, ignore whether `stage*' exists.
1901.PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
1902.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
1903
1904force: