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