OSDN Git Service

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