OSDN Git Service

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