OSDN Git Service

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