]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/Makefile.in
(store_split_bit_field): Properly handle VALUE when it is a
[thirdparty/gcc.git] / gcc / Makefile.in
CommitLineData
32e6d418 1# Makefile for GNU C compiler.
61aeb438 2# Copyright (C) 1987, 88, 90, 91, 92, 1993 Free Software Foundation, Inc.
32e6d418 3
4#This file is part of GNU CC.
5
6#GNU CC is free software; you can redistribute it and/or modify
7#it under the terms of the GNU General Public License as published by
8#the Free Software Foundation; either version 2, or (at your option)
9#any later version.
10
11#GNU CC is distributed in the hope that it will be useful,
12#but WITHOUT ANY WARRANTY; without even the implied warranty of
13#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14#GNU General Public License for more details.
15
16#You should have received a copy of the GNU General Public License
17#along with GNU CC; see the file COPYING. If not, write to
18#the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20# The targets for external use include:
21# all, doc, proto, install, install-cross, install-cross-rest,
c6396a0b 22# uninstall, TAGS, mostlyclean, clean, distclean, realclean,
32e6d418 23# stage1, stage2, stage3, stage4.
24
c6396a0b 25# Suppress smart makes who think they know how to automake Yacc files
26.y.c:
27
32e6d418 28# Variables that exist for you to override.
29# See below for how to change them for certain systems.
30
31# Selection of languages to be made.
32LANGUAGES = c c++ objective-c proto
33
34ALLOCA =
1ab99fde 35ALLOCA_FLAGS =
94c53b91 36ALLOCA_FINISH = true
32e6d418 37
38# Various ways of specifying flags for compilations:
39# CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
40# BOOT_CFLAGS is the value of CFLAGS to pass
41# to the stage2 and stage3 compilations
42# XCFLAGS is used for most compilations but not when using the GCC just built.
43XCFLAGS =
44CFLAGS = -g
45BOOT_CFLAGS = -O $(CFLAGS)
46# These exists to be overridden by the x-* and t-* files, respectively.
47X_CFLAGS =
48T_CFLAGS =
49
50X_CPPFLAGS =
51T_CPPFLAGS =
52
53CC = cc
54BISON = bison
9e74f24f 55BISONFLAGS = -v
32e6d418 56AR = ar
57OLDAR_FLAGS = qc
58AR_FLAGS = rc
59SHELL = /bin/sh
60# on sysV, define this as cp.
61INSTALL = install -c
62# These permit overriding just for certain files.
63INSTALL_PROGRAM = $(INSTALL)
64INSTALL_DATA = $(INSTALL)
65SYMLINK = ln -s
bc51108a 66MAKEINFO = makeinfo
32e6d418 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
c6396a0b 88# Version of ar to use when compiling libgcc1.a.
32e6d418 89OLDAR = ar
90
2cfd79fe 91# Target to use when installing include directory. Either
92# install-headers-tar or install-headers-cpio.
93INSTALL_HEADERS_DIR = install-headers-tar
94
b3781cc4 95# The GCC to use for compiling libgcc2.a, enquire, and cross-test.
96# Usually the one we just built.
32e6d418 97# Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
79613d1b 98GCC_FOR_TARGET = ./xgcc -B./
32e6d418 99
100# This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
101# It omits XCFLAGS, and specifies -B./.
b3781cc4 102# It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
66e9b81a 103GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
32e6d418 104
105# Special flags for compiling enquire.
106# We disable optimization to make floating point more reliable.
f06c46e6 107ENQUIRE_CFLAGS = -DNO_MEM -DNO_STDDEF -DNO_LONG_DOUBLE_IO -O0
32e6d418 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 ]
32e6d418 119
3f69fed5 120# Dir to search for system headers. Overridden by cross-make.
121SYSTEM_HEADER_DIR = /usr/include
122
8bd8ea06 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
32e6d418 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.
18196d1e 133version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
32e6d418 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
2ffdcadf 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)
c6396a0b 144# Directory in which to put host dependent programs and libraries
145exec_prefix = $(prefix)
32e6d418 146# Directory in which to put the executable for the command `gcc'
c6396a0b 147bindir = $(exec_prefix)/bin
32e6d418 148# Directory in which to put the directories used by the compiler.
c6396a0b 149libdir = $(exec_prefix)/lib
32e6d418 150# Directory in which the compiler finds executables, libraries, etc.
c6396a0b 151libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
f8330604 152# Directory for header file assert.h.
9671ce48 153includedir = $(local_prefix)/include
db9a0b19 154# assertdir is overridden in cross-make.
155assertdir = $(includedir)
32e6d418 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.
556d8d24 162tooldir = $(exec_prefix)/$(target)
f32abccb 163# Dir for temp files.
164tmpdir = /tmp
32e6d418 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.
c6396a0b 174# The value may be empty; that means to do absolutely nothing
175# with or for libgcc1.a.
32e6d418 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.
690a93ea 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 =
32e6d418 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
c6396a0b 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.
32e6d418 204# The rules for compiling them should be in the t-* file for the machine.
205EXTRA_PARTS =
206
c6396a0b 207# List of extra object files that should be compiled and linked with
208# compiler proper (cc1, cc1obj, cc1plus).
209EXTRA_OBJS =
210
630c76ba 211# List of additional header files to install.
212# Often this is edited directly by `configure'.
213EXTRA_HEADERS =
214
79f818d0 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
32e6d418 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
2cfd79fe 228# Default float.h source to use for cross-compiler.
229CROSS_FLOAT_H=float.h-cross
230
32e6d418 231# Program to convert libraries.
232LIBCONVERT =
233
234# Control whether header files are installed.
32e6d418 235INSTALL_HEADERS=install-headers
236
237# Select which version of fixincludes to use (I.E. regular versus SVR4)
6848a9c6 238# This value is overridden directly by configure.
32e6d418 239FIXINCLUDES=fixincludes
240
106a27e5 241# Additional directories of header files to run fixincludes on.
242# On most systems, this is empty.
243OTHER_FIXINCLUDES_DIRS=
244
77a164d8 245# List of things which should already be built whenever we try to use xgcc
32e6d418 246# to compile anything (without linking).
77a164d8 247GCC_PASSES=xgcc cc1 cpp $(EXTRA_PASSES)
32e6d418 248
77a164d8 249# List of things which should already be built whenever we try to use xgcc
32e6d418 250# to link anything.
79f818d0 251GCC_PARTS=$(GCC_PASSES) libgcc.a $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
32e6d418 252
32e6d418 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)
c6396a0b 267HOST_CLIB=$(CLIB)
32e6d418 268HOST_LDFLAGS=$(LDFLAGS)
269HOST_CPPFLAGS=$(ALL_CPPFLAGS)
c6396a0b 270HOST_ALLOCA=$(ALLOCA)
271HOST_MALLOC=$(MALLOC)
272HOST_OBSTACK=$(OBSTACK)
32e6d418 273
274# Choose the real default target.
275ALL=all.internal
276
277# Choose the real install target.
2cfd79fe 278INSTALL_TARGET=install-normal
279
280# Source for float.h. Overridden by cross-make.
281FLOAT_H=float.h-nat
32e6d418 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).
c6396a0b 289all: all.indirect
32e6d418 290
131b361e 291# This tells GNU Make version 3 not to put all variables in the environment.
292.NOEXPORT:
293
32e6d418 294# sed inserts variable overrides after the following line.
a0a99f10 295####target overrides
296####host overrides
297####cross overrides
e77fd588 298####build overrides
32e6d418 299\f
300# Now figure out from those variables how to compile and link.
301
c6396a0b 302all.indirect: $(ALL)
303
34b1478f 304# IN_GCC tells obstack.h to use gstddef.h.
305INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
32e6d418 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.
c6396a0b 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 `
32e6d418 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.
c6396a0b 327HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
32e6d418 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.
c6396a0b 335HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC) \
336 $(HOST_CLIB)
32e6d418 337
338HOST_RTL = $(HOST_PREFIX)rtl.o
339HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
262d46de 340HOST_PRINT = $(HOST_PREFIX)print-rtl.o
32e6d418 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.
1294913b 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
32e6d418 365
366# Language-specific object files for Objectionable C.
1294913b 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
32e6d418 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 \
6d9f2c4c 381 rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
79f818d0 382 dbxout.o sdbout.o dwarfout.o xcoffout.o \
32e6d418 383 integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
8a4b1e01 384 regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
32e6d418 385 insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
bdb66cef 386 insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
de6985af 387 insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
32e6d418 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 \
d95fa18c 397 insn-attr.h insn-attrtab.c insn-opinit.c \
32e6d418 398 stamp-flags stamp-config stamp-codes \
399 stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
d95fa18c 400 stamp-attr stamp-attrtab stamp-opinit stamp-proto \
32e6d418 401 genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
d95fa18c 402 genattrtab genattr genopinit \
79f818d0 403 $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp \
0b20f012 404 cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
32e6d418 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 \
dc1db499 417 _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _ffsdi2 \
4b8f50a8 418 _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
32e6d418 419 _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
619c3e71 420 _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
03ae18f4 421 __gcc_bcmp _varargs _eprintf _op_new _new_handler _op_delete \
c59af377 422 _bb _shtab _clear_cache _trampoline __main _exit _ctors
32e6d418 423
424# Header files that are made available under the same name
77a164d8 425# to programs compiled with GCC.
f8330604 426USER_H = va-alpha.h va-i860.h va-i960.h va-mips.h va-m88k.h \
131bde04 427 va-pa.h va-pyr.h va-sparc.h va-clipper.h va-spur.h proto.h $(EXTRA_HEADERS)
32e6d418 428
32e6d418 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
79f818d0 444Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
32e6d418 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.
87540b0a 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)
e77fd588 453# This is what to compile if making gcc with a cross-compiler.
2cd018ae 454all.build: native xgcc $(EXTRA_PARTS)
32e6d418 455# This is what must be made before installing GCC and converting libraries.
3f69fed5 456start.encap: native xgcc specs $(LIBGCC1) xlimits.h
32e6d418 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.
2cfd79fe 460rest.encap: libgcc.a stmp-headers $(EXTRA_PARTS)
32e6d418 461# This is what is made with the host's compiler
462# whether making a cross compiler or not.
79f818d0 463native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
32e6d418 464
465# Define the names for selecting languages in LANGUAGES.
466C c: cc1
467C++ c++: cc1plus
4f1fd857 468OBJC objc: cc1obj objc-runtime
469OBJECTIVE-C objective-c: cc1obj objc-runtime
32e6d418 470PROTO: proto
471
c6396a0b 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.
32e6d418 475config.status:
c6396a0b 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
32e6d418 482
840a6e8d 483# On the target machine, finish building a cross compiler.
484# This does the things that can't be done on the host machine.
d82b9c93 485rest.cross: libgcc.a gfloat.h specs
840a6e8d 486
d7330690 487# Verify that it works to compile and link cross-test.
488# If it does, then there are sufficient replacements for libgcc1.a.
6b2f2531 489cross-test: cross-test.o native gcc-cross libgcc.a $(GCC_PARTS)
d7330690 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
840a6e8d 494# Recompile all the language-independent object files.
495# This is used only if the user explicitly asks for it.
32e6d418 496compilations: ${OBJS}
497
77a164d8 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)
840a6e8d 503
504# Dump a specs file to make -B./ read these specs over installed ones.
77a164d8 505specs: xgcc
c666179a 506 $(GCC_FOR_TARGET) -dumpspecs > specs
32e6d418 507
77a164d8 508# We do want to create an executable named `xgcc', so we can use it to
32e6d418 509# compile libgcc2.a.
510# Also create gcc-cross, so that install-common will install properly.
77a164d8 511gcc-cross: xgcc
512 cp xgcc gcc-cross
32e6d418 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
2cfd79fe 523# Copy float.h from its source.
d82b9c93 524gfloat.h: $(FLOAT_H)
525 cp $(FLOAT_H) gfloat.h
2cfd79fe 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
32e6d418 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)
1a754c64 540# -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
541# -cp $(srcdir)/enquire.c . > /dev/null 2>&1
c6396a0b 542# Breaking this line caused a problem with one version of GNU make.
1a754c64 543 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
3f69fed5 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
32e6d418 552\f
553# Build libgcc.a.
554# This is done in two parts because some functions, in libgcc1.c,
77a164d8 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.
32e6d418 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.
66e9b81a 566libgcc1.null: $(GCC_PASSES)
32e6d418 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
fe918d35 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
32e6d418 580# Compile the library of arithmetic subroutines with the native compiler.
77a164d8 581# Don't compile it with GCC!
32e6d418 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.
c6396a0b 606 -for file in .. $(LIB1FUNCS_EXTRA); \
32e6d418 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 \
f32abccb 612 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 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.
690a93ea 627libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS)
32e6d418 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) \
33927595 635 machmode.h longlong.h gbl-ctors.h config.status
32e6d418 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}; \
c6396a0b 645 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
32e6d418 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.
c6396a0b 657 -for file in .. $(LIB2FUNCS_EXTRA); \
32e6d418 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 \
f32abccb 663 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
32e6d418 664 else true; fi; \
c6396a0b 665 $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
32e6d418 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
c6396a0b 683 -if [ x$(LIBGCC1) != x ]; \
684 then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
685 else true; \
686 fi
32e6d418 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
4f1fd857 695objc-runtime: libobjc.a
696
bd594491 697# Build the Objective C runtime library.
1e91114d 698libobjc.a: cc1obj libgcc2.ready $(USE_COLLECT2)
d6518ea8 699 if [ -d objc ]; then true; else mkdir objc; fi
4f1fd857 700 thisdir1=`pwd`; \
e5190fd1 701 srcdir1=`cd $(srcdir); pwd`; \
4f1fd857 702 cd objc; \
72bce1c3 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}/" \
4f1fd857 706 GCC_CFLAGS="$(GCC_CFLAGS)"
553479e8 707 -rm -f libobjc.a
8281617f 708 ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
4f1fd857 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
e5190fd1 713 thisdir1=`pwd`; \
714 srcdir1=`cd $(srcdir); pwd`; \
715 cd objc; \
553479e8 716 $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
e5190fd1 717 srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
718 GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
719 GCC_CFLAGS="$(GCC_CFLAGS)"
32e6d418 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 \
c6396a0b 725 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
32e6d418 726
727crtend.o: crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
728 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
c6396a0b 729 -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o
32e6d418 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
f678532a 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
32e6d418 743 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
ab2562cb 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
d7c691fa 746$(srcdir)/c-parse.y: $(srcdir)/c-parse.in
747 sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
748 -e "/^ifc$$/d" -e "/^end ifc$$/d" \
749 $(srcdir)/c-parse.in > $(srcdir)/c-parse.y
750
32e6d418 751c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
752c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
753c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
754c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h c-parse.h \
755 input.h flags.h
756c-aux-info.o : c-aux-info.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
757c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
b3781cc4 758c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
1294913b 759c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
32e6d418 760
761# C++ language specific files.
762
2ee73e3e 763cp-parse.o : $(srcdir)/cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h cp-lex.h
32e6d418 764 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
765 `echo $(srcdir)/cp-parse.c | sed 's,^\./,,'`
766
767$(srcdir)/cp-parse.c $(srcdir)/cp-parse.h : $(srcdir)/cp-parse.y
bb02c0b3 768 @echo expect 29 shift/reduce conflicts and 14 reduce/reduce conflicts
32e6d418 769 cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
fe918d35 770 cd $(srcdir); grep '^#define[ ]*YYEMPTY' cp-parse.c >>cp-parse.h
32e6d418 771
772cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
2ee73e3e 773 $(srcdir)/cp-parse.h flags.h cp-lex.h
32e6d418 774cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
2ee73e3e 775 $(srcdir)/cp-parse.h $(srcdir)/cp-input.c flags.h cp-hash.h cp-lex.h
32e6d418 776cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
777 cp-lex.h cp-decl.h stack.h
778cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
779 cp-lex.h cp-decl.h
780cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
2ee73e3e 781cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
782cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
783cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
784cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
32e6d418 785cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
786cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
787cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
788cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
789cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
790cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
2ee73e3e 791cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
32e6d418 792cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
793 expr.h insn-codes.h
794cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
2ee73e3e 795cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H) input.h
32e6d418 796cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
797
79f818d0 798# To make a configuration always use collect2, set USE_COLLECT2 to ld.
799ld: collect2
800 rm -f ld
801 ln collect2 ld
802
32e6d418 803collect2 : collect2.o version.o $(LIBDEPS)
e77fd588 804# Don't try modifying collect2 (aka ld) in place--it might be linking this.
805 -rm -f collect2
32e6d418 806 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
807
808collect2.o : collect2.c $(CONFIG_H) gstab.h
5e03c63d 809 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
810 -DTARGET_MACHINE=\"$(target)\" \
811 -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
32e6d418 812
813# Objectionable C language specific files.
814
815objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
222e139b 816 c-tree.h input.h flags.h objc-act.h
32e6d418 817 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
818$(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
819 cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
ab2562cb 820$(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
821 sed -e "/^ifc$$/,/^end ifc$$/d" \
822 -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
823 $(srcdir)/c-parse.in > $(srcdir)/objc-parse.y
32e6d418 824
7c4f0e88 825objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
826 flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
32e6d418 827
828# A file used by all variants of C.
829
830c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
831
832# Language-independent files.
833
1294913b 834gcc.o: gcc.c $(CONFIG_H) gvarargs.h config.status
32e6d418 835 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
836 -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
c6396a0b 837 -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
32e6d418 838 -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
556d8d24 839 -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
ae0fea3a 840 -DTOOLDIR=\"$(tooldir)/\" \
8618ef50 841 $(MAYBE_TARGET_DEFAULT) \
32e6d418 842 -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
843
844dumpvers: dumpvers.c
845
846version.o: version.c
847obstack.o: obstack.c
848
beb68ac1 849convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
850
32e6d418 851tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
852print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
853stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
854fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h
c6396a0b 855toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
aadb7c33 856 insn-attr.h xcoffout.h defaults.h
79f818d0 857 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
fe918d35 858 $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
859 -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
32e6d418 860
861rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
862
863print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
864rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
865
35325097 866varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
867 defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
32e6d418 868function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
869 insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
870 recog.h output.h
871stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
872 insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
d077a015 873expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h \
32e6d418 874 insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
875calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
d077a015 876 insn-flags.h gvarargs.h
32e6d418 877expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
878 insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
879explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
880 insn-config.h expr.h recog.h insn-flags.h insn-codes.h
881optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
a8a33ff5 882 insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
32e6d418 883dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
e7748130 884 insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
32e6d418 885sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
886 insn-config.h reload.h
887dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
8a19d0d5 888 insn-config.h reload.h output.h defaults.h
79f818d0 889xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
32e6d418 890emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h \
891 regs.h insn-config.h insn-codes.h real.h expr.h
6d9f2c4c 892real.o : real.c $(CONFIG_H) $(TREE_H)
c6396a0b 893getpwd.o : getpwd.c $(CONFIG_H)
32e6d418 894
895integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
896 insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
897
898jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
899 insn-config.h insn-flags.h insn-codes.h expr.h real.h
900stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
901
902cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
903 insn-config.h recog.h
904loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
905 insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
906unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
907 integrate.h regs.h flags.h expr.h loop.h
908flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
909 basic-block.h regs.h hard-reg-set.h output.h
910combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h \
911 insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
f0a903c4 912 basic-block.h recog.h real.h hard-reg-set.h
32e6d418 913regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
4023cea7 914 basic-block.h regs.h insn-config.h recog.h reload.h real.h
32e6d418 915local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
916 regs.h hard-reg-set.h insn-config.h recog.h output.h
8a4b1e01 917global.o : global.c $(CONFIG_H) $(RTL_H) flags.h \
32e6d418 918 basic-block.h regs.h hard-reg-set.h insn-config.h output.h
919
920reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
921 reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
922reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
923 reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
924 basic-block.h recog.h output.h
925caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
926 regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
927reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
928 basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
929 flags.h output.h
930sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
931 flags.h insn-config.h insn-attr.h
932final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
933 recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
fe918d35 934 hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
32e6d418 935recog.o : recog.c $(CONFIG_H) $(RTL_H) \
936 regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
937 insn-flags.h insn-codes.h real.h
938reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
939 regs.h hard-reg-set.h flags.h insn-config.h
48c6936b 940
32e6d418 941aux-output.o : aux-output.c $(CONFIG_H) \
942 $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
943 insn-flags.h output.h insn-attr.h insn-codes.h
944
945# Normally this target is not used; but it is used if you
946# define ALLOCA=alloca.o. In that case, you must get a suitable alloca.c
947# from the GNU Emacs distribution.
32e6d418 948alloca.o: alloca.c
32e6d418 949 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
cc2af6ca 950 -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
32e6d418 951 $(ALLOCA_FINISH)
952\f
953# Generate header and source files from the machine description,
954# and compile them.
955
956.PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
957 insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
958 insn-attr.h insn-attrtab.c
959
960# The following pair of rules has this effect:
961# genconfig is run only if the md has changed since genconfig was last run;
962# but the file insn-config.h is touched only when its contents actually change.
963
964# Each of the other insn-* files is handled by a similar pair of rules.
965
3f69fed5 966# This causes an anomaly in the results of make -n
967# because insn-* is older than stamp-*
968# and thus make -n thinks that insn-* will be updated
969# and force recompilation of things that depend on it.
9ac790c5 970# We use move-if-change precisely to avoid such recompilation.
3f69fed5 971# But there is no way to teach make -n that it will be avoided.
972
32e6d418 973# Each of the insn-*.[ch] rules has a semicolon at the end,
974# for otherwise the system Make on SunOS 4.1 never tries
876dc5b0 975# to recompile insn-*.o. To avoid problems and extra noise from
976# versions of make which don't like empty commands (nothing after the
977# trailing `;'), we call true for each.
32e6d418 978
c2a18965 979insn-config.h: stamp-config ; @true
32e6d418 980stamp-config : md genconfig $(srcdir)/move-if-change
981 ./genconfig md > tmp-config.h
982 $(srcdir)/move-if-change tmp-config.h insn-config.h
983 touch stamp-config
984
c2a18965 985insn-flags.h: stamp-flags ; @true
32e6d418 986stamp-flags : md genflags $(srcdir)/move-if-change
987 ./genflags md > tmp-flags.h
988 $(srcdir)/move-if-change tmp-flags.h insn-flags.h
989 touch stamp-flags
990
c2a18965 991insn-codes.h: stamp-codes ; @true
32e6d418 992stamp-codes : md gencodes $(srcdir)/move-if-change
993 ./gencodes md > tmp-codes.h
994 $(srcdir)/move-if-change tmp-codes.h insn-codes.h
995 touch stamp-codes
996
997insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
998 insn-config.h insn-flags.h insn-codes.h
999 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1000
c2a18965 1001insn-emit.c: stamp-emit ; @true
32e6d418 1002stamp-emit : md genemit $(srcdir)/move-if-change
1003 ./genemit md > tmp-emit.c
1004 $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1005 touch stamp-emit
1006
1007insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
1008 real.h output.h flags.h
1009 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1010
c2a18965 1011insn-recog.c: stamp-recog ; @true
32e6d418 1012stamp-recog : md genrecog $(srcdir)/move-if-change
1013 ./genrecog md > tmp-recog.c
1014 $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1015 touch stamp-recog
1016
bdb66cef 1017insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1018 insn-config.h flags.h rtl.h recog.h expr.h reload.h
1019 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1020
1021insn-opinit.c: stamp-opinit ; @true
1022stamp-opinit : md genopinit $(srcdir)/move-if-change
1023 ./genopinit md > tmp-opinit.c
1024 $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1025 touch stamp-opinit
1026
32e6d418 1027insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
1028 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1029
c2a18965 1030insn-extract.c: stamp-extract ; @true
32e6d418 1031stamp-extract : md genextract $(srcdir)/move-if-change
1032 ./genextract md > tmp-extract.c
1033 $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1034 touch stamp-extract
1035
1036insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1037 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1038
c2a18965 1039insn-peep.c: stamp-peep ; @true
32e6d418 1040stamp-peep : md genpeep $(srcdir)/move-if-change
1041 ./genpeep md > tmp-peep.c
1042 $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1043 touch stamp-peep
1044
1045insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1046 insn-attr.h insn-config.h
1047 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1048
c2a18965 1049insn-attr.h: stamp-attr ; @true
32e6d418 1050stamp-attr : md genattr $(srcdir)/move-if-change
1051 ./genattr md > tmp-attr.h
1052 $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1053 touch stamp-attr
1054
c2a18965 1055insn-attrtab.c: stamp-attrtab ; @true
32e6d418 1056stamp-attrtab : md genattrtab $(srcdir)/move-if-change
8bd8ea06 1057 if cmp -s $(PREMADE_ATTRTAB_MD) md; \
1058 then \
1059 echo Using $(PREMADE_ATTRTAB); \
ab866dde 1060 cp $(PREMADE_ATTRTAB) tmp-attrtab.c; \
8bd8ea06 1061 else \
1062 ./genattrtab md > tmp-attrtab.c; \
1063 fi
32e6d418 1064 $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1065 touch stamp-attrtab
1066
1067insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1068 hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1069 insn-codes.h
1070 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1071
c2a18965 1072insn-output.c: stamp-output ; @true
32e6d418 1073stamp-output : md genoutput $(srcdir)/move-if-change
1074 ./genoutput md > tmp-output.c
1075 $(srcdir)/move-if-change tmp-output.c insn-output.c
1076 touch stamp-output
1077\f
1078# Compile the programs that generate insn-* from the machine description.
1079# They are compiled with $(HOST_CC), and associated libraries,
1080# since they need to run on this machine
1081# even if GCC is being compiled to run on some other machine.
1082
1083# $(CONFIG_H) is omitted from the deps of the gen*.o
1084# because these programs don't really depend on anything
1085# about the target machine. They do depend on config.h itself,
1086# since that describes the host machine.
1087
1088genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1089 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
1090 genconfig.o $(HOST_RTL) $(HOST_LIBS)
1091
e77fd588 1092genconfig.o : genconfig.c $(RTL_H) hconfig.h
32e6d418 1093 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1094
1095genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1096 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
1097 genflags.o $(HOST_RTL) $(HOST_LIBS)
1098
e77fd588 1099genflags.o : genflags.c $(RTL_H) hconfig.h
32e6d418 1100 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1101
1102gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1103 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
1104 gencodes.o $(HOST_RTL) $(HOST_LIBS)
1105
e77fd588 1106gencodes.o : gencodes.c $(RTL_H) hconfig.h
32e6d418 1107 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1108
1109genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1110 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
1111 genemit.o $(HOST_RTL) $(HOST_LIBS)
1112
e77fd588 1113genemit.o : genemit.c $(RTL_H) hconfig.h
32e6d418 1114 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1115
bdb66cef 1116genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
1117 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genopinit \
1118 genopinit.o $(HOST_RTL) $(HOST_LIBS)
1119
1120genopinit.o : genopinit.c $(RTL_H) hconfig.h
1121 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1122
32e6d418 1123genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1124 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
1125 genrecog.o $(HOST_RTL) $(HOST_LIBS)
1126
e77fd588 1127genrecog.o : genrecog.c $(RTL_H) hconfig.h
32e6d418 1128 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1129
1130genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1131 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
1132 genextract.o $(HOST_RTL) $(HOST_LIBS)
1133
e77fd588 1134genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1135 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1136
1137genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1138 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
1139 genpeep.o $(HOST_RTL) $(HOST_LIBS)
1140
e77fd588 1141genpeep.o : genpeep.c $(RTL_H) hconfig.h
32e6d418 1142 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1143
1144genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1145 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
1146 genattr.o $(HOST_RTL) $(HOST_LIBS)
1147
e77fd588 1148genattr.o : genattr.c $(RTL_H) hconfig.h
32e6d418 1149 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1150
262d46de 1151genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
32e6d418 1152 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
262d46de 1153 genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
32e6d418 1154
e77fd588 1155genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
32e6d418 1156 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1157
1158genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1159 $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
1160 genoutput.o $(HOST_RTL) $(HOST_LIBS)
1161
e77fd588 1162genoutput.o : genoutput.c $(RTL_H) hconfig.h
32e6d418 1163 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1164\f
1165# Compile the libraries to be used by gen*.
1166# If we are not cross-building, gen* use the same .o's that cc1 will use,
1167# and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1168# with the rules for rtl.o, alloca.o, etc.
1169$(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1170 rm -f $(HOST_PREFIX)rtl.c
e77fd588 1171 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
32e6d418 1172 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1173
262d46de 1174$(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1175 rm -f $(HOST_PREFIX)print-rtl.c
e77fd588 1176 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
262d46de 1177 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1178
32e6d418 1179$(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1180 rm -f $(HOST_PREFIX)rtlanal.c
e77fd588 1181 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
32e6d418 1182 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1183
1184$(HOST_PREFIX_1)alloca.o: alloca.c
1185 rm -f $(HOST_PREFIX)alloca.c
1186 cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1187 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1188
1189$(HOST_PREFIX_1)obstack.o: obstack.c
1190 rm -f $(HOST_PREFIX)obstack.c
e77fd588 1191 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
32e6d418 1192 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1193
1194$(HOST_PREFIX_1)malloc.o: malloc.c
1195 rm -f $(HOST_PREFIX)malloc.c
e77fd588 1196 sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
32e6d418 1197 $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1198
1199# This satisfies the dependency that we get if you cross-compile a compiler
1200# that does not need to compile alloca, malloc or whatever.
1201$(HOST_PREFIX_1):
1202 touch $(HOST_PREFIX_1)
1203\f
1204# Remake cpp and protoize.
1205
1206# Making the preprocessor
1207cpp: cccp
1208 -rm -f cpp
1209 ln cccp cpp
1210cccp: cccp.o cexp.o version.o $(LIBDEPS)
1211 $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
1212cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1213 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1214$(srcdir)/cexp.c: $(srcdir)/cexp.y
1215 cd $(srcdir); $(BISON) -o cexp.c cexp.y
d6b50af2 1216cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
32e6d418 1217# The reason we use $(libdir)/g++-include rather than using libsubdir
1218# is for compatibility with the current version of libg++.
1219 $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
c6396a0b 1220 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1221 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
2ffdcadf 1222 -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
c6396a0b 1223 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1224 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
ae0fea3a 1225 -DTOOLDIR=\"$(tooldir)/\" \
32e6d418 1226 -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1227
876dc5b0 1228# Note for the stamp targets, we run the program `true' instead of
1229# having an empty command (nothing following the semicolon).
1230
77a164d8 1231proto: config.status protoize unprotoize SYSCALLS.c.X
32e6d418 1232
c6396a0b 1233protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
32e6d418 1234 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
c6396a0b 1235 protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
c2a18965 1236protoize.o: stamp-proto ; @true
ab866dde 1237
1238unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1239 $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1240 unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
c2a18965 1241unprotoize.o: stamp-proto ; @true
ab866dde 1242
1243stamp-proto: $(srcdir)/protoize.c getopt.h $(CONFIG_H)
32e6d418 1244 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1245 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1246 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1247 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1248 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1249 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1250 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1251 -DUNPROTOIZE $(srcdir)/protoize.c
1252 mv protoize.o unprotoize.o
32e6d418 1253 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1254 -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
c6396a0b 1255 -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
32e6d418 1256 -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
46073b39 1257 -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
32e6d418 1258 -DLOCAL_INCLUDE_DIR=\"$(prefix)/include\" \
1259 -DSTD_PROTO_DIR=\"$(libsubdir)\" \
ab866dde 1260 $(srcdir)/protoize.c
77a164d8 1261 touch stamp-proto
32e6d418 1262
1263getopt.o: $(srcdir)/getopt.c getopt.h
1264 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1265getopt1.o: $(srcdir)/getopt1.c getopt.h
1266 $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1267
32e6d418 1268# This info describes the target machine, so compile with GCC just built.
79f818d0 1269SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES)
f678532a 1270 -rm -f SYSCALLS.c tmp-SYSCALLS.s
79f818d0 1271 cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
32e6d418 1272 $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
f678532a 1273 -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1274 -rm -f SYSCALLS.c tmp-SYSCALLS.s
0b20f012 1275
1276test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
c548e550 1277 -rm -f tmp-proto.[cso]
262d46de 1278 cp $(srcdir)/protoize.c tmp-proto.c
1279 chmod u+w tmp-proto.c
c548e550 1280 ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1281 $(CFLAGS) $(INCLUDES) \
0b20f012 1282 -DGCC_INCLUDE_DIR=0 \
1283 -DGPLUSPLUS_INCLUDE_DIR=0 \
1284 -DCROSS_INCLUDE_DIR=0 \
46073b39 1285 -DTOOL_INCLUDE_DIR=0 \
262d46de 1286 -DSTD_PROTO_DIR=0" tmp-proto.c
1a754c64 1287 @echo '**********' Expect 400 lines of differences.
c548e550 1288 -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1289 -wc -l tmp-proto.diff
1290 ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1291 $(CFLAGS) $(INCLUDES) \
0b20f012 1292 -DGCC_INCLUDE_DIR=0 \
1293 -DGPLUSPLUS_INCLUDE_DIR=0 \
1294 -DCROSS_INCLUDE_DIR=0 \
46073b39 1295 -DTOOL_INCLUDE_DIR=0 \
262d46de 1296 -DSTD_PROTO_DIR=0" tmp-proto.c
0b20f012 1297 @echo Expect zero differences.
262d46de 1298 diff $(srcdir)/protoize.c tmp-proto.c | cat
c548e550 1299 -rm -f tmp-proto.[cso]
32e6d418 1300\f
2cfd79fe 1301# Build the include directory. The stamp files are stmp-* rather than
1302# stamp-* so that mostlyclean does not force the include directory to
1303# be rebuilt.
1304
690a93ea 1305# Build the include directory except for float.h (which depends upon
1306# enquire).
b7d4d520 1307stmp-int-hdrs: stmp-fixinc $(USER_H) gvarargs.h gstdarg.h gstddef.h \
1308 xlimits.h objc-headers
2cfd79fe 1309# Copy in the headers provided with gcc.
1310# The sed command gets just the last file name component;
1311# this is necessary because VPATH could add a dirname.
1312# Using basename would be simpler, but some systems don't have it.
1313 objdir=`pwd`; \
1314 cd $(srcdir); \
1315 for file in $(USER_H); do \
1316 realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
b5850e21 1317 rm -f $$objdir/include/$$realfile; \
2cfd79fe 1318 cp $$realfile $$objdir/include; \
1319 chmod a+r $$objdir/include/$$realfile; \
1320 done
b5850e21 1321 rm -f include/varargs.h
2cfd79fe 1322 cp $(srcdir)/gvarargs.h include/varargs.h
1323 chmod a+r include/varargs.h
b5850e21 1324 rm -f include/stdarg.h
2cfd79fe 1325 cp $(srcdir)/gstdarg.h include/stdarg.h
1326 chmod a+r include/stdarg.h
b5850e21 1327 rm -f include/stddef.h
2cfd79fe 1328 cp $(srcdir)/gstddef.h include/stddef.h
1329 chmod a+r include/stddef.h
b5850e21 1330 rm -f include/limits.h
2cfd79fe 1331 cp xlimits.h include/limits.h
1332 chmod a+r include/limits.h
2cfd79fe 1333# Install the README
b5850e21 1334 rm -f include/README
2cfd79fe 1335 cp $(srcdir)/README-fixinc include/README
1336 chmod a+r include/README
690a93ea 1337 touch stmp-int-hdrs
1338
1339# Build the complete include directory.
1340stmp-headers: stmp-int-hdrs gfloat.h
1341 rm -f include/float.h
1342 cp gfloat.h include/float.h
1343 chmod a+r include/float.h
2cfd79fe 1344 touch stmp-headers
1345
1346# Build fixed copies of system files.
b7d4d520 1347stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h
2cfd79fe 1348 rm -rf include
1349 mkdir include
92d223d1 1350 if [ x$(FIXINCLUDES) != xMakefile.in ]; \
6848a9c6 1351 then \
1352 for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1353 if [ -d $$dir ]; \
1354 then \
1355 $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir); \
1356 else true; fi; \
92d223d1 1357 done; \
6848a9c6 1358 else true; \
1359 fi
b7d4d520 1360 rm -f include/syslimits.h
1361 if [ -f include/limits.h ]; then \
1362 mv include/limits.h include/syslimits.h; \
1363 else \
1364 cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1365 fi
1366 chmod a+r include/syslimits.h
9e74f24f 1367 touch stmp-fixinc
7c4f0e88 1368
1369# copy objc header files
1370objc-headers: force
a5199ad9 1371 if [ -d objc ]; then true; else mkdir objc; fi
7c4f0e88 1372 thisdir1=`pwd`; \
1373 srcdir1=`cd $(srcdir); pwd`; \
1374 cd objc; \
1375 $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
1376 srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1377 GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1378 GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
1379
2cfd79fe 1380\f
32e6d418 1381# Remake the info files.
1382
6c76e6ec 1383doc: $(srcdir)/cpp.info $(srcdir)/gcc.info
32e6d418 1384
630c76ba 1385$(srcdir)/cpp.info: cpp.texi
bc51108a 1386 $(MAKEINFO) `echo $(srcdir)/cpp.texi | sed 's,^\./,,'`
32e6d418 1387
630c76ba 1388#$(srcdir)/gplus.info: gplus.texi
bc51108a 1389# $(MAKEINFO) `echo $(srcdir)/gplus.texi | sed 's,^\./,,'`
32e6d418 1390
630c76ba 1391$(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1392 md.texi rtl.texi tm.texi
bc51108a 1393 $(MAKEINFO) `echo $(srcdir)/gcc.texi | sed 's,^\./,,'`
630c76ba 1394
64616031 1395# This works with GNU Make's default rule.
1396$(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1397 md.texi rtl.texi tm.texi
1398
1399# This works with GNU Make's default rule.
1400$(srcdir)/cpp.dvi: cpp.texi
1401
630c76ba 1402$(srcdir)/INSTALL: install1.texi install.texi
bc51108a 1403 $(MAKEINFO) -D INSTALLONLY --no-header `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
32e6d418 1404\f
1405# Deletion of files made during compilation.
1406# There are four levels of this:
79f818d0 1407# `mostlyclean', `clean', `distclean' and `realclean'.
32e6d418 1408# `mostlyclean' is useful while working on a particular type of machine.
c6396a0b 1409# It deletes most, but not all, of the files made by compilation.
32e6d418 1410# It does not delete libgcc.a or its parts, so it won't have to be recompiled.
c6396a0b 1411# `clean' deletes everything made by running `make all'.
79f818d0 1412# `distclean' also deletes the files made by config.
32e6d418 1413# `realclean' also deletes everything that could be regenerated automatically.
1414
79f818d0 1415
32e6d418 1416mostlyclean:
1417 -rm -f $(STAGESTUFF)
343505c4 1418# Clean the objc subdir if we created one.
1419 if [ -d objc ]; then \
1420 srcdir1=`cd $(srcdir); pwd`; \
8c6da369 1421 cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
343505c4 1422 else true; fi
bd594491 1423 -rm -f libobjc.a
32e6d418 1424# Delete the temporary source copies for cross compilation.
1425 -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1426 -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1427 -rm -f $(HOST_PREFIX_1)obstack.c
1428# Delete the temp files made in the course of building libgcc.a.
590613c7 1429 -rm -f tmplibgcc* tmpcopy xlimits.h
32e6d418 1430 for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1431# Delete other temporary files.
83bd2d97 1432 -rm -f tmp-float.h tmp-gcc.xtar.Z
f678532a 1433 -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
32e6d418 1434# Delete the stamp files.
1435 -rm -f stamp-* tmp-*
c6396a0b 1436# Delete debugging dump files.
32e6d418 1437 -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
c6396a0b 1438 -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
1439# Delete some files made during installation.
d82b9c93 1440 -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
79f818d0 1441 -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s
c6396a0b 1442# Delete unwanted output files from TeX.
1443 -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
79f818d0 1444# Delete sorted indices we don't actually use.
1445 -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
c6396a0b 1446# Delete core dumps.
8d14a5ba 1447 -rm -f core config/core
32e6d418 1448
79f818d0 1449# Delete all files made by compilation
1450# that don't exist in the distribution.
32e6d418 1451clean: mostlyclean
8bd8ea06 1452# It may not be quite desirable to delete unprotoize.c here,
1453# but the spec for `make clean' requires it.
1454# Using unprotoize.c is not quite right in the first place,
1455# but what better way is there?
840a6e8d 1456 -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready libgcc1.null
131b361e 1457 -rm -f *.dvi
2cfd79fe 1458# Delete the include directory.
1459 -rm -rf stmp-* include
32e6d418 1460
79f818d0 1461# Delete all files that users would normally create
1462# while building and installing GCC.
c6396a0b 1463distclean: clean
7267fd67 1464 -rm -f tm.h aux-output.c config.h md config.status tconfig.h hconfig.h
ab866dde 1465 -rm -f Makefile *.oaux
79f818d0 1466 -rm -fr stage1 stage2 stage3 stage4
c6396a0b 1467
1468# Delete anything likely to be found in the source directory
1469# that shouldn't be in the distribution.
1470extraclean: distclean
bbbdbddd 1471 -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
131b361e 1472 -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
61aeb438 1473 -rm -f *.dvi *.oaux *.d *.[zZ] *.tar *.xtar *diff
8d14a5ba 1474 -rm -f *lose config/*lose
3a0781a0 1475 -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
32e6d418 1476
1477# Get rid of every file that's generated from some other file.
1478# Most of these files ARE PRESENT in the GCC distribution.
c6396a0b 1479realclean: distclean
c373bd56 1480 -rm -f c-parse.y objc-parse.y
32e6d418 1481 -rm -f cp-parse.c cp-parse.h cp-parse.output
1482 -rm -f objc-parse.c objc-parse.output
32e6d418 1483 -rm -f c-parse.c c-parse.h c-parse.output
1484 -rm -f cexp.c cexp.output TAGS
c6396a0b 1485 -rm -f cpp.info* cpp.??s cpp.*aux
1486 -rm -f gcc.info* gcc.??s gcc.*aux
1487 -rm -f gplus.info* gplus.??s gplus.*aux
32e6d418 1488\f
1489# Entry points `install' and `uninstall'.
c6396a0b 1490# Also use `install-collect2' to install collect2 when the config files don't.
32e6d418 1491
3f69fed5 1492# The semicolon is to prevent the install.sh -> install default rule
876dc5b0 1493# from doing anything. Having it run true helps avoid problems and
1494# noise from versions of make which don't like to have null commands.
c2a18965 1495install: $(INSTALL_TARGET) ; @true
32e6d418 1496
2cfd79fe 1497# Copy the compiler files into directories where they will be run.
556d8d24 1498install-normal: install-common $(INSTALL_HEADERS) install-libgcc install-man
32e6d418 1499
e77fd588 1500# Do nothing while making gcc with a cross-compiler. The person who
1501# makes gcc for the target machine has to know how to put a complete
1502# gcc together by hand.
1503install-build: force
1504 @echo You have to install gcc on your target machine by hand.
1505
32e6d418 1506# Run this on the target machine
1507# to finish installation of cross compiler.
1508install-cross-rest: install-float-h-cross
1509
1510# Install float.h for cross compiler.
1511# Run this on the target machine!
1512install-float-h-cross:
9f10de4b 1513# if [ -f enquire ] ; then true; else false; fi
1514# Note: don't use -. We should fail right away if enquire was not made.
1515 ./enquire -f > $(tmpdir)/float.h
32e6d418 1516 -rm -f $(libsubdir)/include/float.h
f32abccb 1517 $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
1518 -rm -f $(tmpdir)/float.h
32e6d418 1519 chmod a-x $(libsubdir)/include/float.h
1520
1521# Create the installation directory.
1522install-dir:
2388f67d 1523 -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
1524 -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
d0561ed0 1525# This dir isn't curretly searched by cpp.
1526# -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
2388f67d 1527 -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
1528 -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
630c76ba 1529 -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
2388f67d 1530 -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
69184f78 1531 -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
3ecfbab6 1532 -if [ -f gcc-cross ] ; \
10b27eb7 1533 then \
fea00636 1534 if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi ; \
10b27eb7 1535 if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi ; \
3ecfbab6 1536 else true; \
1537 fi
32e6d418 1538# We don't use mkdir -p to create the parents of mandir,
1539# because some systems don't support it.
1540# Instead, we use this technique to create the immediate parent of mandir.
2388f67d 1541 -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
32e6d418 1542 if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
1543 -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
1544
1545# Install the compiler executables built during cross compilation.
90c04b70 1546# Deps on $(srcdir)/g++ $(srcdir)/c++ would be natural here,
1547# but the latter would get confused with the target `c++'.
1548install-common: native install-dir xgcc $(EXTRA_PARTS)
32e6d418 1549 for file in $(COMPILERS); do \
1550 if [ -f $$file ] ; then \
1551 rm -f $(libsubdir)/$$file; \
1552 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1553 else true; \
1554 fi; \
1555 done
79f818d0 1556 for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
32e6d418 1557 if [ x"$$file" != x.. ]; then \
1558 rm -f $(libsubdir)/$$file; \
1559 $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1560 else true; fi; \
1561 done
8a4b1e01 1562# Don't mess with specs if it doesn't exist yet.
94c53b91 1563 -if [ -f specs ] ; then \
1564 rm -f $(libsubdir)/specs; \
8a4b1e01 1565 $(INSTALL_DATA) specs $(libsubdir)/specs; \
1566 fi
6005991e 1567# Install the driver program as $(target)-gcc
32e6d418 1568# and also as either gcc (if native) or $(tooldir)/bin/gcc.
1569 -if [ -f gcc-cross ] ; then \
7fdd7d43 1570 rm -f $(bindir)/$(target)-gcc; \
6005991e 1571 $(INSTALL_PROGRAM) gcc-cross $(bindir)/$(target)-gcc; \
32e6d418 1572 if [ -d $(tooldir)/bin/. ] ; then \
1573 rm -f $(tooldir)/bin/gcc; \
1574 $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
32e6d418 1575 else true; fi; \
1576 else \
1577 rm -f $(bindir)/gcc; \
77a164d8 1578 $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
6005991e 1579 rm -f $(bindir)/$(target)-gcc-1; \
1580 ln $(bindir)/gcc $(bindir)/$(target)-gcc-1; \
1581 mv $(bindir)/$(target)-gcc-1 $(bindir)/$(target)-gcc; \
32e6d418 1582 fi
9cee99f7 1583# Install protoize if it was compiled.
ae0fea3a 1584 -if [ -f protoize ]; \
9cee99f7 1585 then \
1586 rm -f $(bindir)/protoize; \
1587 $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
1588 rm -f $(bindir)/unprotoize; \
1589 $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
1590 rm -f $(libsubdir)/SYSCALLS.c.X; \
1591 $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
1592 chmod a-x $(libsubdir)/SYSCALLS.c.X; \
1593 fi
1fe386e3 1594 -if [ -f cc1plus ] ; then \
1595 rm -f $(bindir)/c++ ; \
1596 $(INSTALL_PROGRAM) $(srcdir)/c++ $(bindir)/c++ ; \
1597 rm -f $(bindir)/g++ ; \
1598 $(INSTALL_PROGRAM) $(srcdir)/g++ $(bindir)/g++ ; \
1599 fi
32e6d418 1600 -rm -f $(libsubdir)/cpp
1601 $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
1602
32e6d418 1603# Install the man pages.
77a164d8 1604install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 $(srcdir)/g++.1
32e6d418 1605 -rm -f $(mandir)/gcc$(manext)
ab866dde 1606 -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
1607 -chmod a-x $(mandir)/gcc$(manext)
c6396a0b 1608 -rm -f $(mandir)/cccp$(manext)
ab866dde 1609 -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
1610 -chmod a-x $(mandir)/cccp$(manext)
ab866dde 1611 -$(INSTALL_DATA) $(srcdir)/g++.1 $(mandir)/g++$(manext)
1612 -chmod a-x $(mandir)/g++$(manext)
32e6d418 1613
1614# Install the library.
807a86f6 1615install-libgcc: libgcc.a install-dir
32e6d418 1616 -if [ -f libgcc.a ] ; then \
1617 rm -f $(libsubdir)/libgcc.a; \
1618 $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
1619 if $(RANLIB_TEST) ; then \
1620 (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
1621 chmod a-x $(libsubdir)/libgcc.a; \
1622 else true; fi
1623
f32abccb 1624# Install the objc run time library.
1625install-libobjc: libobjc.a install-dir
1626 -if [ -f libobjc.a ] ; then \
1627 rm -f $(libsubdir)/libobjc.a; \
1628 $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
1629 if $(RANLIB_TEST) ; then \
1630 (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
1631 chmod a-x $(libsubdir)/libobjc.a; \
1632 else true; fi
1633
2cfd79fe 1634# Install all the header files built in the include subdirectory.
1635install-headers: install-include-dir $(INSTALL_HEADERS_DIR) install-assert-h
1636# Fix symlinks to absolute paths in the installed include directory to
1637# point to the installed directory, not the build directory.
1638 -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
1639 if [ $$? -eq 0 ]; then \
1640 dir=`cd include; pwd`; \
1641 for i in $$files; do \
1642 dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
1643 if expr "$$dest" : "$$dir.*" > /dev/null; then \
1644 rm -f $(libsubdir)/include/$$i; \
5822e312 1645 ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
2cfd79fe 1646 fi; \
1647 done; \
1648 fi
32e6d418 1649
2cfd79fe 1650# Create or recreate the gcc private include file directory.
2fc395f6 1651install-include-dir: install-dir
2cfd79fe 1652 -rm -rf $(libsubdir)/include
1653 mkdir $(libsubdir)/include
1654 -chmod a+rx $(libsubdir)/include
1655
1656# Install the include directory using tar.
1657install-headers-tar: stmp-headers install-include-dir
bea171c6 1658 cd include; tar cf - . | (cd $(libsubdir)/include; tar xpBf - )
2cfd79fe 1659
1660# Install the include directory using cpio.
1661install-headers-cpio: stmp-headers install-include-dir
bea171c6 1662 cd include; find . -print | cpio -pdum $(libsubdir)/include
32e6d418 1663
88d74741 1664# Put assert.h in /usr/local/include, so it won't override GNU libc's assert.h.
1665# Don't replace the assert.h already there if it is not from GCC.
eb5a0caa 1666# This code would be simpler if it tested for -f ... && ! grep ...
1667# but supposedly the ! operator is missing in sh on some systems.
2cfd79fe 1668install-assert-h: assert.h install-dir
eb5a0caa 1669 if [ -f $(assertdir)/assert.h ]; \
1670 then \
95856242 1671 if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
a953974c 1672 then \
eb5a0caa 1673 rm -f $(assertdir)/assert.h; \
1674 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1675 chmod a-x $(assertdir)/assert.h; \
eb5a0caa 1676 else true; \
1677 fi; \
2ba284c3 1678 else \
db9a0b19 1679 rm -f $(assertdir)/assert.h; \
1680 $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
04873c54 1681 chmod a-x $(assertdir)/assert.h; \
2ba284c3 1682 fi
32e6d418 1683
c6396a0b 1684# Use this target to install the program `collect2' under the name `ld'.
1685install-collect2: collect2
1686 $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
1687# Install the driver program as $(libsubdir)/gcc for collect2.
77a164d8 1688 $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
c6396a0b 1689
32e6d418 1690# Cancel installation by deleting the installed files.
1691uninstall:
1692 -rm -rf $(libsubdir)
1693 -rm -rf $(bindir)/gcc
32e6d418 1694 -rm -rf $(bindir)/protoize
1695 -rm -rf $(bindir)/unprotoize
1696 -rm -rf $(mandir)/gcc$(manext)
3b50af09 1697 -rm -rf $(mandir)/g++$(manext)
c6396a0b 1698 -rm -rf $(mandir)/cccp$(manext)
32e6d418 1699 -rm -rf $(mandir)/protoize$(manext)
1700 -rm -rf $(mandir)/unprotoize$(manext)
1701\f
1702# These exist for maintenance purposes.
1703
1704# Update the tags table.
1705TAGS: force
1706 cd $(srcdir); \
1707 mkdir temp; \
8c1b3852 1708 mv -f c-parse.[ch] cp-parse.[ch] objc-parse.c cexp.c =*.[chy] temp; \
32e6d418 1709 etags *.y *.h *.c; \
1710 mv temp/* .; \
1711 rmdir temp
1712
1713# Create the distribution tar file.
1714#dist: gcc-$(version).tar.Z
1715dist: gcc.xtar.Z
1716
c6396a0b 1717gcc.xtar.Z: gcc.xtar
32e6d418 1718 compress < gcc.xtar > tmp-gcc.xtar.Z
1719 mv tmp-gcc.xtar.Z gcc.xtar.Z
1720
1721#gcc-$(version).tar.Z: gcc-$(version).tar
1722# compress < gcc-$(version).tar > gcc-$(version).tar.Z
1723
1724#gcc-$(version).tar:
6c76e6ec 1725gcc.xtar: distdir
1726# Make the distribution.
1727 tar chf gcc.xtar gcc-$(version)
1728
3b50af09 1729distdir: doc $(srcdir)/INSTALL c-parse.y objc-parse.y cp-parse.y \
1730 c-parse.c cp-parse.c objc-parse.c cexp.c
630c76ba 1731 if grep -s "for version ${version}" gcc.texi; \
1732 then true; \
0dce1b01 1733 else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
630c76ba 1734 fi
131b361e 1735# Update the version number in README
1736 awk '$$1 " " $$2 " " $$3 == "This directory contains" \
1737 { $$6 = version; print $$0 } \
1738 $$1 " " $$2 " " $$3 != "This directory contains"' \
1739 version=$(version) README > tmp.README
1740 mv tmp.README README
c6396a0b 1741 -rm -rf gcc-$(version) tmp
32e6d418 1742# Put all the files in a temporary subdirectory
1743# which has the name that we want to have in the tar file.
c6396a0b 1744 mkdir tmp
1745 mkdir tmp/config
4f1fd857 1746 mkdir tmp/objc
c6396a0b 1747 for file in *[0-9a-zA-Z+]; do \
131b361e 1748 ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
c6396a0b 1749 done
1750 cd config; \
1751 for file in *[0-9a-zA-Z+]; do \
57e88ef9 1752 if test -d $$file && test "$$file" != RCS; then \
8a32ef6f 1753 mkdir ../tmp/config/$$file; \
1754 cd $$file; \
1755 for subfile in *[0-9a-zA-Z+]; do \
1756 ln $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
1757 || cp $$subfile ../../tmp/config/$$file; \
1758 done; \
1759 cd ..; \
1760 else \
1761 ln $$file ../tmp/config >/dev/null 2>&1 \
1762 || cp $$file ../tmp/config; \
1763 fi; \
32e6d418 1764 done
4f1fd857 1765 cd objc; \
1766 for file in *[0-9a-zA-Z+]; do \
e77fd588 1767 ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
4f1fd857 1768 done
c6396a0b 1769 ln .gdbinit tmp
1770 mv tmp gcc-$(version)
32e6d418 1771# Get rid of everything we don't want in the distribution.
c6396a0b 1772 cd gcc-$(version); make -f Makefile.in extraclean
32e6d418 1773
1774# do make -f ../gcc/Makefile maketest DIR=../gcc
1775# in the intended test directory to make it a suitable test directory.
1776# THIS IS OBSOLETE; use the -srcdir operand in configure instead.
1777maketest:
1778 ln -s $(DIR)/*.[chy] .
1779 ln -s $(DIR)/configure .
1780 ln -s $(DIR)/*.def .
1781 -rm -f =*
1782 ln -s $(DIR)/.gdbinit .
1783 ln -s $(DIR)/$(FIXINCLUDES) .
1784 -ln -s $(DIR)/bison.simple .
1785 ln -s $(DIR)/config .
1786 ln -s $(DIR)/move-if-change .
1787# The then and else were swapped to avoid a problem on Ultrix.
1788 if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile .; else false; fi
1789 -rm tm.h aux-output.c config.h md
1790 make clean
1791# You must then run config to set up for compilation.
77a164d8 1792
41f63c60 1793bootstrap: force
1794# Only build the C compiler for stage1, because that is the only one that
1795# we can guarantee will build with the native compiler, and also it is the
1796# only thing useful for building stage2.
3ef0efe3 1797 $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES=c
32e6d418 1798 $(MAKE) stage1
c6396a0b 1799# This used to define ALLOCA as empty, but that would lead to bad results
1800# for a subsequent `make install' since that would not have ALLOCA empty.
1801# To prevent `make install' from compiling alloca.o and then relinking cc1
1802# because alloca.o is newer, we permit these recursive makes to compile
1803# alloca.o. Then cc1 is newer, so it won't have to be relinked.
12343c6a 1804 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1805 $(MAKE) stage2
12343c6a 1806 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1807
1808bootstrap2: force
12343c6a 1809 $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1810 $(MAKE) stage2
12343c6a 1811 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1812
1813bootstrap3: force
12343c6a 1814 $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
32e6d418 1815
48c6936b 1816# Compare the object files in the current directory with those in the
1817# stage2 directory.
1818
1819compare: force
1820 for file in *.o; do \
77a164d8 1821 tail +16c $$file > tmp-foo1; \
1822 tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
1823 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1824 done
1825 -rm -f tmp-foo*
1826
1827# Similar, but compare with stage3 directory
1828compare3: force
1829 for file in *.o; do \
77a164d8 1830 tail +16c $$file > tmp-foo1; \
1831 tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
1832 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
48c6936b 1833 done
1834 -rm -f tmp-foo*
1835
32e6d418 1836# Copy the object files from a particular stage into a subdirectory.
1837stage1: force
c6396a0b 1838 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
32e6d418 1839 -mv $(STAGESTUFF) stage1
1840 -rm -f stage1/libgcc.a
1841 -cp libgcc.a stage1
1842 -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
1843
1844stage2: force
c6396a0b 1845 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
32e6d418 1846 -mv $(STAGESTUFF) stage2
1847 -rm -f stage2/libgcc.a
1848 -cp libgcc.a stage2
1849 -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
1850
1851stage3: force
2388f67d 1852 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
32e6d418 1853 -mv $(STAGESTUFF) stage3
1854 -rm -f stage3/libgcc.a
1855 -cp libgcc.a stage3
1856 -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
1857
1858stage4: force
2388f67d 1859 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
32e6d418 1860 -mv $(STAGESTUFF) stage4
1861 -rm -f stage4/libgcc.a
1862 -cp libgcc.a stage4
1863 -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
1864
1865# Copy just the executable files from a particular stage into a subdirectory,
1866# and delete the object files. Use this if you're just verifying a version
1867# that is pretty sure to work, and you are short of disk space.
1868risky-stage1: force
2388f67d 1869 -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
e650197c 1870 -mv $(GCC_PARTS) stage1
32e6d418 1871 -rm -f stage1/libgcc.a
1872 -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
1873 -make clean
1874
1875risky-stage2: force
2388f67d 1876 -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
e650197c 1877 -mv $(GCC_PARTS) stage2
32e6d418 1878 -rm -f stage2/libgcc.a
1879 -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
1880 -make clean
1881
1882risky-stage3: force
2388f67d 1883 -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
e650197c 1884 -mv $(GCC_PARTS) stage3
32e6d418 1885 -rm -f stage3/libgcc.a
1886 -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
1887 -make clean
1888
1889risky-stage4: force
2388f67d 1890 -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
e650197c 1891 -mv $(GCC_PARTS) stage4
32e6d418 1892 -rm -f stage4/libgcc.a
1893 -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
1894 -make clean
1895
1896#In GNU Make, ignore whether `stage*' exists.
1897.PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
1898.PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
1899
1900force: