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