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