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