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