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