OSDN Git Service

* pa/pa.c (secondary_reload_class): Remove duplicate/useless code.
[pf3gnuchains/gcc-fork.git] / gcc / Makefile.in
1 # Makefile for GNU C compiler.
2 #   Copyright (C) 1987, 88, 90-95, 1996 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, 59 Temple Place - Suite 330,
19 #Boston MA 02111-1307, USA.
20
21 # The targets for external use include:
22 # all, doc, proto, install, install-cross, install-cross-rest,
23 # uninstall, TAGS, mostlyclean, clean, distclean, maintainer-clean,
24 # stage1, stage2, stage3, stage4.
25
26 # Suppress smart makes who think they know how to automake Yacc files
27 .y.c:
28
29 # Variables that exist for you to override.
30 # See below for how to change them for certain systems.
31
32 # List of language subdirectories.
33 # This is overridden by configure.
34 SUBDIRS =
35
36 # Selection of languages to be made.
37 # This is overridden by configure.
38 LANGUAGES = c objective-c proto
39
40 # Selection of languages to be made during stage1 build.
41 # This is overridden by configure.
42 BOOT_LANGUAGES = c
43
44 ALLOCA =
45 ALLOCA_FLAGS =
46 ALLOCA_FINISH = true
47
48 # Various ways of specifying flags for compilations:  
49 # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
50 # BOOT_CFLAGS is the value of CFLAGS to pass
51 # to the stage2 and stage3 compilations
52 # XCFLAGS is used for most compilations but not when using the GCC just built.
53 # TCFLAGS is used for compilations with the GCC just built.
54 XCFLAGS =
55 TCFLAGS =
56 CFLAGS = -g
57 BOOT_CFLAGS = -O $(CFLAGS)
58 # These exists to be overridden by the x-* and t-* files, respectively.
59 X_CFLAGS =
60 T_CFLAGS =
61
62 X_CPPFLAGS =
63 T_CPPFLAGS =
64
65 CC = cc
66 BISON = bison
67 BISONFLAGS =
68 LEX = flex
69 LEXFLAGS =
70 AR = ar
71 OLDAR_FLAGS = qc
72 AR_FLAGS = rc
73 SHELL = /bin/sh
74 # on sysV, define this as cp.
75 INSTALL = install -c
76 # These permit overriding just for certain files.
77 INSTALL_PROGRAM = $(INSTALL)
78 INSTALL_DATA = $(INSTALL)
79 MAKEINFO = makeinfo
80 MAKEINFOFLAGS =
81 TEXI2DVI = texi2dvi
82 # For GNUmake: let us decide what gets passed to recursive makes.
83 MAKEOVERRIDES =
84
85 # Define this as & to perform parallel make on a Sequent.
86 # Note that this has some bugs, and it seems currently necessary 
87 # to compile all the gen* files first by hand to avoid erroneous results.
88 P =
89
90 # How to invoke ranlib.
91 RANLIB = ranlib
92 # Test to use to see whether ranlib exists on the system.
93 RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
94
95 # Compiler to use for compiling libgcc1.a.
96 # OLDCC should not be the GNU C compiler,
97 # since that would compile typical libgcc1.a functions such as mulsi3
98 # into infinite recursions.
99 OLDCC = cc
100
101 # CFLAGS for use with OLDCC, for compiling libgcc1.a.
102 # NOTE: -O does not work on some Unix systems!
103 CCLIBFLAGS = -O
104
105 # Version of ar to use when compiling libgcc1.a.
106 OLDAR = ar
107
108 # Target to use when installing include directory.  Either
109 # install-headers-tar or install-headers-cpio.
110 INSTALL_HEADERS_DIR = install-headers-tar
111
112 # Header files that are made available under the same name
113 # to programs compiled with GCC.
114 USER_H = $(srcdir)/ginclude/stdarg.h $(srcdir)/ginclude/stddef.h \
115     $(srcdir)/ginclude/varargs.h $(srcdir)/ginclude/va-alpha.h \
116     $(srcdir)/ginclude/va-h8300.h $(srcdir)/ginclude/va-i860.h \
117     $(srcdir)/ginclude/va-i960.h $(srcdir)/ginclude/va-mips.h \
118     $(srcdir)/ginclude/va-m88k.h $(srcdir)/ginclude/va-pa.h \
119     $(srcdir)/ginclude/va-pyr.h $(srcdir)/ginclude/va-sparc.h \
120     $(srcdir)/ginclude/va-clipper.h $(srcdir)/ginclude/va-spur.h \
121     $(srcdir)/ginclude/iso646.h $(srcdir)/ginclude/va-ppc.h \
122     $(srcdir)/ginclude/proto.h $(srcdir)/ginclude/va-sh.h $(EXTRA_HEADERS) \
123     $(LANG_EXTRA_HEADERS)
124
125 # Target to use whe installing assert.h.  Some systems may
126 # want to set this empty.
127 INSTALL_ASSERT_H = install-assert-h
128
129 # The GCC to use for compiling libgcc2.a, enquire, and libgcc1-test.
130 # Usually the one we just built.
131 # Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
132 GCC_FOR_TARGET = ./xgcc -B./
133
134 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
135 # It omits XCFLAGS, and specifies -B./.
136 # It also specifies -I./include to find, e.g., stddef.h.
137 GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) -I./include $(TCFLAGS)
138
139 # Special flags for compiling enquire.
140 # We disable optimization to make floating point more reliable.
141 ENQUIRE_CFLAGS = -DNO_MEM -DNO_LONG_DOUBLE_IO -O0
142 ENQUIRE_LDFLAGS = $(LDFLAGS)
143
144 # Sed command to transform gcc to installed name.  Overwritten by configure.
145 program_transform_name = -e s,x,x,
146 program_transform_cross_name = -e s,^,$(target_alias)-,
147
148 # Tools to use when building a cross-compiler.
149 # These are used because `configure' appends `cross-make'
150 # to the makefile when making a cross-compiler.
151
152 TARGET_TOOLPREFIX = $(tooldir)/bin/
153 AR_FOR_TARGET = $(TARGET_TOOLPREFIX)ar
154 AR_FOR_TARGET_FLAGS = rc
155 RANLIB_FOR_TARGET = $(TARGET_TOOLPREFIX)ranlib
156 RANLIB_TEST_FOR_TARGET = [ -f $(TARGET_TOOLPREFIX)ranlib ]
157
158 # Dir to search for system headers.  Overridden by cross-make.
159 SYSTEM_HEADER_DIR = /usr/include
160
161 # Control whether to run fixproto.
162 STMP_FIXPROTO = stmp-fixproto
163
164 # Test to see whether <limits.h> exists in the system header files.
165 LIMITS_H_TEST = [ -f $(SYSTEM_HEADER_DIR)/limits.h ]
166
167 # There may be a premade insn-attrtab.c for this machine.
168 # (You could rebuild it with genattrtab as usual, but it takes a long time.)
169 # PREMADE_ATTRTAB is the file name of the file to use.
170 # PREMADE_ATTRTAB_MD is the md file it corresponds to.
171 PREMADE_ATTRTAB_MD = Makefile  # Guaranteed not to cmp equal to md.
172 PREMADE_ATTRTAB = 
173
174 target= ... `configure' substitutes actual target name here.
175 target_alias= ... `configure' substitutes specified target name here.
176 xmake_file= ... `configure' substitutes actual x- file name here.
177 tmake_file= ... `configure' substitutes actual t- file name here.
178 out_file= ... `configure' substitutes actual out file name here.
179 out_object_file= ... `configure' substitutes actual out object file name here.
180 md_file= ... `configure' substitutes actual md file name here.
181 tm_file= ... `configure' substitutes actual tm file name here.
182 build_xm_file= ... `configure' substitutes actual build xm- file name here.
183 host_xm_file= ... `configure' substitutes actual host xm- file name here.
184 lang_specs_files= ... `configure' substitutes actual lang spec file names here.
185 lang_options_files= ... `configure' puts actual lang options file names here.
186 OBJC_THREAD_FILE= ... `configure' puts actual objc thread file name here.
187 version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
188 mainversion=`sed -e 's/.*\"\([0-9]*\.[0-9]*\).*/\1/' < $(srcdir)/version.c`
189
190 # Directory where sources are, from where we are.
191 srcdir = .
192 # Common prefix for installation directories.
193 # NOTE: This directory must exist when you start installation.
194 prefix = /usr/local
195 # Directory in which to put localized header files. On the systems with
196 # gcc as the native cc, `local_prefix' may not be `prefix' which is
197 # `/usr'.
198 # NOTE: local_prefix *should not* default from prefix.
199 local_prefix = /usr/local
200 # Directory in which to put host dependent programs and libraries
201 exec_prefix = $(prefix)
202 # Directory in which to put the executable for the command `gcc'
203 bindir = $(exec_prefix)/bin
204 # Directory in which to put the directories used by the compiler.
205 libdir = $(exec_prefix)/lib
206 # Directory in which the compiler finds executables, libraries, etc.
207 libsubdir = $(libdir)/gcc-lib/$(target_alias)/$(version)
208 # Directory in which the compiler finds g++ includes.
209 gxx_include_dir= $(prefix)/include/g++
210 # Directory in which the old g++ header files may be found.
211 old_gxx_include_dir= $(libdir)/g++-include
212 # Directory to search for site-specific includes.
213 includedir = $(local_prefix)/include
214 # assertdir is overridden in cross-make.
215 # (But this currently agrees with what is in cross-make.)
216 assertdir = $(tooldir)/include
217 # where the info files go
218 infodir = $(prefix)/info
219 # Extension (if any) to put in installed man-page filename.
220 manext = .1
221 objext = .o
222 exeext =
223
224 # Directory in which to put man pages.
225 mandir = $(prefix)/man/man1
226 # Directory in which to find other cross-compilation tools and headers.
227 # Used in install-cross.
228 tooldir = $(exec_prefix)/$(target_alias)
229 # Dir for temp files.
230 tmpdir = /tmp
231
232 # Additional system libraries to link with.
233 CLIB=
234
235 # Change this to a null string if obstacks are installed in the
236 # system library.
237 OBSTACK=obstack.o
238
239 # Specify the rule for actually making libgcc.a,
240 LIBGCC = libgcc.a
241 # and the rule for installing it.
242 INSTALL_LIBGCC = install-libgcc
243
244 # Specify the rule for actually making libgcc1.a.
245 # The value may be empty; that means to do absolutely nothing
246 # with or for libgcc1.a.
247 LIBGCC1 = libgcc1.a
248
249 # Specify the rule for making libgcc1.a for a cross-compiler.
250 # The default rule assumes that libgcc1.a is supplied by the user.
251 CROSS_LIBGCC1 = libgcc1.cross
252
253 # Specify the rule for actually making libgcc2.a.
254 LIBGCC2 = libgcc2.a
255
256 # Options to use when compiling libgcc2.a.
257 # -g1 causes output of debug info only for file-scope entities.
258 # we use this here because that should be enough, and also
259 # so that -g1 will be tested.
260 LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) $(TARGET_LIBGCC2_CFLAGS) -g1 -DIN_LIBGCC2 -D__GCC_FLOAT_NOT_NEEDED
261
262 # Additional options to use when compiling libgcc2.a.
263 # Some targets override this to -Iinclude
264 LIBGCC2_INCLUDES =
265
266 # Additional target-dependent options for compiling libgcc2.a.
267 TARGET_LIBGCC2_CFLAGS = 
268
269 # Things which must be built before building libgcc2.a.
270 # Some targets override this to stmp-int-hdrs
271 LIBGCC2_DEPS =
272
273 # Enquire target (This is a variable so that a target can choose not to
274 # build it.)
275 ENQUIRE = enquire
276
277 # libgcc1-test target (must also be overridable for a target)
278 LIBGCC1_TEST = libgcc1-test
279
280 # List of extra executables that should be compiled for this target machine
281 # that are used for compiling from source code to object code.
282 # The rules for compiling them should be in the t-* file for the machine.
283 EXTRA_PASSES =
284
285 # Like EXTRA_PASSES, but these are used when linking.
286 EXTRA_PROGRAMS = 
287
288 # List of extra object files that should be compiled for this target machine.
289 # The rules for compiling them should be in the t-* file for the machine.
290 EXTRA_PARTS =
291
292 # List of extra object files that should be compiled and linked with
293 # compiler proper (cc1, cc1obj, cc1plus).
294 EXTRA_OBJS =
295
296 # List of extra object files that should be compiled and linked with
297 # the gcc driver.
298 EXTRA_GCC_OBJS =
299
300 # List of additional header files to install.
301 # Often this is edited directly by `configure'.
302 EXTRA_HEADERS =
303
304 # Set this to `ld' to enable use of collect2.
305 # USE_COLLECT2 =
306 # It is convenient for configure to add the assignment at the beginning,
307 # so don't override it here.
308
309 # List of extra C and assembler files to add to libgcc1.a.
310 # Assembler files should have names ending in `.asm'.
311 LIB1FUNCS_EXTRA = 
312
313 # List of extra C and assembler files to add to libgcc2.a.
314 # Assembler files should have names ending in `.asm'.
315 LIB2FUNCS_EXTRA = 
316
317 # Default float.h source to use for cross-compiler.
318 # This is overidden by configure.
319 CROSS_FLOAT_H=float.h-cross
320
321 # Program to convert libraries.
322 LIBCONVERT = 
323
324 # Control whether header files are installed.
325 INSTALL_HEADERS=install-headers
326
327 # Options for tar when copying trees.  So HPUX can override it.
328 TAROUTOPTS = xpBf
329
330 # Select which version of fixincludes to use (I.E. regular versus SVR4)
331 # This value is overridden directly by configure.
332 FIXINCLUDES=fixincludes
333
334 # Additional directories of header files to run fixincludes on.
335 # These should be directories searched automatically by default
336 # just as /usr/include is.
337 # *Do not* use this for directories that happen to contain 
338 # header files, but are not searched automatically by default.
339 # On most systems, this is empty.
340 OTHER_FIXINCLUDES_DIRS=
341
342 # List of things which should already be built whenever we try to use xgcc
343 # to compile anything (without linking).
344 GCC_PASSES=xgcc$(exeext) cc1$(exeext) cpp$(exeext) $(EXTRA_PASSES)
345
346 # List of things which should already be built whenever we try to use xgcc
347 # to link anything.
348 GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
349
350 # Directory to link to, when using the target `maketest'.
351 DIR = ../gcc
352
353 # Guaranteed to not exist when not passing md through cpp.
354 # This value is overridden directly by configure.
355 MD_FILE = md-cpp-not-used
356
357 # Flags to use when cross-building GCC.
358 # Prefix to apply to names of object files when using them
359 # to run on the machine we are compiling on.
360 HOST_PREFIX=
361 # Prefix to apply to names of object files when compiling them
362 # to run on the machine we are compiling on.
363 # The default for this variable is chosen to keep these rules 
364 # out of the way of the other rules for compiling the same source files.
365 HOST_PREFIX_1=loser-
366 HOST_CC=$(CC)
367 HOST_CFLAGS=$(ALL_CFLAGS)
368 HOST_CLIB=$(CLIB)
369 HOST_LDFLAGS=$(LDFLAGS)
370 HOST_CPPFLAGS=$(ALL_CPPFLAGS)
371 HOST_ALLOCA=$(ALLOCA)
372 HOST_MALLOC=$(MALLOC)
373 HOST_OBSTACK=$(OBSTACK)
374
375 # Actual name to use when installing a native compiler.
376 GCC_INSTALL_NAME = `t='$(program_transform_name)'; echo gcc | sed $$t`
377
378 # Actual name to use when installing a cross-compiler.
379 GCC_CROSS_NAME = `t='$(program_transform_cross_name)'; echo gcc | sed $$t`
380
381 # Choose the real default target.
382 ALL=all.internal
383
384 # Choose the real install target.
385 INSTALL_TARGET=install-normal
386
387 # Source for float.h.  Overridden by cross-make.
388 FLOAT_H=float.h-nat
389
390 # Extra symbols for fixproto to define when parsing headers.
391 FIXPROTO_DEFINES = 
392
393 # Extra flags to use when compiling crt{begin,end}.o.
394 CRTSTUFF_T_CFLAGS = 
395
396 # Extra flags to use when compiling [m]crt0.o.
397 CRT0STUFF_T_CFLAGS = 
398
399 # End of variables for you to override.
400
401 # Definition of `all' is here so that new rules inserted by sed
402 # do not specify the default target.
403 # The real definition is under `all.internal' (for native compilers)
404 # or `all.cross' (for cross compilers).
405 all: all.indirect
406
407 # This tells GNU Make version 3 not to put all variables in the environment.
408 .NOEXPORT:
409
410 # sed inserts variable overrides after the following line.
411 ####target overrides
412 ####host overrides
413 ####cross overrides
414 ####build overrides
415 \f
416 # Now figure out from those variables how to compile and link.
417
418 all.indirect: $(ALL)
419
420 # IN_GCC tells obstack.h that we are using gcc's <stddef.h> file.
421 # ??? IN_GCC should be obsolete now.
422 INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
423
424 # This is the variable actually used when we compile.
425 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
426
427 # Likewise.
428 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
429
430 # Even if ALLOCA is set, don't use it if compiling with GCC.
431 USE_ALLOCA= ` case "${CC}" in "${OLDCC}") echo "${ALLOCA}" ;; esac `
432 USE_HOST_ALLOCA= ` case "${HOST_CC}"@"${HOST_ALLOCA}" in "${OLDCC}"@?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
433 USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
434 USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
435
436 # Dependency on obstack, alloca, malloc or whatever library facilities
437 # are not installed in the system libraries.
438 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
439 LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
440
441 # Likewise, for use in the tools that must run on this machine
442 # even if we are cross-building GCC.
443 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
444 HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
445
446 # How to link with both our special library facilities
447 # and the system's installed libraries.
448 LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(CLIB)
449
450 # Likewise, for use in the tools that must run on this machine
451 # even if we are cross-building GCC.
452 HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC)  \
453             $(HOST_CLIB)
454
455 HOST_RTL = $(HOST_PREFIX)rtl.o
456 HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
457 HOST_PRINT = $(HOST_PREFIX)print-rtl.o
458
459 # Specify the directories to be searched for header files.
460 # Both . and srcdir are used, in that order,
461 # so that tm.h and config.h will be found in the compilation
462 # subdirectory rather than in the source directory.
463 INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
464
465 # Always use -I$(srcdir)/config when compiling.
466 .c.o:
467         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
468
469 # This tells GNU make version 3 not to export all the variables
470 # defined in this file into the environment.
471 .NOEXPORT:
472 \f
473 # Support for additional languages (other than c and objc).
474 # ??? objc can be supported this way too (leave for later).
475
476 # These next lines are overridden by configure.
477 LANG_MAKEFILES =
478 LANG_STAGESTUFF =
479 LANG_DIFF_EXCLUDES =
480 LANG_LIB2FUNCS =
481 LANG_EXTRA_HEADERS =
482
483 # Flags to pass to recursive makes.
484 # CC is set by configure.  Hosts without symlinks need special handling
485 # because we need CC="stage1/xgcc -Bstage1/" to work in the language
486 # subdirectories.
487 # ??? The choices here will need some experimenting with.
488 FLAGS_TO_PASS = \
489         "AR_FLAGS=$(AR_FLAGS)" \
490         "AR_FOR_TARGET=$(AR_FOR_TARGET)" \
491         "BISON=$(BISON)" \
492         "BISONFLAGS=$(BISONFLAGS)" \
493         "CC=set-by-configure" \
494         "CFLAGS=$(CFLAGS)" \
495         "CLIB=$(CLIB)" \
496         "GCC_FOR_TARGET=$(GCC_FOR_TARGET)" \
497         "LDFLAGS=$(LDFLAGS)" \
498         "LEX=$(LEX)" \
499         "LEXFLAGS=$(LEXFLAGS)" \
500         "MAKEINFO=$(MAKEINFO)" \
501         "MAKEINFOFLAGS=$(MAKEINFOFLAGS)" \
502         "RANLIB_FOR_TARGET=$(RANLIB_FOR_TARGET)" \
503         "RANLIB_TEST_FOR_TARGET=$(RANLIB_TEST_FOR_TARGET)" \
504         "SHELL=$(SHELL)" \
505         "exeext=$(exeext)" \
506         "objext=$(objext)" \
507         "exec_prefix=$(exec_prefix)" \
508         "prefix=$(prefix)" \
509         "tooldir=$(tooldir)" \
510         "bindir=$(bindir)" \
511         "libsubdir=$(libsubdir)"
512 \f
513 # Lists of files for various purposes.
514
515 # A list of all the language-specific executables.
516 # This is overridden by configure.
517 COMPILERS = cc1$(exeext) cc1obj$(exeext)
518
519 # Language-specific object files for C.
520 C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o \
521    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
522
523 # Language-specific object files for Objective C.
524 OBJC_OBJS = objc-parse.o objc-act.o c-lex.o c-pragma.o \
525    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
526
527 # Files specific to the C interpreter bytecode compiler(s).
528 BC_OBJS = bc-emit.o bc-optab.o
529
530 # Bytecode header files constructed at build time; vmsconfig.com wants this.
531 BC_ALL = bc-arity.h bc-opcode.h bc-opname.h
532
533 # Language-independent object files.
534 OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
535  function.o stmt.o except.o expr.o calls.o expmed.o explow.o optabs.o \
536  varasm.o rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
537  dbxout.o sdbout.o dwarfout.o dwarf2out.o xcoffout.o \
538  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
539  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
540  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
541  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
542  insn-attrtab.o $(out_object_file) getpwd.o convert.o $(EXTRA_OBJS)
543
544 # GEN files are listed separately, so they can be built before doing parallel
545 #  makes for cc1 or cc1plus.  Otherwise sequent parallel make attempts to load
546 #  them before rtl.o is compiled.
547 GEN= genemit genoutput genrecog genextract genflags gencodes genconfig genpeep
548
549 CCCP=cccp
550 # Uncomment this line if you want to use cppmain (w/cpplib) as cpp.
551 #CCCP=cppmain
552
553 # Files to be copied away after each stage in building.
554 STAGESTUFF = *$(objext) insn-flags.h insn-config.h insn-codes.h \
555  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
556  insn-attr.h insn-attrtab.c insn-opinit.c \
557  stamp-flags stamp-config stamp-codes stamp-mlib \
558  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
559  stamp-attr stamp-attrtab stamp-opinit stamp-proto stamp-crt stamp-crtS stamp-crt0 \
560  genemit$(exeext) genoutput$(exeext) genrecog$(exeext) genextract$(exeext) \
561  genflags$(exeext) gencodes$(exeext) genconfig$(exeext) genpeep$(exeext) \
562  genattrtab$(exeext) genattr$(exeext) genopinit$(exeext) \
563  $(BC_ALL) \
564  stamp-bcarity stamp-bcopcode stamp-bcopname \
565  bi-arity$(exeext) bi-opcode$(exeext) bi-opname$(exeext) \
566  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross$(exeext) \
567  $(CCCP)$(exeext) cc1obj$(exeext) enquire$(exeext) \
568  protoize$(exeext) unprotoize$(exeext) \
569  specs collect2$(exeext) $(USE_COLLECT2) underscore.c \
570  *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop \
571  *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack \
572  *.[si] \
573  $(LANG_STAGESTUFF)
574
575 # Members of libgcc1.a.
576 LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
577    _lshrsi3 _ashrsi3 _ashlsi3 \
578    _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
579    _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
580    _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
581    _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
582    _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
583
584 # Library members defined in libgcc2.c.
585 LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
586      _lshrdi3 _ashldi3 _ashrdi3 _ffsdi2 \
587     _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
588     _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
589     _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
590     _fixtfdi _fixunstfdi _floatditf \
591     __gcc_bcmp _varargs __dummy _eprintf _op_new _op_vnew _new_handler \
592     _op_delete _op_vdel _bb _shtab _clear_cache _trampoline __main _exit \
593     _ctors _eh  _pure
594
595 # The files that "belong" in CONFIG_H are deliberately omitted
596 # because having them there would not be useful in actual practice.
597 # All they would do is cause complete recompilation every time
598 # one of the machine description files is edited.
599 # That may or may not be what one wants to do.
600 # If it is, rm *.o is an easy way to do it.
601 # CONFIG_H = $(host_xm_file) $(tm_file)
602 CONFIG_H =
603 RTL_H = rtl.h rtl.def machmode.h machmode.def
604 TREE_H = tree.h real.h tree.def machmode.h machmode.def
605 BYTECODE_H = bytecode.h bc-emit.h bc-optab.h
606 \f
607 # Language makefile fragments.
608
609 # The following targets define the interface between us and the languages.
610 #
611 # all.build, all.cross, start.encap, rest.encap,
612 # info, dvi,
613 # install-normal, install-common, install-info, install-man,
614 # uninstall, distdir,
615 # mostlyclean, clean, distclean, extraclean, maintainer-clean,
616 # stage1, stage2, stage3, stage4
617 #
618 # Each language is linked in with a series of hooks (since we can't use `::'
619 # targets).  The name of each hooked is "lang.${target_name}" (eg: lang.info).
620 # Configure computes and adds these here.
621
622 ####language hooks
623
624 # sed inserts language fragments after the following line.
625 ####language fragments
626
627 # End of language makefile fragments.
628 \f
629 # Avoid a lot of time thinking about remaking Makefile.in and *.def.
630 .SUFFIXES: .in .def
631
632 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
633    $(xmake_file) $(tmake_file) \
634    $(LANG_MAKEFILES)
635         cp config.status config.run
636         $(SHELL) config.run
637         rm -f config.run
638
639 all.internal: start.encap rest.encap
640 # This is what to compile if making a cross-compiler.
641 # Note that we can compile enquire using the cross-compiler just built,
642 # although we can't run it on this machine.
643 all.cross: native gcc-cross specs stmp-headers $(LIBGCC) $(STMP_FIXPROTO) \
644         $(LIBGCC1_TEST) $(EXTRA_PARTS) lang.all.cross
645 # This is what to compile if making gcc with a cross-compiler.
646 all.build: native xgcc $(EXTRA_PARTS) lang.all.build
647 # This is what must be made before installing GCC and converting libraries.
648 start.encap: native xgcc specs $(LIBGCC1) xlimits.h lang.start.encap
649 # These can't be made until after GCC can run.
650 rest.encap: stmp-headers $(LIBGCC) $(STMP_FIXPROTO) $(EXTRA_PARTS) lang.rest.encap
651 # This is what is made with the host's compiler
652 # whether making a cross compiler or not.
653 native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
654
655 # Define the names for selecting languages in LANGUAGES.
656 C c: cc1
657 OBJC objc: cc1obj objc-runtime
658 OBJECTIVE-C objective-c: cc1obj objc-runtime
659 PROTO: proto
660
661 # Tell GNU make these are phony targets.
662 .PHONY: C c OBJC objc OBJECTIVE-C objective-c PROTO proto
663
664 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
665 # a target to build even if it is up-to-date.  So we must verify that
666 # config.status does not exist before failing.
667 config.status:
668         @if [ ! -f config.status ] ; then \
669           echo You must configure gcc.  Look at the INSTALL file for details.; \
670           false; \
671         else \
672           true; \
673         fi
674
675 # On the target machine, finish building a cross compiler.
676 # This does the things that can't be done on the host machine.
677 rest.cross: $(LIBGCC) gfloat.h specs
678
679 # Verify that it works to compile and link libgcc1-test.
680 # If it does, then there are sufficient replacements for libgcc1.a.
681 libgcc1-test: libgcc1-test.o native $(GCC_PARTS)
682         @echo "Testing libgcc1.  Ignore linker warning messages."
683         $(GCC_FOR_TARGET) $(GCC_CFLAGS) libgcc1-test.o -o libgcc1-test \
684           -nostartfiles -nostdlib `$(GCC_FOR_TARGET) --print-libgcc-file-name`
685 libgcc1-test.o: libgcc1-test.c native xgcc
686         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/libgcc1-test.c
687
688 # Recompile all the language-independent object files.
689 # This is used only if the user explicitly asks for it.
690 compilations: ${OBJS}
691
692 # Create a list of the language-independent object files so the language
693 # subdirectories needn't mention their names explicitly.
694 stamp-objlist: $(OBJS) $(BC_OBJS)
695         echo " $(OBJS) $(BC_OBJS)" | sed -e 's, \([a-z]\), ../\1,g' -e 's/\.o/$(objext)/g' >stamp-objlist
696
697 # We call this executable `xgcc' rather than `gcc'
698 # to avoid confusion if the current directory is in the path
699 # and CC is `gcc'.  It is renamed to `gcc' when it is installed.
700 xgcc: gcc.o version.o choose-temp.o pexecute.o $(LIBDEPS) $(EXTRA_GCC_OBJS)
701         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o version.o \
702           choose-temp.o pexecute.o $(EXTRA_GCC_OBJS) $(LIBS)
703
704 # Dump a specs file to make -B./ read these specs over installed ones.
705 specs: xgcc
706         $(GCC_FOR_TARGET) -dumpspecs > tmp-specs
707         mv tmp-specs specs
708
709 # We do want to create an executable named `xgcc', so we can use it to
710 # compile libgcc2.a.
711 # Also create gcc-cross, so that install-common will install properly.
712 gcc-cross: xgcc
713         cp xgcc$(exeext) gcc-cross$(exeext)
714
715 cc1: $(P) $(C_OBJS) $(OBJS) $(BC_OBJS) $(LIBDEPS)
716         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(C_OBJS) $(OBJS) $(BC_OBJS) $(LIBS)
717
718 cc1obj: $(P) $(OBJC_OBJS) $(OBJS) $(BC_OBJS) $(LIBDEPS)
719         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(OBJC_OBJS) $(OBJS) $(BC_OBJS) $(LIBS)
720
721 # Copy float.h from its source.
722 gfloat.h: $(FLOAT_H)
723         -rm -f gfloat.h
724         cp $(FLOAT_H) gfloat.h
725
726 # Create float.h source for the native machine.
727 float.h-nat: enquire
728         -./enquire -f > tmp-float.h
729         mv tmp-float.h float.h-nat
730
731 # Create a dummy float.h source for a cross-compiler.
732 # ??? This isn't used anymore.  Should we create config/float-unkn.h
733 # and make that the default float_format in configure?
734 float.h-cross:
735         echo "#ifndef   __GCC_FLOAT_NOT_NEEDED" > t-float.h-cross
736         echo "#error float.h values not known for cross-compiler" >> t-float.h-cross
737         echo "#endif" >> t-float.h-cross
738         mv t-float.h-cross float.h-cross
739
740 # Used to compile enquire with standard cc, but have forgotten why.
741 # Let's try with GCC.
742 enquire: enquire.o $(GCC_PARTS)
743         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
744 enquire.o: $(srcdir)/enquire.c $(GCC_PASSES) stmp-int-hdrs
745 # Breaking this line caused a problem with one version of GNU make.
746         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
747
748 # Build the version of limits.h that we will install.
749 xlimits.h: glimits.h limitx.h limity.h
750         if $(LIMITS_H_TEST) ; then \
751           cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > tmp-xlimits.h; \
752         else \
753           cat $(srcdir)/glimits.h > tmp-xlimits.h; \
754         fi
755         mv tmp-xlimits.h xlimits.h
756 \f
757 # Build libgcc.a.
758 # This is done in two parts because some functions, in libgcc1.c,
759 # must be compiled with something other than GCC,
760 # while the rest, in libgcc2.c, must be compiled with xgcc.
761 # That means we can't do libgcc2.c until after xgcc, cc1, etc.
762
763 # Use this as value of LIBGCC1 to cause conversion to GNU library format.
764 # LIBCONVERT should put its output in libgcc1.conv.
765 libgcc1.conv: libgcc1.a
766         $(LIBCONVERT) libgcc1.a libgcc1.conv
767
768 # Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
769 # Make an empty file instead.
770 libgcc1.null: $(GCC_PASSES)
771         echo "__foo () {}" > dummy.c
772         $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
773         $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy$(objext)
774         rm -f dummy$(objext) dummy.c
775
776 # This is $(LIBGCC1) for a cross-compiler.
777 # We have no automatic way of building libgcc1.a, 
778 # so it's up to the installer to find a way to do that.
779 # This rule deliberately does not depend on libgcc1.a
780 # so that it will fail if the installer hasn't provided it.
781 libgcc1.cross:
782         mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
783
784 # Compile the library of arithmetic subroutines with the native compiler.
785 # Don't compile it with GCC!
786 # (That would cause most arithmetic functions to call themselves.)
787 #
788 # NOTE: If you modify these rules substantially, please be sure to
789 # check at least config/i386/t-sco5 and possibly other makefile
790 # fragments.
791 libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
792         -rm -f tmplibgcc1.a
793 # Actually build it in tmplibgcc1.a, then rename at end,
794 # so that libgcc1.a itself remains nonexistent if compilation is aborted.
795 # -e causes any failing command to make this rule fail.
796 # -e doesn't work in certain shells, so we test $$? as well.
797 # lynx has a broken ar, it always complains when the initial library is
798 # empty, thus this command works only if we don't do -e
799 # There is a trailing backslash (\) deleted from the following line.
800 #       set -e;
801         for name in $(LIB1FUNCS); \
802         do \
803           echo $${name}; \
804           rm -f $${name}$(objext); \
805           $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
806           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
807           mv libgcc1$(objext) $${name}$(objext); \
808           $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
809           rm -f $${name}$(objext); \
810         done
811 # Some shells crash when a loop has no items.
812 # So make sure there is always at least one--`..'.
813 # Then ignore it.
814 # We don't use -e here because there are if statements
815 # that should not make the command give up when the if condition is false.
816 # Instead, we test for failure after each command where it matters.
817         for file in .. $(LIB1FUNCS_EXTRA); \
818         do \
819           if [ x$${file} != x.. ]; then \
820             name=`echo $${file} | sed -e 's/[.][cS]$$//' -e 's/[.]asm$$//'`; \
821             echo $${name}; \
822             if [ $${name}.asm = $${file} ]; then \
823               cp $${file} $${name}.s || exit 1; file=$${name}.s; \
824             else true; fi; \
825             $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
826             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
827             $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}$(objext); \
828             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
829             rm -f $${name}.s $${name}$(objext); \
830           else true; \
831           fi; \
832         done
833         -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc1.a; else true; fi
834         mv tmplibgcc1.a libgcc1.a
835
836 # Build libgcc1.a from assembler source.  LIB1ASMFUNCS is the list of
837 # functions.  LIB1ASMSRC is the name of the source file in the config
838 # subdirectory.
839 libgcc1-asm.a: libgcc2.ready config.status $(srcdir)/config/$(LIB1ASMSRC)
840         -rm -f tmplibgcc1.a libgcc1.S
841         cp $(srcdir)/config/$(LIB1ASMSRC) libgcc1.S
842 # Actually build it in tmplibgcc1.a, then rename at end,
843 # so that libgcc1-asm.a itself remains nonexistent if compilation is aborted.
844 # -e causes any failing command to make this rule fail.
845 # -e doesn't work in certain shells, so we test $$? as well.
846 # lynx has a broken ar, it always complains when the initial library is
847 # empty, thus this command works only if we don't do -e
848 # There is a trailing backslash (\) deleted from the following line.
849 #       set -e;
850         for name in $(LIB1ASMFUNCS); \
851         do \
852           echo $${name}; \
853           $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} libgcc1.S; \
854           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
855           mv libgcc1$(objext) $${name}$(objext); \
856           $(AR) $(AR_FLAGS) tmplibgcc1.a $${name}$(objext); \
857           rm -f $${name}$(objext); \
858         done
859         -rm -f libgcc1.S
860         mv tmplibgcc1.a libgcc1-asm.a
861
862 # Generate assembly versions of the functions required for libgcc1.
863 # You'll still need to massage the code by hand (possibly hacking
864 # underscores and local labels) but this will get you started.
865 libgcc1.S: libgcc1.c $(CONFIG_H) config.status
866         -rm -f libgcc1.S
867         touch libgcc1.S
868         for name in $(LIB1FUNCS); \
869         do \
870           echo $${name}; \
871           $(OLDCC) -DIN_LIBGCC1 $(CCLIBFLAGS) $(INCLUDES) -S -DL$${name} $(srcdir)/libgcc1.c; \
872           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
873           echo '#ifdef ' L$${name} >> libgcc1.S; \
874           cat  libgcc1.s >> libgcc1.S; \
875           echo '#endif /*' L$${name} '*/' >> libgcc1.S; \
876           echo "" >> libgcc1.S; \
877         done
878
879 # Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
880 # But recompiling cc1 should not force recompilation of libgcc2.a.
881 # If you want to force recompilation, delete libgcc2.a.
882 libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS) stmp-int-hdrs
883         -if [ -f libgcc2.ready ] ; then \
884                 true; \
885         else \
886                 touch libgcc2.ready; \
887         fi
888
889 libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
890    $(LANG_LIB2FUNCS) machmode.h longlong.h gbl-ctors.h config.status
891 # Actually build it in tmplibgcc2.a, then rename at end,
892 # so that libgcc2.a itself remains nonexistent if compilation is aborted.
893         -rm -f tmplibgcc2.a
894 # -e causes any failing command to make this rule fail.
895 # -e doesn't work in certain shells, so we test $$? as well.
896 # lynx has a broken ar, it always complains when the initial library is
897 # empty, thus this command works only if we don't do -e
898 # There is a trailing backslash (\) deleted from the following line.
899 #       set -e;
900         for name in $(LIB2FUNCS); \
901         do \
902           echo $${name}; \
903           $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
904               $(srcdir)/libgcc2.c -o $${name}$(objext); \
905           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
906           $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}$(objext); \
907           rm -f $${name}$(objext); \
908         done
909 # Some shells crash when a loop has no items.
910 # So make sure there is always at least one--`..'.
911 # Then ignore it.
912 # We don't use -e here because there are if statements
913 # that should not make the command give up when the if condition is false.
914 # Instead, we test for failure after each command where it matters.
915         for file in .. $(LIB2FUNCS_EXTRA) $(LANG_LIB2FUNCS); \
916         do \
917           if [ x$${file} != x.. ]; then \
918             name=`echo $${file} | sed -e 's/[.][cSo]$$//' -e 's/[.]asm$$//' -e 's/[.]txt$$//'`; \
919             oname=` echo $${name} | sed -e 's,.*/,,'`; \
920             if [ $${name}.txt = $${file} ]; then \
921               for f in .. `cat $${file}`; do if [ x$${f} != x.. ]; then \
922                 $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
923                   AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" \
924                   CFLAGS="$(CFLAGS)" HOST_PREFIX="$(HOST_PREFIX)" \
925                   HOST_PREFIX_1="$(HOST_PREFIX_1)" \
926                   LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $${f}; \
927                 if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
928                 $(AR) $(AR_FLAGS) tmplibgcc2.a $${f}; \
929                 rm -f $${f}; \
930               fi; done; \
931             else \
932               echo $${name}; \
933               if [ $${name}.asm = $${file} ]; then \
934                 cp $${file} $${name}.s || exit 1; file=$${name}.s; \
935               else true; fi; \
936               $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
937               if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
938               $(AR) $(AR_FLAGS) tmplibgcc2.a $${oname}$(objext); \
939               rm -f $${name}.s $${oname}$(objext); \
940             fi; \
941           else true; \
942           fi; \
943         done
944         mv tmplibgcc2.a libgcc2.a
945 # These lines were deleted from above the mv command
946 # because ranlibing libgcc.a itself should suffice.
947 #       -if [ x${HPUX_GAS} = x ] ; then \
948 #         if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi; \
949 #       else true; fi
950
951 # Combine the various libraries into a single library, libgcc.a.
952 libgcc.a: $(LIBGCC1) $(LIBGCC2)
953         -rm -rf tmplibgcc.a libgcc.a tmpcopy
954         mkdir tmpcopy
955         -if [ x$(LIBGCC1) != x ];                       \
956         then (cd tmpcopy; $(AR) x ../$(LIBGCC1));       \
957         else true;                                      \
958         fi
959 # Some versions of ar (specifically the one in RISC/os 5.x), create an
960 # unwritable table of contents file, and then print an error message when
961 # the second ar command tries to overwrite this file.  To avoid the error
962 # message from ar, we make sure all files are writable.
963         -(cd tmpcopy; chmod +w * > /dev/null 2>&1)
964         (cd tmpcopy; $(AR) x ../$(LIBGCC2))
965         (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *$(objext))
966         rm -rf tmpcopy
967         -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
968 # Actually build it in tmplibgcc.a, then rename at end,
969 # so that libgcc.a itself remains nonexistent if compilation is aborted.
970         mv tmplibgcc.a libgcc.a
971
972 # Use the genmultilib shell script to generate the information the gcc
973 # driver program needs to select the library directory based on the
974 # switches.
975 multilib.h: stamp-mlib; @true
976 stamp-mlib: $(srcdir)/genmultilib Makefile
977         $(SHELL) $(srcdir)/genmultilib \
978           "$(MULTILIB_OPTIONS)" \
979           "$(MULTILIB_DIRNAMES)" \
980           "$(MULTILIB_MATCHES)" \
981           "$(MULTILIB_EXCEPTIONS)" \
982           "$(MULTILIB_EXTRA_OPTS)" > tmp-mlib.h
983         $(srcdir)/move-if-change tmp-mlib.h multilib.h
984         touch stamp-mlib
985
986 # Build multiple copies of libgcc.a, one for each target switch.
987 stmp-multilib: $(LIBGCC1) libgcc2.c libgcc2.ready $(CONFIG_H) \
988    $(LIB2FUNCS_EXTRA) $(LANG_LIB2FUNCS) machmode.h longlong.h gbl-ctors.h \
989    config.status
990         for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
991           dir=`echo $$i | sed -e 's/;.*$$//'`; \
992           flags=`echo $$i | sed -e 's/^[^;]*;//' -e 's/@/ -/g'`; \
993           $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
994             AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
995             RANLIB="$(RANLIB)" RANLIB_TEST="$(RANLIB_TEST)" \
996             HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
997             LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS) $${flags}" \
998             LIBGCC1="$(LIBGCC1)" LIBGCC2="$(LIBGCC2)" \
999             dir="$${dir}" stmp-multilib-sub; \
1000           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
1001         done
1002         touch stmp-multilib
1003
1004 # Subroutine of stmp-multilib so make -n works.
1005 stmp-multilib-sub:
1006         rm -f $(dir)/libgcc.a $(LIBGCC2)
1007         $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1008           AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1009           HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1010           LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC2)
1011         if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1012         then true; \
1013         else rm -f $(LIBGCC1); \
1014         fi
1015         if [ x$(LIBGCC1) != xlibgcc1-asm.a ]; \
1016         then true; \
1017         else \
1018           $(MAKE) GCC_FOR_TARGET="$(GCC_FOR_TARGET)" \
1019             AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" CC="$(CC)" CFLAGS="$(CFLAGS)" \
1020             HOST_PREFIX="$(HOST_PREFIX)" HOST_PREFIX_1="$(HOST_PREFIX_1)" \
1021             LIBGCC2_CFLAGS="$(LIBGCC2_CFLAGS)" $(LIBGCC1); \
1022         fi
1023         rm -rf tmplibgcc.a tmpcopy
1024         mkdir tmpcopy
1025         if [ x$(LIBGCC1) != x ]; \
1026         then (cd tmpcopy; $(AR) x ../$(LIBGCC1)); \
1027         else true; \
1028         fi
1029         (cd tmpcopy; $(AR) x ../$(LIBGCC2))
1030         (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *$(objext))
1031         rm -rf libgcc2.a tmpcopy
1032         if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
1033         if [ -d $(dir) ]; then true; else mkdir $(dir); fi
1034         mv tmplibgcc.a $(dir)/libgcc.a
1035
1036 objc-runtime: libobjc.a
1037
1038 # Build the Objective C runtime library.
1039 libobjc.a: cc1obj specs stmp-int-hdrs libgcc2.ready $(USE_COLLECT2) $(EXTRA_PARTS)
1040         if [ -d objc ]; then true; else mkdir objc; fi
1041         thisdir1=`pwd`; \
1042         srcdir1=`cd $(srcdir); pwd`; \
1043         cd objc; \
1044         $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
1045           srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1046           GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1047           GCC_CFLAGS="$(GCC_CFLAGS)" OBJC_THREAD_FILE="$(OBJC_THREAD_FILE)"
1048         -rm -f libobjc.a
1049         ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
1050         -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
1051
1052 # This is used by objc/Makefile if the user runs that directly.
1053 sublibobjc.a: cc1obj specs stmp-int-hdrs libgcc2.ready
1054         thisdir1=`pwd`; \
1055         srcdir1=`cd $(srcdir); pwd`; \
1056         cd objc; \
1057         $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
1058           srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1059           GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
1060           GCC_CFLAGS="$(GCC_CFLAGS)" OBJC_THREAD_FILE="$(OBJC_THREAD_FILE)"
1061
1062 # Compile two additional files that are linked with every program
1063 # linked using GCC on systems using COFF or ELF, for the sake of C++
1064 # constructors.
1065 crtbegin.o: stamp-crt ; @true
1066 crtend.o: stamp-crt; @true
1067
1068 stamp-crt:      crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
1069         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS) \
1070           -DCRT_BEGIN -finhibit-size-directive -fno-inline-functions \
1071           -g0 -c $(srcdir)/crtstuff.c
1072         mv crtstuff$(objext) crtbegin$(objext)
1073         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS) \
1074           -DCRT_END -finhibit-size-directive -fno-inline-functions \
1075           -g0 -c $(srcdir)/crtstuff.c -o crtend$(objext)
1076         touch stamp-crt
1077
1078 # On some systems we also want to install versions of these files
1079 # compiled using PIC for use in shared libraries.
1080 crtbeginS.o crtendS.o: stamp-crtS ; @true
1081
1082 stamp-crtS:     crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
1083         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
1084           -DCRT_BEGIN -finhibit-size-directive -fno-inline-functions \
1085           -g0 -c $(srcdir)/crtstuff.c 
1086         mv crtstuff$(objext) crtbeginS$(objext)
1087         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) $(CRTSTUFF_T_CFLAGS_S) \
1088           -DCRT_END -finhibit-size-directive -fno-inline-functions \
1089           -g0 -c $(srcdir)/crtstuff.c -o crtendS$(objext)
1090         touch stamp-crtS
1091
1092 # Compile the start modules crt0.o and mcrt0.o that are linked with every program
1093 crt0.o: stamp-crt0 ; @true
1094 mcrt0.o: stamp-crt0; @true
1095
1096 stamp-crt0:     $(CRT0_S) $(MCRT0_S) $(GCC_PASSES) $(CONFIG_H)
1097         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1098           -o crt0.o -c $(CRT0_S)
1099         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(CRT0STUFF_T_CFLAGS) \
1100           -o mcrt0.o -c $(MCRT0_S)
1101         touch stamp-crt0
1102 \f
1103 # Compiling object files from source files.
1104
1105 # Note that dependencies on obstack.h are not written
1106 # because that file is not part of GCC.
1107
1108 # C language specific files.
1109
1110 c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
1111     $(srcdir)/c-parse.h c-tree.h input.h flags.h
1112         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
1113 $(srcdir)/c-parse.h: $(srcdir)/c-parse.c
1114 $(srcdir)/c-parse.c: $(srcdir)/c-parse.y
1115         cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
1116 $(srcdir)/c-parse.y: c-parse.in
1117         echo '/*WARNING: This file is automatically generated!*/' >tmp-c-parse.y
1118         sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
1119           -e "/^ifc$$/d" -e "/^end ifc$$/d" \
1120           $(srcdir)/c-parse.in >>tmp-c-parse.y
1121         $(srcdir)/move-if-change tmp-c-parse.y $(srcdir)/c-parse.y
1122
1123 $(srcdir)/c-gperf.h: c-parse.gperf
1124         gperf -p -j1 -i 1 -g -o -t -G -N is_reserved_word -k1,3,$$ \
1125            $(srcdir)/c-parse.gperf >tmp-gperf.h
1126          $(srcdir)/move-if-change tmp-gperf.h $(srcdir)/c-gperf.h
1127
1128 c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h output.h
1129 c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h output.h
1130 c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
1131 c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h $(srcdir)/c-parse.h \
1132     input.h flags.h $(srcdir)/c-gperf.h c-pragma.h
1133 c-aux-info.o : c-aux-info.c  $(CONFIG_H) $(TREE_H) c-tree.h flags.h
1134 c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
1135 c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H) except.h function.h \
1136     defaults.h c-pragma.h
1137 c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
1138
1139 # To make a configuration always use collect2, set USE_COLLECT2 to ld.
1140 ld: collect2
1141         rm -f ld$(exeext)
1142         ln collect2$(exeext) ld$(exeext) > /dev/null 2>&1 \
1143            || cp collect2$(exeext) ld$(exeext)
1144
1145 collect2 : collect2.o cplus-dem.o underscore.o version.o \
1146         choose-temp.o $(LIBDEPS)
1147 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
1148         -rm -f collect2$(exeext)
1149         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ collect2.o \
1150           cplus-dem.o underscore.o version.o choose-temp.o $(LIBS)
1151
1152 collect2.o : collect2.c $(CONFIG_H) gstab.h obstack.h demangle.h
1153         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES)  \
1154         -DTARGET_MACHINE=\"$(target_alias)\" $(MAYBE_USE_COLLECT2) \
1155         -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
1156
1157 cplus-dem.o: cplus-dem.c demangle.h
1158
1159 underscore.c: stamp-under ; @true
1160
1161 stamp-under: $(GCC_PASSES)
1162         echo "int xxy_us_dummy;" >tmp-dum.c
1163         $(GCC_FOR_TARGET) -S tmp-dum.c
1164         echo '/*WARNING: This file is automatically generated!*/' >tmp-under.c
1165         if grep _xxy_us_dummy tmp-dum.s > /dev/null ; then \
1166           echo "int prepends_underscore = 1;" >>tmp-under.c; \
1167         else \
1168           echo "int prepends_underscore = 0;" >>tmp-under.c; \
1169         fi
1170         $(srcdir)/move-if-change tmp-under.c underscore.c
1171         -rm -f tmp-dum.c tmp-dum.s
1172         touch stamp-under
1173
1174 # Objective C language specific files.
1175
1176 objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
1177    c-tree.h input.h flags.h objc-act.h
1178         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
1179 $(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
1180         cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
1181 $(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
1182         echo '/*WARNING: This file is automatically generated!*/' >tmp-objc-prs.y
1183         sed -e "/^ifc$$/,/^end ifc$$/d" \
1184           -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
1185           $(srcdir)/c-parse.in >>tmp-objc-prs.y
1186         $(srcdir)/move-if-change tmp-objc-prs.y $(srcdir)/objc-parse.y
1187
1188 objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
1189    flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
1190
1191 # A file used by all variants of C.
1192
1193 c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
1194
1195 # Language-independent files.
1196
1197 gcc.o: gcc.c $(CONFIG_H) multilib.h config.status $(lang_specs_files)
1198         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1199   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
1200   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
1201   -DDEFAULT_TARGET_VERSION=\"$(version)\" \
1202   -DDEFAULT_TARGET_MACHINE=\"$(target_alias)\" \
1203   -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
1204   -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
1205
1206 dumpvers: dumpvers.c
1207
1208 version.o: version.c
1209 obstack.o: obstack.c
1210 choose-temp.o: choose-temp.c
1211 pexecute.o: pexecute.c
1212
1213 convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
1214
1215 tree.o : tree.c $(CONFIG_H) $(TREE_H) flags.h function.h
1216 print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
1217 stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) flags.h function.h
1218 fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
1219 toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) bytecode.h bc-emit.h \
1220    flags.h input.h insn-attr.h xcoffout.h defaults.h output.h \
1221    $(lang_options_files)
1222         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(MAYBE_USE_COLLECT2) \
1223           -DTARGET_NAME=\"$(target_alias)\" \
1224           -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
1225
1226 rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
1227
1228 print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
1229 rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
1230
1231 varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
1232    defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h \
1233    output.h bytecode.h c-pragma.h
1234 function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
1235    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
1236    recog.h output.h bytecode.h bc-emit.h
1237 stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
1238    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h except.h \
1239    loop.h recog.h bytecode.h bc-typecd.h bc-typecd.def bc-opcode.h \
1240    bc-optab.h bc-emit.h
1241 except.o : except.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
1242    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
1243    recog.h output.h except.h
1244 expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h regs.h \
1245    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h \
1246    typeclass.h bytecode.h bc-opcode.h bc-typecd.h bc-typecd.def bc-optab.h \
1247    bc-emit.h modemap.def hard-reg-set.h
1248 calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
1249    insn-flags.h
1250 expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
1251    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
1252 explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
1253    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
1254 optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
1255    insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
1256 dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
1257    insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
1258 sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
1259    insn-config.h reload.h
1260 dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
1261    insn-config.h reload.h output.h defaults.h
1262 dwarf2out.o : dwarf2out.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf2.h flags.h \
1263    insn-config.h reload.h output.h defaults.h hard-reg-set.h regs.h
1264 xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
1265 emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h \
1266    function.h regs.h insn-config.h insn-codes.h real.h expr.h bytecode.h \
1267    bc-opcode.h bc-typecd.h bc-typecd.def bc-optab.h bc-emit.h bc-opname.h
1268 real.o : real.c $(CONFIG_H) $(TREE_H)
1269 getpwd.o : getpwd.c $(CONFIG_H)
1270
1271 integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
1272    insn-flags.h insn-config.h insn-codes.h expr.h real.h regs.h function.h \
1273    bytecode.h
1274
1275 jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
1276    insn-config.h insn-flags.h insn-codes.h expr.h real.h
1277 stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
1278
1279 cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
1280    insn-config.h recog.h
1281 loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
1282    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
1283 unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
1284    integrate.h regs.h flags.h expr.h loop.h
1285 flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
1286    basic-block.h regs.h hard-reg-set.h output.h
1287 combine.o : combine.c $(CONFIG_H) $(RTL_H) flags.h  \
1288    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
1289    basic-block.h recog.h real.h hard-reg-set.h
1290 regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
1291    basic-block.h regs.h insn-config.h recog.h reload.h real.h bytecode.h
1292 local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
1293    regs.h hard-reg-set.h insn-config.h recog.h output.h
1294 global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
1295    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
1296
1297 reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h output.h \
1298    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
1299 reload1.o : reload1.c $(CONFIG_H) $(RTL_H) real.h flags.h expr.h \
1300    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
1301    basic-block.h recog.h output.h
1302 caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
1303    regs.h hard-reg-set.h insn-codes.h insn-config.h basic-block.h recog.h \
1304    reload.h expr.h
1305 reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
1306    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
1307    flags.h output.h
1308 sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
1309    flags.h insn-config.h insn-attr.h
1310 final.o : final.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h regs.h \
1311    recog.h conditions.h insn-config.h insn-attr.h except.h real.h output.h \
1312    hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
1313 recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
1314    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
1315    insn-flags.h insn-codes.h real.h
1316 reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
1317    regs.h hard-reg-set.h flags.h insn-config.h insn-flags.h
1318
1319 $(out_object_file): $(out_file) $(CONFIG_H) $(TREE_H) \
1320    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
1321    insn-flags.h output.h insn-attr.h insn-codes.h
1322         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(out_file)
1323
1324 # Build auxiliary files that support ecoff format.
1325 mips-tfile: mips-tfile.o version.o $(LIBDEPS)
1326         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tfile.o version.o $(LIBS)
1327
1328 mips-tfile.o : mips-tfile.c $(CONFIG_H) $(RTL_H)
1329
1330 mips-tdump: mips-tdump.o version.o $(LIBDEPS)
1331         $(CC) $(CFLAGS) $(LDFLAGS) -o $@ mips-tdump.o version.o $(LIBS)
1332
1333 mips-tdump.o : mips-tdump.c $(CONFIG_H) $(RTL_H)
1334
1335 # Build file to support OSF/rose half-pic format.
1336 halfpic.o: halfpic.c $(CONFIG_H) $(RTL_H) $(TREE_H)
1337
1338 # Normally this target is not used; but it is used if you
1339 # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
1340 # from the GNU Emacs distribution.
1341 alloca.o:       alloca.c
1342         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
1343           -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
1344         $(ALLOCA_FINISH)
1345 \f
1346 # Generate header and source files from the machine description, 
1347 # and compile them.
1348
1349 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
1350   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1351   insn-attr.h insn-attrtab.c
1352
1353 # The following pair of rules has this effect:
1354 # genconfig is run only if the md has changed since genconfig was last run;
1355 # but the file insn-config.h is touched only when its contents actually change.
1356
1357 # Each of the other insn-* files is handled by a similar pair of rules.
1358
1359 # This causes an anomaly in the results of make -n
1360 # because insn-* is older than stamp-*
1361 # and thus make -n thinks that insn-* will be updated
1362 # and force recompilation of things that depend on it.
1363 # We use move-if-change precisely to avoid such recompilation.
1364 # But there is no way to teach make -n that it will be avoided.
1365
1366 # Each of the insn-*.[ch] rules has a semicolon at the end,
1367 # for otherwise the system Make on SunOS 4.1 never tries
1368 # to recompile insn-*.o.  To avoid problems and extra noise from
1369 # versions of make which don't like empty commands (nothing after the
1370 # trailing `;'), we call true for each.
1371
1372 insn-config.h: stamp-config ; @true
1373 stamp-config : $(md_file) genconfig $(srcdir)/move-if-change
1374         ./genconfig $(md_file) > tmp-config.h
1375         $(srcdir)/move-if-change tmp-config.h insn-config.h
1376         touch stamp-config
1377
1378 insn-flags.h: stamp-flags ; @true
1379 stamp-flags : $(md_file) genflags $(srcdir)/move-if-change
1380         ./genflags $(md_file) > tmp-flags.h
1381         $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1382         touch stamp-flags
1383
1384 insn-codes.h: stamp-codes ; @true
1385 stamp-codes : $(md_file) gencodes $(srcdir)/move-if-change
1386         ./gencodes $(md_file) > tmp-codes.h
1387         $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1388         touch stamp-codes
1389
1390 insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
1391   insn-config.h insn-flags.h insn-codes.h
1392         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1393
1394 insn-emit.c: stamp-emit ; @true
1395 stamp-emit : $(md_file) genemit $(srcdir)/move-if-change
1396         ./genemit $(md_file) > tmp-emit.c
1397         $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1398         touch stamp-emit
1399
1400 insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
1401   real.h output.h flags.h
1402         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1403
1404 insn-recog.c: stamp-recog ; @true
1405 stamp-recog : $(md_file) genrecog $(srcdir)/move-if-change
1406         ./genrecog $(md_file) > tmp-recog.c
1407         $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1408         touch stamp-recog
1409
1410 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1411   insn-config.h flags.h rtl.h recog.h expr.h reload.h
1412         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1413
1414 insn-opinit.c: stamp-opinit ; @true
1415 stamp-opinit : $(md_file) genopinit $(srcdir)/move-if-change
1416         ./genopinit $(md_file) > tmp-opinit.c
1417         $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1418         touch stamp-opinit
1419
1420 insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
1421         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1422
1423 insn-extract.c: stamp-extract ; @true
1424 stamp-extract : $(md_file) genextract $(srcdir)/move-if-change
1425         ./genextract $(md_file) > tmp-extract.c
1426         $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1427         touch stamp-extract
1428
1429 insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1430         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1431
1432 insn-peep.c: stamp-peep ; @true
1433 stamp-peep : $(md_file) genpeep $(srcdir)/move-if-change
1434         ./genpeep $(md_file) > tmp-peep.c
1435         $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1436         touch stamp-peep
1437
1438 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1439      insn-attr.h insn-config.h
1440         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1441
1442 insn-attr.h: stamp-attr ; @true
1443 stamp-attr : $(md_file) genattr $(srcdir)/move-if-change
1444         ./genattr $(md_file) > tmp-attr.h
1445         $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1446         touch stamp-attr
1447
1448 insn-attrtab.c: stamp-attrtab ; @true
1449 stamp-attrtab : $(md_file) genattrtab $(srcdir)/move-if-change
1450         if cmp -s $(PREMADE_ATTRTAB_MD) $(md_file);     \
1451         then                                    \
1452           echo Using $(PREMADE_ATTRTAB);        \
1453           cp $(PREMADE_ATTRTAB) tmp-attrtab.c;  \
1454         else                                    \
1455           ./genattrtab $(md_file) > tmp-attrtab.c;      \
1456         fi
1457         $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1458         touch stamp-attrtab
1459
1460 insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1461     hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1462     insn-codes.h
1463         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1464
1465 insn-output.c: stamp-output ; @true
1466 stamp-output : $(md_file) genoutput $(srcdir)/move-if-change
1467         ./genoutput $(md_file) > tmp-output.c
1468         $(srcdir)/move-if-change tmp-output.c insn-output.c
1469         touch stamp-output
1470 \f
1471 # Compile the programs that generate insn-* from the machine description.
1472 # They are compiled with $(HOST_CC), and associated libraries,
1473 # since they need to run on this machine
1474 # even if GCC is being compiled to run on some other machine.
1475
1476 # $(CONFIG_H) is omitted from the deps of the gen*.o
1477 # because these programs don't really depend on anything 
1478 # about the target machine.  They do depend on config.h itself,
1479 # since that describes the host machine.
1480
1481 # Pass the md file through cpp if the target requests it.
1482 $(MD_FILE): $(MD_DEPS)
1483         rm -f $@
1484         $(MD_CPP) $(MD_CPPFLAGS) $(md_file) | sed 's/^# /; /g' > tmp-$@
1485         mv tmp-$@ $@
1486
1487 genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1488         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1489           genconfig.o $(HOST_RTL) $(HOST_LIBS)
1490
1491 genconfig.o : genconfig.c $(RTL_H) $(build_xm_file)
1492         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1493
1494 genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1495         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1496          genflags.o $(HOST_RTL) $(HOST_LIBS)
1497
1498 genflags.o : genflags.c $(RTL_H) $(build_xm_file)
1499         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1500
1501 gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1502         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1503          gencodes.o $(HOST_RTL) $(HOST_LIBS)
1504
1505 gencodes.o : gencodes.c $(RTL_H) $(build_xm_file)
1506         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1507
1508 genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1509         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1510          genemit.o $(HOST_RTL) $(HOST_LIBS)
1511
1512 genemit.o : genemit.c $(RTL_H) $(build_xm_file)
1513         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1514
1515 genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
1516         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1517          genopinit.o $(HOST_RTL) $(HOST_LIBS)
1518
1519 genopinit.o : genopinit.c $(RTL_H) $(build_xm_file)
1520         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1521
1522 genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1523         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1524          genrecog.o $(HOST_RTL) $(HOST_LIBS)
1525
1526 genrecog.o : genrecog.c $(RTL_H) $(build_xm_file)
1527         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1528
1529 genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1530         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1531          genextract.o $(HOST_RTL) $(HOST_LIBS)
1532
1533 genextract.o : genextract.c $(RTL_H) $(build_xm_file) insn-config.h
1534         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1535
1536 genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1537         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1538          genpeep.o $(HOST_RTL) $(HOST_LIBS)
1539
1540 genpeep.o : genpeep.c $(RTL_H) $(build_xm_file)
1541         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1542
1543 genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1544         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1545          genattr.o $(HOST_RTL) $(HOST_LIBS)
1546
1547 genattr.o : genattr.c $(RTL_H) $(build_xm_file)
1548         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1549
1550 genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
1551         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1552          genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
1553
1554 genattrtab.o : genattrtab.c $(RTL_H)  $(build_xm_file) insn-config.h
1555         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1556
1557 genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1558         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1559          genoutput.o $(HOST_RTL) $(HOST_LIBS)
1560
1561 genoutput.o : genoutput.c $(RTL_H) $(build_xm_file)
1562         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1563 \f
1564 # Compile the libraries to be used by gen*.
1565 # If we are not cross-building, gen* use the same .o's that cc1 will use,
1566 # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1567 # with the rules for rtl.o, alloca.o, etc.
1568 $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1569         rm -f $(HOST_PREFIX)rtl.c
1570         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
1571         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1572
1573 $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1574         rm -f $(HOST_PREFIX)print-rtl.c
1575         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
1576         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1577
1578 $(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1579         rm -f $(HOST_PREFIX)rtlanal.c
1580         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
1581         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1582
1583 $(HOST_PREFIX_1)alloca.o: alloca.c
1584         rm -f $(HOST_PREFIX)alloca.c
1585         cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1586         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1587
1588 $(HOST_PREFIX_1)obstack.o: obstack.c
1589         rm -f $(HOST_PREFIX)obstack.c
1590         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
1591         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1592
1593 $(HOST_PREFIX_1)malloc.o: malloc.c
1594         rm -f $(HOST_PREFIX)malloc.c
1595         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
1596         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1597
1598 # This satisfies the dependency that we get if you cross-compile a compiler
1599 # that does not need to compile alloca, malloc or whatever.
1600 $(HOST_PREFIX_1): 
1601         touch $(HOST_PREFIX_1)
1602 \f
1603 # Remake bytecode files.
1604 BI_OBJ=bi-parser.o bi-lexer.o bi-reverse.o
1605
1606 bc-emit.o : bc-emit.c $(CONFIG_H) $(RTL_H) real.h $(BYTECODE_H) \
1607    bc-arity.h bc-opcode.h bc-typecd.h bc-typecd.def bi-run.h bytetypes.h
1608 bc-optab.o : bc-optab.c $(CONFIG_H) $(REAL_H) $(BYTECODE_H) \
1609    bc-opcode.h bc-typecd.h bc-typecd.def
1610
1611 bi-arity: bi-arity.o $(BI_OBJ) $(HOST_LIBDEPS)
1612         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1613          bi-arity.o $(BI_OBJ) $(HOST_LIBS)
1614 bi-opcode: bi-opcode.o $(BI_OBJ) $(HOST_LIBDEPS)
1615         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1616          bi-opcode.o $(BI_OBJ) $(HOST_LIBS)
1617 bi-opname: bi-opname.o $(BI_OBJ) $(HOST_LIBDEPS)
1618         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1619          bi-opname.o $(BI_OBJ) $(HOST_LIBS)
1620
1621 $(srcdir)/bi-parser.h: $(srcdir)/bi-parser.c
1622 $(srcdir)/bi-parser.c: $(srcdir)/bi-parser.y
1623         cd $(srcdir); $(BISON) $(BISONFLAGS) -d bi-parser.y -o bi-parser.c
1624
1625 bi-parser.o: $(srcdir)/bi-parser.c bi-defs.h $(build_xm_file)
1626         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1627            $(srcdir)/bi-parser.c
1628 bi-lexer.o: bi-lexer.c $(srcdir)/bi-parser.h $(build_xm_file)
1629         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1630            $(srcdir)/bi-lexer.c
1631 bi-arity.o: bi-arity.c bi-defs.h $(build_xm_file)
1632         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1633            $(srcdir)/bi-arity.c
1634 bi-opcode.o: bi-opcode.c bi-defs.h $(build_xm_file)
1635         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1636            $(srcdir)/bi-opcode.c
1637 bi-opname.o: bi-opname.c bi-defs.h $(build_xm_file)
1638         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1639            $(srcdir)/bi-opname.c
1640 bi-reverse.o: bi-reverse.c bi-defs.h
1641         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) \
1642            $(srcdir)/bi-reverse.c
1643
1644 bc-arity.h: stamp-bcarity ; @true
1645 stamp-bcarity : $(srcdir)/bytecode.def bi-arity $(srcdir)/move-if-change
1646         ./bi-arity < $(srcdir)/bytecode.def >tmp-bc-arity.h
1647         $(srcdir)/move-if-change tmp-bc-arity.h bc-arity.h
1648         touch stamp-bcarity
1649
1650 bc-opcode.h: stamp-bcopcode ; @true
1651 stamp-bcopcode : $(srcdir)/bytecode.def bi-opcode $(srcdir)/move-if-change
1652         ./bi-opcode < $(srcdir)/bytecode.def >tmp-bcopcd.h
1653         $(srcdir)/move-if-change tmp-bcopcd.h bc-opcode.h
1654         touch stamp-bcopcode
1655
1656 bc-opname.h: stamp-bcopname ; @true
1657 stamp-bcopname : $(srcdir)/bytecode.def bi-opname $(srcdir)/move-if-change
1658         ./bi-opname < $(srcdir)/bytecode.def >tmp-bcopnm.h
1659         $(srcdir)/move-if-change tmp-bcopnm.h bc-opname.h
1660         touch stamp-bcopname
1661
1662 bytecode.mostlyclean:
1663         -rm -f bc-arity.h bc-opcode.h bc-opname.h
1664
1665 bytecode.distclean bytecode.clean:      bytecode.mostlyclean
1666         -rm -f bi-arity bi-opcode bi-opname bi-lexer
1667
1668 bytecode.maintainer-clean: bytecode.clean
1669         -rm -f bi-parser.c bi-parser.h
1670
1671 \f
1672 # Remake cpp and protoize.
1673
1674 # Making the preprocessor
1675 cpp: $(CCCP)
1676         -rm -f cpp$(exeext)
1677         ln $(CCCP)$(exeext) cpp$(exeext) > /dev/null 2>&1 \
1678          || cp $(CCCP)$(exeext) cpp$(exeext)
1679 cccp: cccp.o cexp.o version.o $(LIBDEPS)
1680         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ cccp.o cexp.o \
1681           version.o $(LIBS)
1682 cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1683         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1684 $(srcdir)/cexp.c: $(srcdir)/cexp.y
1685         cd $(srcdir); $(BISON) -o cexp.c cexp.y
1686
1687 cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
1688 # The reason we use $(libdir)/g++-include rather than using libsubdir
1689 # is for compatibility with the current version of libg++.
1690         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1691           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1692           -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1693           -DOLD_GPLUSPLUS_INCLUDE_DIR=\"$(old_gxx_include_dir)\" \
1694           -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1695           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1696           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1697           -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1698
1699 cppmain: cppmain.o cpplib.o cpphash.o cppalloc.o cpperror.o cppexp.o \
1700   version.o $(LIBDEPS)
1701         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ cppmain.o cpplib.o cpphash.o \
1702           cppalloc.o cpperror.o cppexp.o version.o $(LIBS)
1703
1704 cpplib.o: cpplib.c $(CONFIG_H) cpplib.h cpphash.h config.status
1705         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1706           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1707           -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1708           -DOLD_GPLUSPLUS_INCLUDE_DIR=\"$(old_gxx_include_dir)\" \
1709           -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1710           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1711           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1712           -c `echo $(srcdir)/cpplib.c | sed 's,^\./,,'`
1713
1714 cpperror.o: cpperror.c $(CONFIG_H) cpplib.h
1715
1716 cppexp.o: cppexp.c $(CONFIG_H) cpplib.h
1717
1718 cpphash.o: cpphash.c cpplib.h cpphash.h
1719
1720 cppalloc.o: cppalloc.c $(CONFIG_H)
1721
1722 # Note for the stamp targets, we run the program `true' instead of
1723 # having an empty command (nothing following the semicolon).
1724
1725 proto: config.status protoize unprotoize SYSCALLS.c.X
1726
1727 protoize: protoize.o getopt.o getopt1.o getpwd.o version.o \
1728     pexecute.o choose-temp.o $(LIBDEPS)
1729         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
1730           protoize.o getopt.o getopt1.o getpwd.o version.o \
1731           pexecute.o choose-temp.o $(LIBS)
1732 protoize.o: stamp-proto ; @true
1733
1734 unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o \
1735     pexecute.o choose-temp.o $(LIBDEPS)
1736         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
1737           unprotoize.o getopt.o getopt1.o getpwd.o version.o \
1738           pexecute.o choose-temp.o $(LIBS)
1739 unprotoize.o:   stamp-proto ; @true
1740
1741 stamp-proto: protoize.c getopt.h $(CONFIG_H)
1742         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1743           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1744           -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1745           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1746           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1747           -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1748           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1749           -DUNPROTOIZE $(srcdir)/protoize.c
1750         mv protoize$(objext) unprotoize$(objext)
1751         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1752           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1753           -DGPLUSPLUS_INCLUDE_DIR=\"$(gxx_include_dir)\" \
1754           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1755           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1756           -DLOCAL_INCLUDE_DIR=\"$(includedir)\" \
1757           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1758           $(srcdir)/protoize.c
1759         touch stamp-proto
1760
1761 getopt.o: getopt.c getopt.h
1762         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1763 getopt1.o: getopt1.c getopt.h
1764         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1765
1766 # This info describes the target machine, so compile with GCC just built.
1767 SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES) \
1768    stmp-int-hdrs
1769         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1770         cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
1771         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1772           -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1773         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1774
1775
1776 test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
1777         -rm -f tmp-proto.[cso]
1778         cp $(srcdir)/protoize.c tmp-proto.c
1779         chmod u+w tmp-proto.c
1780         ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1781           $(CFLAGS) $(INCLUDES) \
1782           -DGCC_INCLUDE_DIR=0 \
1783           -DGPLUSPLUS_INCLUDE_DIR=0 \
1784           -DCROSS_INCLUDE_DIR=0 \
1785           -DTOOL_INCLUDE_DIR=0 \
1786           -DSTD_PROTO_DIR=0" tmp-proto.c
1787         @echo '**********' Expect 400 lines of differences.
1788         -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1789         -wc -l tmp-proto.diff
1790         ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1791           $(CFLAGS) $(INCLUDES) \
1792           -DGCC_INCLUDE_DIR=0 \
1793           -DGPLUSPLUS_INCLUDE_DIR=0 \
1794           -DCROSS_INCLUDE_DIR=0 \
1795           -DTOOL_INCLUDE_DIR=0 \
1796           -DSTD_PROTO_DIR=0" tmp-proto.c
1797         @echo Expect zero differences.
1798         diff $(srcdir)/protoize.c tmp-proto.c | cat
1799         -rm -f tmp-proto.[cs] tmp-proto$(objext)
1800 \f
1801 # Build the include directory.  The stamp files are stmp-* rather than
1802 # stamp-* so that mostlyclean does not force the include directory to
1803 # be rebuilt.
1804
1805 # Build the include directory except for float.h (which depends upon
1806 # enquire).
1807 stmp-int-hdrs: stmp-fixinc $(USER_H) xlimits.h objc-headers
1808 # Copy in the headers provided with gcc.
1809 # The sed command gets just the last file name component;
1810 # this is necessary because VPATH could add a dirname.
1811 # Using basename would be simpler, but some systems don't have it.
1812         for file in .. $(USER_H); do \
1813           if [ X$$file != X.. ]; then \
1814             realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
1815             rm -f include/$$realfile; \
1816             cp $$file include; \
1817             chmod a+r include/$$realfile; \
1818           fi; \
1819         done
1820         rm -f include/limits.h
1821         cp xlimits.h include/limits.h
1822         chmod a+r include/limits.h
1823 # Install the README
1824         rm -f include/README
1825         cp $(srcdir)/README-fixinc include/README
1826         chmod a+r include/README
1827         touch stmp-int-hdrs
1828
1829 # Build the complete include directory.
1830 stmp-headers: stmp-int-hdrs gfloat.h
1831         rm -f include/float.h
1832         cp gfloat.h include/float.h
1833         chmod a+r include/float.h
1834         touch stmp-headers
1835
1836 # Build fixed copies of system files.
1837 stmp-fixinc: $(FIXINCLUDES) gsyslimits.h
1838         rm -rf include
1839         mkdir include
1840         if [ x$(FIXINCLUDES) != xMakefile.in ]; \
1841         then \
1842           for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1843             if [ -d $$dir ]; \
1844             then \
1845               $(SHELL) $(srcdir)/$(FIXINCLUDES) include $$dir; \
1846             else true; fi; \
1847           done; \
1848         else true; \
1849         fi
1850         rm -f include/syslimits.h
1851         if [ -f include/limits.h ]; then \
1852           mv include/limits.h include/syslimits.h; \
1853         else \
1854           cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1855         fi
1856         chmod a+r include/syslimits.h
1857         touch stmp-fixinc
1858
1859 # copy objc header files into build directory
1860 objc-headers: stmp-fixinc
1861         if [ -d include ]; then true; else mkdir include; fi
1862         if [ -d objc ]; then true; else mkdir objc; fi
1863         thisdir1=`pwd`; \
1864         srcdir1=`cd $(srcdir); pwd`; \
1865         cd objc; \
1866         $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
1867         srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1868         GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1869         GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
1870         touch objc-headers
1871
1872 # Files related to the fixproto script.
1873
1874 deduced.h: $(GCC_PASSES) $(srcdir)/scan-types.sh stmp-int-hdrs
1875         CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -I. -I$(srcdir) -Iinclude -I${SYSTEM_HEADER_DIR}"; \
1876           export CC; \
1877           $(SHELL) $(srcdir)/scan-types.sh "$(srcdir)" >tmp-deduced.h
1878         mv tmp-deduced.h deduced.h
1879
1880 gen-protos: gen-protos.o scan.o cppalloc.o $(HOST_LIBDEPS)
1881         ${HOST_CC} $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ \
1882           gen-protos.o scan.o cppalloc.o $(HOST_LIBS)
1883
1884 gen-protos.o: gen-protos.c scan.h $(build_xm_file)
1885         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gen-protos.c
1886
1887 scan.o: scan.c scan.h $(build_xm_file)
1888         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan.c
1889
1890 xsys-protos.h: $(GCC_PASSES) $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
1891         cat deduced.h $(srcdir)/sys-protos.h > tmp-fixtmp.c
1892         mv tmp-fixtmp.c fixtmp.c
1893         $(GCC_FOR_TARGET) fixtmp.c -w -U__SIZE_TYPE__ -U__PTRDIFF_TYPE__ -U__WCHAR_TYPE__ -E \
1894           | sed -e 's/  / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
1895           | ./gen-protos >xsys-protos.hT
1896         mv xsys-protos.hT xsys-protos.h
1897         rm -rf fixtmp.c
1898
1899 fix-header: fix-header.o scan-decls.o scan.o xsys-protos.h $(HOST_LIBDEPS) \
1900    cpplib.o cpphash.o cppalloc.o cppexp.o cpperror.o version.o
1901         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o $@ fix-header.o \
1902            scan-decls.o scan.o cpplib.o cpphash.o cppalloc.o version.o \
1903            cppexp.o $(HOST_LIBS)
1904
1905 fix-header.o: fix-header.c obstack.h scan.h xsys-protos.h $(build_xm_file)
1906         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/fix-header.c
1907
1908 scan-decls.o: scan-decls.c scan.h cpplib.h $(build_xm_file)
1909         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/scan-decls.c
1910
1911 # stmp-fixproto depends on this, not on fix-header directly.
1912 # The idea is to make sure fix-header gets built,
1913 # but not rerun fixproto after each stage
1914 # just because fix-header's mtime has changed.
1915 fixhdr.ready: fix-header
1916         -if [ -f fixhdr.ready ] ; then \
1917                 true; \
1918         else \
1919                 touch fixhdr.ready; \
1920         fi
1921
1922 # stmp-headers is to make sure fixincludes has already finished.
1923 # The if statement is so that we don't run fixproto a second time
1924 # if it has already been run on the files in `include'.
1925 stmp-fixproto: fixhdr.ready fixproto stmp-headers
1926         @echo "Various warnings and error messages from fixproto are normal"
1927         -if [ -d include ] ; then true; else mkdir include; fi
1928         -if [ -f include/fixed ] ; then true; \
1929         else \
1930           : This line works around a 'make' bug in BSDI 1.1.; \
1931           FIXPROTO_DEFINES="$(FIXPROTO_DEFINES)"; export FIXPROTO_DEFINES; \
1932           $(SHELL) ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR); \
1933           touch include/fixed; \
1934         fi
1935         touch stmp-fixproto
1936 \f
1937 # Remake the info files.
1938
1939 doc: info
1940 info: $(srcdir)/cpp.info $(srcdir)/gcc.info lang.info
1941
1942 $(srcdir)/cpp.info: cpp.texi
1943         cd $(srcdir); $(MAKEINFO) $(MAKEINFOFLAGS) cpp.texi
1944
1945 $(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1946                 md.texi rtl.texi tm.texi 
1947         cd $(srcdir); $(MAKEINFO) $(MAKEINFOFLAGS) gcc.texi
1948
1949 dvi: $(srcdir)/gcc.dvi $(srcdir)/cpp.dvi lang.dvi
1950
1951 # This works with GNU Make's default rule.
1952 $(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1953                 md.texi rtl.texi tm.texi 
1954         $(TEXI2DVI) $<
1955
1956 # This works with GNU Make's default rule.
1957 $(srcdir)/cpp.dvi: cpp.texi
1958         $(TEXI2DVI) $<
1959
1960 $(srcdir)/INSTALL: install1.texi install.texi
1961         $(MAKEINFO) -D INSTALLONLY --no-header --no-split \
1962           `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
1963 \f
1964 # Deletion of files made during compilation.
1965 # There are four levels of this:
1966 #   `mostlyclean', `clean', `distclean' and `maintainer-clean'.
1967 # `mostlyclean' is useful while working on a particular type of machine.
1968 # It deletes most, but not all, of the files made by compilation.
1969 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
1970 # `clean' deletes everything made by running `make all'.
1971 # `distclean' also deletes the files made by config.
1972 # `maintainer-clean' also deletes everything that could be regenerated
1973 # automatically.  We remove as much from the language subdirectories as we can
1974 # (less duplicated code).
1975
1976
1977 mostlyclean: bytecode.mostlyclean lang.mostlyclean
1978         -rm -f $(STAGESTUFF)
1979 # Clean the objc subdir if we created one.
1980         if [ -d objc ]; then \
1981           srcdir1=`cd $(srcdir); pwd`; \
1982           cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
1983         else true; fi
1984         -rm -f libobjc.a
1985 # Delete the temporary source copies for cross compilation.
1986         -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1987         -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1988         -rm -f $(HOST_PREFIX_1)obstack.c 
1989 # Delete the temp files made in the course of building libgcc.a.
1990         -rm -f tmplibgcc* tmpcopy xlimits.h
1991         for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1992 # Delete other temporary files.
1993         -rm -f tmp-float.h tmp-gcc.xtar.gz
1994         -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
1995         -rm -f tmp-c-parse.y tmp-objc-prs.y tmp-gperf.h
1996         -rm -f tmp-specs t-float.h-cross tmp-xlimits.h
1997         -rm -f tmp-fixtmp.c xsys-protos.hT
1998 # Delete the stamp files.
1999         -rm -f stamp-* tmp-*
2000         -rm -f */stamp-* */tmp-*
2001 # Delete debugging dump files.
2002         -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
2003         -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
2004         -rm -f */*.greg */*.lreg */*.combine */*.flow */*.cse */*.jump */*.rtl
2005         -rm -f */*.tree */*.loop */*.dbr */*.jump2 */*.sched */*.cse2
2006         -rm -f */*.sched2 */*.stack
2007 # Delete some files made during installation.
2008         -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
2009         -rm -f collect collect2 mips-tfile mips-tdump alloca.s
2010 # Delete files generated for fixproto
2011         -rm -rf fix-header xsys-protos.h deduced.h tmp-deduced.h \
2012           gen-protos fixproto.list fixtmp.* fixhdr.ready
2013 # Delete unwanted output files from TeX.
2014         -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
2015         -rm -f */*.toc */*.log */*.vr */*.fn */*.cp */*.tp */*.ky */*.pg
2016 # Delete sorted indices we don't actually use.
2017         -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
2018 # Delete core dumps.
2019         -rm -f core */core
2020
2021 # Delete all files made by compilation
2022 # that don't exist in the distribution.
2023 clean: mostlyclean bytecode.clean lang.clean
2024 # It may not be quite desirable to delete unprotoize.c here,
2025 # but the spec for `make clean' requires it.
2026 # Using unprotoize.c is not quite right in the first place, 
2027 # but what better way is there?
2028         -rm -f libgcc.a libgcc1.a libgcc1-asm.a libgcc2.a libgcc2.ready
2029         -rm -f libgcc1.null
2030         -rm -f *.dvi
2031         -rm -f */*.dvi
2032         -if [ -f md.pre-cpp ]; then \
2033           rm -f md ; \
2034         fi
2035 # Delete the include directory.
2036         -rm -rf stmp-* include objc-headers
2037         -rm -f */stmp-*
2038 # Delete files used by the "multilib" facility (including libgcc subdirs).
2039         -rm -f multilib.h tmpmultilib*
2040         -if [ "x$(MULTILIB_DIRNAMES)" != x ] ; then \
2041           rm -rf $(MULTILIB_DIRNAMES); \
2042         else if [ "x$(MULTILIB_OPTIONS)" != x ] ; then \
2043           rm -rf `echo $(MULTILIB_OPTIONS) | sed -e 's/\// /g'`; \
2044         fi ; fi
2045
2046 # Delete all files that users would normally create
2047 # while building and installing GCC.
2048 distclean: clean bytecode.distclean lang.distclean
2049         -rm -f tm.h config.h tconfig.h hconfig.h md
2050         -rm -f config.status config.run
2051         -rm -f Makefile specs.h options.h *.oaux
2052         -rm -fr stage1 stage2 stage3 stage4
2053         -rm -f */stage1 */stage2 */stage3 */stage4 */include
2054         -rm -f objc-parse.output
2055         -rm -f c-parse.output
2056         -rm -f *.asm
2057         -rm -f float.h
2058
2059 # Delete anything likely to be found in the source directory
2060 # that shouldn't be in the distribution.
2061 extraclean: distclean lang.extraclean
2062         -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
2063         -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
2064         -rm -f config/*/=* config/*/"#"* config/*/*~*
2065         -rm -f config/*/*.orig config/*/*.rej
2066         -rm -f *.dvi *.ps *.oaux *.d *.[zZ] *.gz
2067         -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
2068         -rm -f *lose config/*lose config/*/*lose
2069         -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
2070         -rm -f */=* */"#"* */*~*
2071         -rm -f */patch* */*.orig */*.rej
2072         -rm -f */*.dvi */*.oaux */*.d */*.[zZ] */*.gz
2073         -rm -f */*.tar */*.xtar */*diff */*.diff.* */*.tar.* */*.xtar.* */*diffs
2074         -rm -f */*lose */*.s */*.s[0-9] */*.i
2075
2076 # Get rid of every file that's generated from some other file.
2077 # Most of these files ARE PRESENT in the GCC distribution.
2078 maintainer-clean: distclean bytecode.maintainer-clean lang.maintainer-clean
2079         -rm -f c-parse.y c-gperf.h objc-parse.y
2080         -rm -f objc-parse.c objc-parse.output
2081         -rm -f c-parse.c c-parse.h c-parse.output
2082         -rm -f cexp.c cexp.output TAGS 
2083         -rm -f cpp.info* cpp.??s cpp.*aux
2084         -rm -f gcc.info* gcc.??s gcc.*aux
2085 \f
2086 # Entry points `install' and `uninstall'.
2087 # Also use `install-collect2' to install collect2 when the config files don't.
2088
2089 # The semicolon is to prevent the install.sh -> install default rule
2090 # from doing anything.  Having it run true helps avoid problems and
2091 # noise from versions of make which don't like to have null commands.
2092 install: $(INSTALL_TARGET) ; @true
2093
2094 # Copy the compiler files into directories where they will be run.
2095 # Install the driver last so that the window when things are
2096 # broken is small.
2097 install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
2098     install-libobjc install-man install-info lang.install-normal install-driver
2099
2100 # Do nothing while making gcc with a cross-compiler. The person who
2101 # makes gcc for the target machine has to know how to put a complete
2102 # gcc together by hand.
2103 install-build: force
2104         @echo You have to install gcc on your target machine by hand.
2105
2106 # Run this on the target machine
2107 # to finish installation of cross compiler.
2108 install-cross-rest: install-float-h-cross
2109
2110 # Install float.h for cross compiler.
2111 # Run this on the target machine!
2112 install-float-h-cross: installdirs
2113 #       if [ -f enquire ] ; then true; else false; fi
2114 # Note: don't use -.  We should fail right away if enquire was not made.
2115         ./enquire -f > $(tmpdir)/float.h
2116         -rm -f $(libsubdir)/include/float.h
2117         $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
2118         -rm -f $(tmpdir)/float.h
2119         chmod a-x $(libsubdir)/include/float.h
2120
2121 # Create the installation directories.
2122 installdirs:
2123         -if [ -d $(prefix) ] ; then true ; else mkdir $(prefix) ; chmod a+rx $(prefix) ; fi
2124         -if [ -d $(exec_prefix) ] ; then true ; else mkdir $(exec_prefix) ; chmod a+rx $(exec_prefix) ; fi
2125         -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; chmod a+rx $(libdir) ; fi
2126         -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; chmod a+rx $(libdir)/gcc-lib ; fi
2127 # This dir isn't currently searched by cpp.
2128 #       -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; chmod a+rx $(libdir)/gcc-lib/include ; fi
2129         -if [ -d $(libdir)/gcc-lib/$(target_alias) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias) ; chmod a+rx $(libdir)/gcc-lib/$(target_alias) ; fi
2130         -if [ -d $(libdir)/gcc-lib/$(target_alias)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias)/$(version) ; chmod a+rx $(libdir)/gcc-lib/$(target_alias)/$(version) ; fi
2131         -if [ -d $(libdir)/gcc-lib/$(target_alias)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target_alias)/$(version)/include ; chmod a+rx $(libdir)/gcc-lib/$(target_alias)/$(version)/include ; fi
2132         -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; chmod a+rx $(bindir) ; fi
2133         -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; chmod a+rx $(includedir) ; fi
2134         -if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; chmod a+rx $(tooldir) ; fi
2135         -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; chmod a+rx $(assertdir) ; fi
2136         -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; chmod a+rx $(infodir) ; fi
2137 # We don't use mkdir -p to create the parents of mandir,
2138 # because some systems don't support it.
2139 # Instead, we use this technique to create the immediate parent of mandir.
2140         -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
2141         if [ -d $$parent ] ; then true ; else mkdir $$parent ; chmod a+rx $$parent ; fi
2142         -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; chmod a+rx $(mandir) ; fi
2143
2144 # Install the compiler executables built during cross compilation.
2145 install-common: native installdirs $(EXTRA_PARTS) lang.install-common
2146         for file in $(COMPILERS); do \
2147           if [ -f $$file ] ; then \
2148             rm -f $(libsubdir)/$$file; \
2149             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2150           else true; \
2151           fi; \
2152         done
2153         for file in $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
2154           if [ x"$$file" != x.. ]; then \
2155             rm -f $(libsubdir)/$$file; \
2156             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
2157           else true; fi; \
2158         done
2159         for file in $(EXTRA_PARTS) ..; do \
2160           if [ x"$$file" != x.. ]; then \
2161             rm -f $(libsubdir)/$$file; \
2162             $(INSTALL_DATA) $$file $(libsubdir)/$$file; \
2163           else true; fi; \
2164         done
2165 # Don't mess with specs if it doesn't exist yet.
2166         -if [ -f specs ] ; then \
2167           rm -f $(libsubdir)/specs; \
2168           $(INSTALL_DATA) specs $(libsubdir)/specs; \
2169         fi
2170 # Install protoize if it was compiled.
2171         -if [ -f protoize$(exeext) ]; \
2172         then \
2173             rm -f $(bindir)/protoize$(exeext); \
2174             $(INSTALL_PROGRAM) protoize$(exeext) $(bindir)/protoize$(exeext); \
2175             rm -f $(bindir)/unprotoize$(exeext); \
2176             $(INSTALL_PROGRAM) unprotoize$(exeext) $(bindir)/unprotoize$(exeext); \
2177             rm -f $(libsubdir)/SYSCALLS.c.X; \
2178             $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
2179             chmod a-x $(libsubdir)/SYSCALLS.c.X; \
2180         fi
2181         -rm -f $(libsubdir)/cpp$(exeext)
2182         $(INSTALL_PROGRAM) cpp$(exeext) $(libsubdir)/cpp$(exeext)
2183
2184 # Install the driver program as $(target_alias)-gcc
2185 # and also as either gcc (if native) or $(tooldir)/bin/gcc.
2186 install-driver: xgcc
2187         -if [ -f gcc-cross$(exeext) ] ; then \
2188           rm -f $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2189           $(INSTALL_PROGRAM) gcc-cross$(exeext) $(bindir)/$(GCC_CROSS_NAME)$(exeext); \
2190           if [ -d $(tooldir)/bin/. ] ; then \
2191             rm -f $(tooldir)/bin/gcc$(exeext); \
2192             $(INSTALL_PROGRAM) gcc-cross$(exeext) $(tooldir)/bin/gcc$(exeext); \
2193           else true; fi; \
2194         else \
2195           rm -f $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2196           $(INSTALL_PROGRAM) xgcc$(exeext) $(bindir)/$(GCC_INSTALL_NAME)$(exeext); \
2197           rm -f $(bindir)/$(target_alias)-gcc-1$(exeext); \
2198           ln $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext) \
2199             > /dev/null 2>&1 \
2200             || cp $(bindir)/$(GCC_INSTALL_NAME)$(exeext) $(bindir)/$(target_alias)-gcc-1$(exeext); \
2201           mv $(bindir)/$(target_alias)-gcc-1$(exeext) $(bindir)/$(target_alias)-gcc$(exeext); \
2202         fi
2203
2204 # Install the info files.
2205 install-info: doc installdirs lang.install-info
2206         -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
2207         cd $(srcdir); for f in cpp.info* gcc.info*; \
2208         do $(INSTALL_DATA) $$f $(infodir)/$$f; done
2209         -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
2210
2211 # Install the man pages.
2212 install-man: installdirs $(srcdir)/gcc.1 $(srcdir)/cccp.1 lang.install-man
2213         -if [ -f gcc-cross ] ; then \
2214           rm -f $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2215           $(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2216           chmod a-x $(mandir)/$(GCC_CROSS_NAME)$(manext); \
2217         else \
2218           rm -f $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2219           $(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2220           chmod a-x $(mandir)/$(GCC_INSTALL_NAME)$(manext); \
2221         fi
2222         -rm -f $(mandir)/cccp$(manext)
2223         -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
2224         -chmod a-x $(mandir)/cccp$(manext)
2225
2226 # Install the library.
2227 install-libgcc: libgcc.a installdirs
2228         -if [ -f libgcc.a ] ; then \
2229           rm -f $(libsubdir)/libgcc.a; \
2230           $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
2231           if $(RANLIB_TEST) ; then \
2232             (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
2233           chmod a-x $(libsubdir)/libgcc.a; \
2234         else true; fi
2235
2236 # Install multiple versions of libgcc.a.
2237 install-multilib: stmp-multilib installdirs
2238         for i in `$(GCC_FOR_TARGET) --print-multi-lib`; do \
2239           dir=`echo $$i | sed -e 's/;.*$$//'`; \
2240           if [ -d $(libsubdir)/$${dir} ]; then true; else mkdir $(libsubdir)/$${dir}; fi; \
2241           rm -f $(libsubdir)/$${dir}/libgcc.a; \
2242           $(INSTALL_DATA) $${dir}/libgcc.a $(libsubdir)/$${dir}/libgcc.a; \
2243           if $(RANLIB_TEST); then \
2244             (cd $(libsubdir)/$${dir}; $(RANLIB) libgcc.a); else true; fi; \
2245           chmod a-x $(libsubdir)/$${dir}/libgcc.a; \
2246         done
2247
2248 # Install the objc run time library.
2249 install-libobjc: installdirs
2250         -if [ -f libobjc.a ] ; then \
2251           rm -f $(libsubdir)/libobjc.a; \
2252           $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
2253           if $(RANLIB_TEST) ; then \
2254             (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
2255           chmod a-x $(libsubdir)/libobjc.a; \
2256         else true; fi
2257
2258 # Install all the header files built in the include subdirectory.
2259 install-headers: install-include-dir $(INSTALL_HEADERS_DIR) $(INSTALL_ASSERT_H)
2260 # Fix symlinks to absolute paths in the installed include directory to
2261 # point to the installed directory, not the build directory.
2262         -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
2263         if [ $$? -eq 0 ]; then \
2264           dir=`cd include; pwd`; \
2265           for i in $$files; do \
2266             dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
2267             if expr "$$dest" : "$$dir.*" > /dev/null; then \
2268               rm -f $(libsubdir)/include/$$i; \
2269               ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
2270             fi; \
2271           done; \
2272         fi
2273
2274 # Create or recreate the gcc private include file directory.
2275 install-include-dir: installdirs
2276         -rm -rf $(libsubdir)/include
2277         mkdir $(libsubdir)/include
2278         -chmod a+rx $(libsubdir)/include
2279
2280 # Install the include directory using tar.
2281 install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
2282         (cd include; \
2283          tar -cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - )
2284 # /bin/sh on some systems returns the status of the first tar,
2285 # and that can lose with GNU tar which always writes a full block.
2286 # So use `exit 0' to ignore its exit status.
2287
2288 # Install the include directory using cpio.
2289 install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
2290         (cd include; find . -print) | (cd include; cpio -pdum $(libsubdir)/include)
2291
2292 # Put assert.h where it won't override GNU libc's assert.h.
2293 # It goes in a dir that is searched after GNU libc's headers;
2294 # thus, the following conditionals are no longer needed.
2295 # But it's not worth deleting them now.
2296 ## Don't replace the assert.h already there if it is not from GCC.
2297 ## This code would be simpler if it tested for -f ... && ! grep ...
2298 ## but supposedly the ! operator is missing in sh on some systems.
2299 install-assert-h: assert.h installdirs
2300         if [ -f $(assertdir)/assert.h ]; \
2301         then \
2302           if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
2303             then \
2304             rm -f $(assertdir)/assert.h; \
2305             $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
2306             chmod a-x $(assertdir)/assert.h; \
2307           else true; \
2308           fi; \
2309         else \
2310           rm -f $(assertdir)/assert.h; \
2311           $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
2312           chmod a-x $(assertdir)/assert.h; \
2313         fi
2314
2315 # Use this target to install the program `collect2' under the name `ld'.
2316 install-collect2: collect2 installdirs
2317         $(INSTALL_PROGRAM) collect2$(exeext) $(libsubdir)/ld$(exeext)
2318 # Install the driver program as $(libsubdir)/gcc for collect2.
2319         $(INSTALL_PROGRAM) xgcc$(exeext) $(libsubdir)/gcc$(exeext)
2320
2321 # Cancel installation by deleting the installed files.
2322 uninstall: lang.uninstall
2323         -rm -rf $(libsubdir)
2324         -rm -rf $(bindir)/$(GCC_INSTALL_NAME)$(exeext)
2325         -rm -rf $(bindir)/$(GCC_CROSS_NAME)$(exeext)
2326         -rm -rf $(bindir)/protoize$(exeext)
2327         -rm -rf $(bindir)/unprotoize$(exeext)
2328         -rm -rf $(mandir)/$(GCC_INSTALL_NAME)$(manext)
2329         -rm -rf $(mandir)/$(GCC_CROSS_NAME)$(manext)
2330         -rm -rf $(mandir)/cccp$(manext)
2331         -rm -rf $(mandir)/protoize$(manext)
2332         -rm -rf $(mandir)/unprotoize$(manext)
2333 \f
2334 # These exist for maintenance purposes.
2335
2336 # Update the tags table.
2337 TAGS: force
2338         cd $(srcdir);                                                   \
2339         mkdir temp;                                                     \
2340         mv -f c-parse.[ch] objc-parse.c cexp.c =*.[chy] temp;           \
2341         etags *.y *.h *.c;                                              \
2342         mv temp/* .;                                                    \
2343         rmdir temp
2344
2345 # Create the distribution tar file.
2346 #dist: gcc-$(version).tar.gz
2347 dist: gcc.xtar.gz
2348
2349 gcc.xtar.gz: gcc.xtar
2350         gzip --best < gcc.xtar > tmp-gcc.xtar.gz
2351         mv tmp-gcc.xtar.gz gcc.xtar.gz
2352
2353 #gcc-$(version).tar.gz: gcc-$(version).tar
2354 #       gzip < gcc-$(version).tar > gcc-$(version).tar.gz
2355
2356 #gcc-$(version).tar:
2357 gcc.xtar: distdir
2358 # Make the distribution.
2359         tar -chf gcc.xtar gcc-$(version)
2360
2361 # This target exists to do the initial work before the language specific
2362 # stuff gets done.
2363 distdir-start: doc $(srcdir)/INSTALL $(srcdir)/c-parse.y $(srcdir)/c-gperf.h \
2364   $(srcdir)/objc-parse.y $(srcdir)/c-parse.c $(srcdir)/objc-parse.c \
2365   $(srcdir)/cexp.c
2366         @if grep -s "for version ${mainversion}" gcc.texi > /dev/null; \
2367         then true; \
2368         else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
2369         fi
2370 # Update the version number in README
2371         awk '$$1 " " $$2 " " $$3 == "This directory contains" \
2372                 { $$6 = version; print $$0 } \
2373              $$1 " " $$2 " " $$3 != "This directory contains"' \
2374           version=$(version) README > tmp.README
2375         mv tmp.README README
2376         -rm -rf gcc-$(version) tmp      
2377 # Put all the files in a temporary subdirectory
2378 # which has the name that we want to have in the tar file.
2379         mkdir tmp
2380         mkdir tmp/config
2381         mkdir tmp/ginclude
2382         mkdir tmp/objc
2383         for file in *[0-9a-zA-Z+]; do \
2384           ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
2385         done
2386         cd config; \
2387         for file in *[0-9a-zA-Z+]; do \
2388           if test -d $$file && test "$$file" != RCS; then \
2389             mkdir ../tmp/config/$$file; \
2390             cd $$file; \
2391             for subfile in *[0-9a-zA-Z+]; do \
2392               ln $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
2393               || cp $$subfile ../../tmp/config/$$file; \
2394             done; \
2395             cd ..; \
2396           else \
2397             ln $$file ../tmp/config >/dev/null 2>&1 \
2398             || cp $$file ../tmp/config; \
2399           fi; \
2400         done
2401         cd ginclude; \
2402         for file in *[0-9a-zA-Z+]; do \
2403           ln $$file ../tmp/ginclude >/dev/null 2>&1 \
2404            || cp $$file ../tmp/ginclude; \
2405         done
2406         cd objc; \
2407         for file in *[0-9a-zA-Z+]; do \
2408           ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
2409         done
2410         ln .gdbinit tmp
2411
2412 # Finish making `distdir', after the languages have done their thing.
2413 distdir-finish:
2414         mv tmp gcc-$(version)
2415 # Get rid of everything we don't want in the distribution.  We'd want
2416 # this to use Makefile.in, but it doesn't have the `lang.foo' targets
2417 # expanded.
2418         cd gcc-$(version); make extraclean
2419
2420 distdir: distdir-start lang.distdir distdir-finish
2421
2422 # make diff oldversion=M.N 
2423 # creates a diff file between an older distribution and this one.
2424 # The -P option assumes this is GNU diff.
2425 diff:
2426         diff -rc2P -x c-parse.y -x c-parse.c -x c-parse.h -x c-gperf.h \
2427           -x cexp.c -x bi-parser.c -x objc-parse.y -x objc-parse.c \
2428           -x TAGS \
2429           -x "gcc.??" -x "gcc.??s" -x gcc.aux -x "gcc.info*" \
2430           -x "cpp.??" -x "cpp.??s" -x cpp.aux -x "cpp.info*" \
2431           $(LANG_DIFF_EXCLUDES) \
2432           gcc-$(oldversion) gcc-$(version) > diffs
2433
2434 bootstrap: force
2435 # Only build the C compiler for stage1, because that is the only one that
2436 # we can guarantee will build with the native compiler, and also it is the
2437 # only thing useful for building stage2.
2438         $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES="$(BOOT_LANGUAGES)"
2439         $(MAKE) stage1
2440 # This used to define ALLOCA as empty, but that would lead to bad results
2441 # for a subsequent `make install' since that would not have ALLOCA empty.
2442 # To prevent `make install' from compiling alloca.o and then relinking cc1
2443 # because alloca.o is newer, we permit these recursive makes to compile
2444 # alloca.o.  Then cc1 is newer, so it won't have to be relinked.
2445         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
2446         $(MAKE) stage2
2447         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2448
2449 bootstrap2: force
2450         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage1/ LANGUAGES="$(LANGUAGES)"
2451         $(MAKE) stage2
2452         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2453
2454 bootstrap3: force
2455         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) STAGE_PREFIX=stage2/ LANGUAGES="$(LANGUAGES)"
2456
2457 # Compare the object files in the current directory with those in the
2458 # stage2 directory.
2459
2460 # ./ avoids bug in some versions of tail.
2461 compare: force
2462         for file in *$(objext); do \
2463           tail +16c ./$$file > tmp-foo1; \
2464           tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
2465             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \
2466         done
2467         for dir in tmp-foo $(SUBDIRS); do \
2468           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2469             for file in $$dir/*$(objext); do \
2470               tail +16c ./$$file > tmp-foo1; \
2471               tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
2472                 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \
2473             done; \
2474           fi; \
2475         done
2476         -rm -f tmp-foo*
2477
2478 # Similar, but compare with stage3 directory
2479 compare3: force
2480         for file in *$(objext); do \
2481           tail +16c ./$$file > tmp-foo1; \
2482           tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
2483             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \
2484         done
2485         for dir in tmp-foo $(SUBDIRS); do \
2486           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2487             for file in $$dir/*$(objext); do \
2488               tail +16c ./$$file > tmp-foo1; \
2489               tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
2490                 && (cmp tmp-foo1 tmp-foo2 || echo $$file differs) || true; \
2491             done; \
2492           fi; \
2493         done
2494         -rm -f tmp-foo*
2495
2496 # Compare the object files in the current directory with those in the
2497 # stage2 directory.  Use gnu cmp (diffutils v2.4 or later) to avoid
2498 # running tail and the overhead of twice copying each object file.
2499
2500 gnucompare: force
2501         for file in *$(objext); do \
2502           cmp --ignore-initial=16 $$file stage2/$$file || true ; \
2503         done
2504         for dir in tmp-foo $(SUBDIRS); do \
2505           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2506             for file in $$dir/*$(objext); do \
2507               cmp --ignore-initial=16 $$file stage2/$$file || true ; \
2508             done; \
2509           fi; \
2510         done
2511
2512 # Similar, but compare with stage3 directory
2513 gnucompare3: force
2514         for file in *$(objext); do \
2515           cmp --ignore-initial=16 $$file stage3/$$file || true ; \
2516         done
2517         for dir in tmp-foo $(SUBDIRS); do \
2518           if [ "`echo $$dir/*$(objext)`" != "$$dir/*$(objext)" ] ; then \
2519             for file in $$dir/*$(objext); do \
2520               cmp --ignore-initial=16 $$file stage3/$$file || true ; \
2521             done; \
2522           fi; \
2523         done
2524
2525 # Copy the object files from a particular stage into a subdirectory.
2526 stage1-start:
2527         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
2528         -for dir in . $(SUBDIRS) ; \
2529          do \
2530            if [ -d stage1/$$dir ] ; then true ; else mkdir stage1/$$dir ; fi ; \
2531          done
2532         -mv $(STAGESTUFF) stage1
2533 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2534 # dir will work properly.
2535         -if [ -f as$(exeext) ] ; then ln -s ../as$(exeext) stage1 || cp as$(exeext) stage1 ; else true ; fi
2536         -if [ -f ld$(exeext) ] ; then ln -s ../ld$(exeext) stage1 || cp ld$(exeext) stage1 ; else true ; fi
2537         -if [ -f collect-ld$(exeext) ] ; then ln -s ../collect-ld$(exeext) stage1 || cp collect-ld$(exeext) stage1 ; else true ; fi
2538         -rm -f stage1/libgcc.a
2539         -cp libgcc.a stage1
2540         -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
2541 stage1: force stage1-start lang.stage1
2542
2543 stage2-start:
2544         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
2545         -for dir in . $(SUBDIRS) ; \
2546          do \
2547            if [ -d stage2/$$dir ] ; then true ; else mkdir stage2/$$dir ; fi ; \
2548          done
2549         -mv $(STAGESTUFF) stage2
2550 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2551 # dir will work properly.
2552         -if [ -f as$(exeext) ] ; then ln -s ../as$(exeext) stage2 || cp as$(exeext) stage2 ; else true ; fi
2553         -if [ -f ld$(exeext) ] ; then ln -s ../ld$(exeext) stage2 || cp ld$(exeext) stage2 ; else true ; fi
2554         -if [ -f collect-ld ] ; then ln -s ../collect-ld$(exeext) stage2 || cp collect-ld$(exeext) stage2 ; else true ; fi
2555         -rm -f stage2/libgcc.a
2556         -cp libgcc.a stage2
2557         -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
2558 stage2: force stage2-start lang.stage2
2559
2560 stage3-start:
2561         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
2562         -for dir in . $(SUBDIRS) ; \
2563          do \
2564            if [ -d stage3/$$dir ] ; then true ; else mkdir stage3/$$dir ; fi ; \
2565          done
2566         -mv $(STAGESTUFF) stage3
2567 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2568 # dir will work properly.
2569         -if [ -f as$(exeext) ] ; then ln -s ../as$(exeext) stage3 || cp as$(exeext) stage3 ; else true ; fi
2570         -if [ -f ld$(exeext) ] ; then ln -s ../ld$(exeext) stage3 || cp ld$(exeext) stage3 ; else true ; fi
2571         -if [ -f collect-ld$(exeext) ] ; then ln -s ../collect-ld$(exeext) stage3 || cp collect-ld$(exeext) stage3 ; else true ; fi
2572         -rm -f stage3/libgcc.a
2573         -cp libgcc.a stage3
2574         -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
2575 stage3: force stage3-start lang.stage3
2576
2577 stage4-start:
2578         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
2579         -for dir in . $(SUBDIRS) ; \
2580          do \
2581            if [ -d stage4/$$dir ] ; then true ; else mkdir stage4/$$dir ; fi ; \
2582          done
2583         -mv $(STAGESTUFF) stage4
2584 # Copy as/ld if they exist to stage dir, so that running xgcc from the stage
2585 # dir will work properly.
2586         -if [ -f as$(exeext) ] ; then ln -s ../as$(exeext) stage4 || cp as$(exeext) stage4 ; else true ; fi
2587         -if [ -f ld$(exeext) ] ; then ln -s ../ld$(exeext) stage4 || cp ld$(exeext) stage4 ; else true ; fi
2588         -if [ -f collect-ld$(exeext) ] ; then ln -s ../collect-ld$(exeext) stage4 || cp collect-ld$(exeext) stage4 ; else true ; fi
2589         -rm -f stage4/libgcc.a
2590         -cp libgcc.a stage4
2591         -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
2592 stage4: force stage4-start lang.stage4
2593
2594 # Copy just the executable files from a particular stage into a subdirectory,
2595 # and delete the object files.  Use this if you're just verifying a version
2596 # that is pretty sure to work, and you are short of disk space.
2597 risky-stage1: stage1
2598         - make clean
2599
2600 risky-stage2: stage2
2601         -make clean
2602
2603 risky-stage3: stage3
2604         -make clean
2605
2606 risky-stage4: stage4
2607         -make clean
2608
2609 #In GNU Make, ignore whether `stage*' exists.
2610 .PHONY: stage1 stage2 stage3 stage4 clean maintainer-clean TAGS bootstrap
2611 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2612
2613 force: