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