OSDN Git Service

(USER_H): Add va-h8300.h.
[pf3gnuchains/gcc-fork.git] / gcc / Makefile.in
1 # Makefile for GNU C compiler.
2 #   Copyright (C) 1987, 88, 90, 91, 92, 1993 Free Software Foundation, Inc.
3
4 #This file is part of GNU CC.
5
6 #GNU CC is free software; you can redistribute it and/or modify
7 #it under the terms of the GNU General Public License as published by
8 #the Free Software Foundation; either version 2, or (at your option)
9 #any later version.
10
11 #GNU CC is distributed in the hope that it will be useful,
12 #but WITHOUT ANY WARRANTY; without even the implied warranty of
13 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 #GNU General Public License for more details.
15
16 #You should have received a copy of the GNU General Public License
17 #along with GNU CC; see the file COPYING.  If not, write to
18 #the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
19
20 # The targets for external use include:
21 # all, doc, proto, install, install-cross, install-cross-rest,
22 # uninstall, TAGS, mostlyclean, clean, distclean, realclean,
23 # stage1, stage2, stage3, stage4.
24
25 # Suppress smart makes who think they know how to automake Yacc files
26 .y.c:
27
28 # Variables that exist for you to override.
29 # See below for how to change them for certain systems.
30
31 # Selection of languages to be made.
32 LANGUAGES = c c++ objective-c proto
33
34 ALLOCA =
35 ALLOCA_FLAGS =
36 ALLOCA_FINISH = true
37
38 # Various ways of specifying flags for compilations:  
39 # CFLAGS is for the user to override to, e.g., do a bootstrap with -O2.
40 # BOOT_CFLAGS is the value of CFLAGS to pass
41 # to the stage2 and stage3 compilations
42 # XCFLAGS is used for most compilations but not when using the GCC just built.
43 XCFLAGS =
44 CFLAGS = -g
45 BOOT_CFLAGS = -O $(CFLAGS)
46 # These exists to be overridden by the x-* and t-* files, respectively.
47 X_CFLAGS =
48 T_CFLAGS =
49
50 X_CPPFLAGS =
51 T_CPPFLAGS =
52
53 CC = cc
54 BISON = bison
55 BISONFLAGS =
56 AR = ar
57 OLDAR_FLAGS = qc
58 AR_FLAGS = rc
59 SHELL = /bin/sh
60 # on sysV, define this as cp.
61 INSTALL = install -c
62 # These permit overriding just for certain files.
63 INSTALL_PROGRAM = $(INSTALL)
64 INSTALL_DATA = $(INSTALL)
65 SYMLINK = ln -s
66 MAKEINFO = makeinfo
67 TEXI2DVI = texi2dvi
68
69 # Define this as & to perform parallel make on a Sequent.
70 # Note that this has some bugs, and it seems currently necessary 
71 # to compile all the gen* files first by hand to avoid erroneous results.
72 P =
73
74 # How to invoke ranlib.
75 RANLIB = ranlib
76 # Test to use to see whether ranlib exists on the system.
77 RANLIB_TEST = [ -f /usr/bin/ranlib -o -f /bin/ranlib ]
78
79 # Compiler to use for compiling libgcc1.a.
80 # OLDCC should not be the GNU C compiler,
81 # since that would compile typical libgcc1.a functions such as mulsi3
82 # into infinite recursions.
83 OLDCC = cc
84
85 # CFLAGS for use with OLDCC, for compiling libgcc1.a.
86 # NOTE: -O does not work on some Unix systems!
87 CCLIBFLAGS = -O
88
89 # Version of ar to use when compiling libgcc1.a.
90 OLDAR = ar
91
92 # Target to use when installing include directory.  Either
93 # install-headers-tar or install-headers-cpio.
94 INSTALL_HEADERS_DIR = install-headers-tar
95
96 # The GCC to use for compiling libgcc2.a, enquire, and cross-test.
97 # Usually the one we just built.
98 # Don't use this as a dependency--use $(GCC_PASSES) or $(GCC_PARTS).
99 GCC_FOR_TARGET = ./xgcc -B./
100
101 # This is used instead of ALL_CFLAGS when compiling with GCC_FOR_TARGET.
102 # It omits XCFLAGS, and specifies -B./.
103 # It also specifies -B$(tooldir)/ to find as and ld for a cross compiler.
104 GCC_CFLAGS=$(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS)
105
106 # Special flags for compiling enquire.
107 # We disable optimization to make floating point more reliable.
108 ENQUIRE_CFLAGS = -DNO_MEM -DNO_STDDEF -DNO_LONG_DOUBLE_IO -O0
109 ENQUIRE_LDFLAGS = $(LDFLAGS)
110
111 # Tools to use when building a cross-compiler.
112 # These are used because `configure' appends `cross-make'
113 # to the makefile when making a cross-compiler.
114
115 TARGET_TOOLPREFIX = $(tooldir)/bin/
116 AR_FOR_TARGET = $(TARGET_TOOLPREFIX)ar
117 AR_FOR_TARGET_FLAGS = rc
118 RANLIB_FOR_TARGET = $(TARGET_TOOLPREFIX)ranlib
119 RANLIB_TEST_FOR_TARGET = [ -f $(TARGET_TOOLPREFIX)ranlib ]
120
121 # Dir to search for system headers.  Overridden by cross-make.
122 SYSTEM_HEADER_DIR = /usr/include
123
124 # Uncomment following line for fixproto support.  (May become the default!)
125 # STMP_FIXPROTO = stmp-fixproto
126
127 # There may be a premade insn-attrtab.c for this machine.
128 # (You could rebuild it with genattrtab as usual, but it takes a long time.)
129 # PREMADE_ATTRTAB is the file name of the file to use.
130 # PREMADE_ATTRTAB_MD is the md file it corresponds to.
131 PREMADE_ATTRTAB_MD = Makefile  # Guaranteed not to cmp equal to md.
132 PREMADE_ATTRTAB = 
133
134 target= ... `configure' substitutes actual target name here.
135 xmake_file= ... `configure' substitutes actual x- file name here.
136 tmake_file= ... `configure' substitutes actual t- file name here.
137 version=`sed -e 's/.*\"\([^ \"]*\)[ \"].*/\1/' < $(srcdir)/version.c`
138
139 # Directory where sources are, from where we are.
140 srcdir = .
141 # Common prefix for installation directories.
142 # NOTE: This directory must exist when you start installation.
143 prefix = /usr/local
144 # Directory in which to put localized header files. On the systems with
145 # gcc as the native cc, `local_prefix' may not be `prefix' which is
146 # `/usr'.
147 # NOTE: local_prefix *should not* default from prefix.
148 local_prefix = /usr/local
149 # Directory in which to put host dependent programs and libraries
150 exec_prefix = $(prefix)
151 # Directory in which to put the executable for the command `gcc'
152 bindir = $(exec_prefix)/bin
153 # Directory in which to put the directories used by the compiler.
154 libdir = $(exec_prefix)/lib
155 # Directory in which the compiler finds executables, libraries, etc.
156 libsubdir = $(libdir)/gcc-lib/$(target)/$(version)
157 # Directory to search for site-specific includes.
158 includedir = $(local_prefix)/include
159 # assertdir is overridden in cross-make.
160 # (But this currently agrees with what is in cross-make.)
161 assertdir = $(tooldir)/include
162 # where the info files go
163 infodir = $(prefix)/info
164 # Extension (if any) to put in installed man-page filename.
165 manext = .1
166 # Directory in which to put man pages.
167 mandir = $(prefix)/man/man1
168 # Directory in which to find other cross-compilation tools and headers.
169 # Used in install-cross.
170 tooldir = $(exec_prefix)/$(target)
171 # Dir for temp files.
172 tmpdir = /tmp
173
174 # Additional system libraries to link with.
175 CLIB=
176
177 # Change this to a null string if obstacks are installed in the
178 # system library.
179 OBSTACK=obstack.o
180
181 # Specify the rule for actually making libgcc.a,
182 LIBGCC = libgcc.a
183 # and the rule for installing it.
184 INSTALL_LIBGCC = install-libgcc
185
186 # Specify the rule for actually making libgcc1.a.
187 # The value may be empty; that means to do absolutely nothing
188 # with or for libgcc1.a.
189 LIBGCC1 = libgcc1.a
190
191 # Specify the rule for actually making libgcc2.a.
192 LIBGCC2 = libgcc2.a
193
194 # Options to use when compiling libgcc2.a.
195 # -g1 causes output of debug info only for file-scope entities.
196 # we use this here because that should be enough, and also
197 # so that -g1 will be tested.
198 LIBGCC2_CFLAGS = -O2 $(LIBGCC2_INCLUDES) $(GCC_CFLAGS) -g1
199
200 # Additional options to use when compiling libgcc2.a.
201 # Some targets override this to -Iinclude
202 LIBGCC2_INCLUDES =
203
204 # Things which must be built before building libgcc2.a.
205 # Some targets override this to stmp-int-hdrs
206 LIBGCC2_DEPS =
207
208 # List of extra executables that should be compiled for this target machine
209 # that are used for compiling from source code to object code.
210 # The rules for compiling them should be in the t-* file for the machine.
211 EXTRA_PASSES =
212
213 # Like EXTRA_PASSES, but these are used when linking.
214 EXTRA_PROGRAMS = 
215
216 # List of extra object files that should be compiled for this target machine.
217 # The rules for compiling them should be in the t-* file for the machine.
218 EXTRA_PARTS =
219
220 # List of extra object files that should be compiled and linked with
221 # compiler proper (cc1, cc1obj, cc1plus).
222 EXTRA_OBJS =
223
224 # List of additional header files to install.
225 # Often this is edited directly by `configure'.
226 EXTRA_HEADERS =
227
228 # Set this to `ld' to enable use of collect2.
229 # USE_COLLECT2 =
230 # It is convenient for configure to add the assignment at the beginning,
231 # so don't override it here.
232
233 # List of extra C and assembler files to add to libgcc1.a.
234 # Assembler files should have names ending in `.asm'.
235 LIB1FUNCS_EXTRA = 
236
237 # List of extra C and assembler files to add to libgcc2.a.
238 # Assembler files should have names ending in `.asm'.
239 LIB2FUNCS_EXTRA = 
240
241 # Default float.h source to use for cross-compiler.
242 CROSS_FLOAT_H=float.h-cross
243
244 # Program to convert libraries.
245 LIBCONVERT = 
246
247 # Control whether header files are installed.
248 INSTALL_HEADERS=install-headers
249
250 # Options for tar when copying trees.  So HPUX can override it.
251 TAROUTOPTS = xpBf
252
253 # Select which version of fixincludes to use (I.E. regular versus SVR4)
254 # This value is overridden directly by configure.
255 FIXINCLUDES=fixincludes
256
257 # Additional directories of header files to run fixincludes on.
258 # These should be directories searched automatically by default
259 # just as /usr/include is.
260 # *Do not* use this for directories that happen to contain 
261 # header files, but are not searched automatically by default.
262 # On most systems, this is empty.
263 OTHER_FIXINCLUDES_DIRS=
264
265 # List of things which should already be built whenever we try to use xgcc
266 # to compile anything (without linking).
267 GCC_PASSES=xgcc cc1 cpp $(EXTRA_PASSES)
268
269 # List of things which should already be built whenever we try to use xgcc
270 # to link anything.
271 GCC_PARTS=$(GCC_PASSES) $(LIBGCC) $(EXTRA_PROGRAMS) $(USE_COLLECT2) $(EXTRA_PARTS)
272
273 # Directory to link to, when using the target `maketest'.
274 DIR = ../gcc
275
276 # Flags to use when cross-building GCC.
277 # Prefix to apply to names of object files when using them
278 # to run on the machine we are compiling on.
279 HOST_PREFIX=
280 # Prefix to apply to names of object files when compiling them
281 # to run on the machine we are compiling on.
282 # The default for this variable is chosen to keep these rules 
283 # out of the way of the other rules for compiling the same source files.
284 HOST_PREFIX_1=loser-
285 HOST_CC=$(CC)
286 HOST_CFLAGS=$(ALL_CFLAGS)
287 HOST_CLIB=$(CLIB)
288 HOST_LDFLAGS=$(LDFLAGS)
289 HOST_CPPFLAGS=$(ALL_CPPFLAGS)
290 HOST_ALLOCA=$(ALLOCA)
291 HOST_MALLOC=$(MALLOC)
292 HOST_OBSTACK=$(OBSTACK)
293
294 # Choose the real default target.
295 ALL=all.internal
296
297 # Choose the real install target.
298 INSTALL_TARGET=install-normal
299
300 # Source for float.h.  Overridden by cross-make.
301 FLOAT_H=float.h-nat
302
303 # End of variables for you to override.
304
305 # Definition of `all' is here so that new rules inserted by sed
306 # do not specify the default target.
307 # The real definition is under `all.internal' (for native compilers)
308 # or `all.cross' (for cross compilers).
309 all: all.indirect
310
311 # This tells GNU Make version 3 not to put all variables in the environment.
312 .NOEXPORT:
313
314 # sed inserts variable overrides after the following line.
315 ####target overrides
316 ####host overrides
317 ####cross overrides
318 ####build overrides
319 \f
320 # Now figure out from those variables how to compile and link.
321
322 all.indirect: $(ALL)
323
324 # IN_GCC tells obstack.h to use gstddef.h.
325 INTERNAL_CFLAGS = $(CROSS) -DIN_GCC
326
327 # This is the variable actually used when we compile.
328 ALL_CFLAGS = $(INTERNAL_CFLAGS) $(X_CFLAGS) $(T_CFLAGS) $(CFLAGS) $(XCFLAGS)
329
330 # Likewise.
331 ALL_CPPFLAGS = $(CPPFLAGS) $(X_CPPFLAGS) $(T_CPPFLAGS)
332
333 # Even if ALLOCA is set, don't use it if compiling with GCC.
334 USE_ALLOCA= ` case "${CC}" in "${OLDCC}") echo ${ALLOCA} ;; esac `
335 USE_HOST_ALLOCA= ` case "${HOST_CC}"@"${HOST_ALLOCA}" in "${OLDCC}"@?*) echo ${HOST_PREFIX}${HOST_ALLOCA} ;; esac `
336 USE_HOST_MALLOC= ` case "${HOST_MALLOC}" in ?*) echo ${HOST_PREFIX}${HOST_MALLOC} ;; esac `
337 USE_HOST_OBSTACK= ` case "${HOST_OBSTACK}" in ?*) echo ${HOST_PREFIX}${HOST_OBSTACK} ;; esac `
338
339 # Dependency on obstack, alloca, malloc or whatever library facilities
340 # are not installed in the system libraries.
341 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
342 LIBDEPS= $(OBSTACK) $(ALLOCA) $(MALLOC)
343
344 # Likewise, for use in the tools that must run on this machine
345 # even if we are cross-building GCC.
346 # We don't use USE_ALLOCA because backquote expansion doesn't work in deps.
347 HOST_LIBDEPS= $(HOST_PREFIX)$(HOST_OBSTACK) $(HOST_PREFIX)$(HOST_ALLOCA) $(HOST_PREFIX)$(HOST_MALLOC)
348
349 # How to link with both our special library facilities
350 # and the system's installed libraries.
351 LIBS = $(OBSTACK) $(USE_ALLOCA) $(MALLOC) $(CLIB)
352
353 # Likewise, for use in the tools that must run on this machine
354 # even if we are cross-building GCC.
355 HOST_LIBS = $(USE_HOST_OBSTACK) $(USE_HOST_ALLOCA) $(USE_HOST_MALLOC)  \
356             $(HOST_CLIB)
357
358 HOST_RTL = $(HOST_PREFIX)rtl.o
359 HOST_RTLANAL = $(HOST_PREFIX)rtlanal.o
360 HOST_PRINT = $(HOST_PREFIX)print-rtl.o
361
362 # Specify the directories to be searched for header files.
363 # Both . and srcdir are used, in that order,
364 # so that tm.h and config.h will be found in the compilation
365 # subdirectory rather than in the source directory.
366 INCLUDES = -I. -I$(srcdir) -I$(srcdir)/config
367 SUBDIR_INCLUDES = -I.. -I../$(srcdir) -I../$(srcdir)/config
368
369 # Always use -I$(srcdir)/config when compiling.
370 .c.o:
371         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $<
372
373 # This tells GNU make version 3 not to export all the variables
374 # defined in this file into the environment.
375 .NOEXPORT:
376 \f
377 # Lists of files for various purposes.
378
379 # A list of all the language-specific executables.
380 COMPILERS = cc1 cc1plus cc1obj
381
382 # Language-specific object files for C.
383 C_OBJS = c-parse.o c-lang.o c-lex.o c-pragma.o \
384    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
385
386 # Language-specific object files for Objective C.
387 OBJC_OBJS = objc-parse.o objc-act.o c-lex.o c-pragma.o \
388    c-decl.o c-typeck.o c-convert.o c-aux-info.o c-common.o c-iterate.o
389
390 # Language-specific object files for C++.
391 CPLUS_OBJS = cp-parse.o cp-decl.o cp-decl2.o \
392    cp-typeck.o cp-type2.o cp-tree.o cp-ptree.o \
393    cp-cvt.o cp-search.o cp-lex.o cp-gc.o cp-call.o \
394    cp-class.o cp-init.o cp-method.o cp-except.o \
395    cp-expr.o cp-pt.o cp-edsel.o cp-xref.o \
396    $(CPLUS_INPUT) cp-spew.o c-common.o
397
398 # Language-independent object files.
399 OBJS = toplev.o version.o tree.o print-tree.o stor-layout.o fold-const.o \
400  function.o stmt.o expr.o calls.o expmed.o explow.o optabs.o varasm.o \
401  rtl.o print-rtl.o rtlanal.o emit-rtl.o real.o \
402  dbxout.o sdbout.o dwarfout.o xcoffout.o \
403  integrate.o jump.o cse.o loop.o unroll.o flow.o stupid.o combine.o \
404  regclass.o local-alloc.o global.o reload.o reload1.o caller-save.o \
405  insn-peep.o reorg.o sched.o final.o recog.o reg-stack.o \
406  insn-opinit.o insn-recog.o insn-extract.o insn-output.o insn-emit.o \
407  insn-attrtab.o aux-output.o getpwd.o convert.o $(EXTRA_OBJS)
408
409 # GEN files are listed separately, so they can be built before doing parallel
410 #  makes for cc1 or cc1plus.  Otherwise sequent parallel make attempts to load
411 #  them before rtl.o is compiled.
412 GEN= genemit genoutput genrecog genextract genflags gencodes genconfig genpeep
413
414 # Files to be copied away after each stage in building.
415 STAGESTUFF = *.o insn-flags.h insn-config.h insn-codes.h \
416  insn-output.c insn-recog.c insn-emit.c insn-extract.c insn-peep.c \
417  insn-attr.h insn-attrtab.c insn-opinit.c \
418  stamp-flags stamp-config stamp-codes \
419  stamp-output stamp-recog stamp-emit stamp-extract stamp-peep \
420  stamp-attr stamp-attrtab stamp-opinit stamp-proto \
421  genemit genoutput genrecog genextract genflags gencodes genconfig genpeep \
422  genattrtab genattr genopinit \
423  $(GCC_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) gcc-cross cccp g++ g++-cross \
424  cc1plus cc1obj enquire protoize unprotoize specs collect2 $(USE_COLLECT2)
425
426 # Members of libgcc1.a.
427 LIB1FUNCS = _mulsi3 _udivsi3 _divsi3 _umodsi3 _modsi3 \
428    _lshrsi3 _lshlsi3 _ashrsi3 _ashlsi3 \
429    _divdf3 _muldf3 _negdf2 _adddf3 _subdf3 \
430    _fixdfsi _fixsfsi _floatsidf _floatsisf _truncdfsf2 _extendsfdf2 \
431    _addsf3 _negsf2 _subsf3 _mulsf3 _divsf3 \
432    _eqdf2 _nedf2 _gtdf2 _gedf2 _ltdf2 _ledf2 \
433    _eqsf2 _nesf2 _gtsf2 _gesf2 _ltsf2 _lesf2
434
435 # Library members defined in libgcc2.c.
436 LIB2FUNCS = _muldi3 _divdi3 _moddi3 _udivdi3 _umoddi3 _negdi2 \
437      _lshrdi3 _lshldi3 _ashldi3 _ashrdi3 _ffsdi2 \
438     _udiv_w_sdiv _udivmoddi4 _cmpdi2 _ucmpdi2 _floatdidf _floatdisf \
439     _fixunsdfsi _fixunssfsi _fixunsdfdi _fixdfdi _fixunssfdi _fixsfdi \
440     _fixxfdi _fixunsxfdi _floatdixf _fixunsxfsi \
441     __gcc_bcmp _varargs _eprintf _op_new _new_handler _op_delete \
442     _bb _shtab _clear_cache _trampoline __main _exit _ctors
443
444 # Header files that are made available under the same name
445 # to programs compiled with GCC.
446 USER_H = va-alpha.h va-h8300.h va-i860.h va-i960.h va-mips.h va-m88k.h \
447     va-pa.h va-pyr.h va-sparc.h va-clipper.h va-spur.h proto.h $(EXTRA_HEADERS)
448
449 # The files that "belong" in CONFIG_H are deliberately omitted
450 # because having them there would not be useful in actual practice.
451 # All they would do is cause complete recompilation every time
452 # one of the machine description files is edited.
453 # That may or may not be what one wants to do.
454 # If it is, rm *.o is an easy way to do it.
455 # CONFIG_H = config.h tm.h
456 CONFIG_H =
457 RTL_H = rtl.h rtl.def machmode.h machmode.def
458 TREE_H = tree.h real.h tree.def machmode.h machmode.def
459 CPLUS_TREE_H = $(TREE_H) cp-tree.h cp-tree.def
460 \f
461 # Avoid a lot of time thinking about remaking Makefile.in and *.def.
462 .SUFFIXES: .in .def
463
464 Makefile: $(srcdir)/Makefile.in $(srcdir)/configure $(srcdir)/version.c \
465    $(srcdir)/config/$(xmake_file) $(srcdir)/config/$(tmake_file)
466         sh config.status
467
468 all.internal: start.encap rest.encap
469 # This is what to compile if making a cross-compiler.
470 # Note that we can compile enquire using the cross-compiler just build,
471 # although we can't run it on this machine.
472 all.cross: native gcc-cross g++-cross specs $(LIBGCC) stmp-headers $(STMP_FIXPROTO) cross-test enquire $(EXTRA_PARTS)
473 # This is what to compile if making gcc with a cross-compiler.
474 all.build: native xgcc g++ $(EXTRA_PARTS)
475 # This is what must be made before installing GCC and converting libraries.
476 start.encap: native xgcc g++ specs $(LIBGCC1) xlimits.h
477 # Use this to make a GCC that will be used only to recompile GCC.
478 for-bootstrap: start.encap $(LIBGCC)
479 # These can't be made, with COFF encapsulation, until after GCC can run.
480 rest.encap: $(LIBGCC) stmp-headers $(STMP_FIXPROTO) $(EXTRA_PARTS)
481 # This is what is made with the host's compiler
482 # whether making a cross compiler or not.
483 native: config.status cpp $(LANGUAGES) $(EXTRA_PASSES) $(EXTRA_PROGRAMS) $(USE_COLLECT2)
484
485 # Define the names for selecting languages in LANGUAGES.
486 C c: cc1
487 C++ c++: cc1plus
488 # The next two ought to depend on objc-runtime, but that doesn't work yet.
489 OBJC objc: cc1obj
490 OBJECTIVE-C objective-c: cc1obj
491 PROTO: proto
492
493 # Really, really stupid make features, such as SUN's KEEP_STATE, may force
494 # a target to build even if it is up-to-date.  So we must verify that
495 # config.status does not exist before failing.
496 config.status:
497         @if [ ! -f config.status ] ; then \
498           echo You must configure gcc.  Look at the INSTALL file for details.; \
499           false; \
500         else \
501           true; \
502         fi
503
504 # On the target machine, finish building a cross compiler.
505 # This does the things that can't be done on the host machine.
506 rest.cross: $(LIBGCC) gfloat.h specs
507
508 # Verify that it works to compile and link cross-test.
509 # If it does, then there are sufficient replacements for libgcc1.a.
510 cross-test: cross-test.o native gcc-cross $(LIBGCC) $(GCC_PARTS)
511         $(GCC_FOR_TARGET) $(GCC_CFLAGS) cross-test.o -o $@
512 cross-test.o: cross-test.c native gcc-cross
513         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -c $(srcdir)/cross-test.c
514
515 # Recompile all the language-independent object files.
516 # This is used only if the user explicitly asks for it.
517 compilations: ${OBJS}
518
519 # We call this executable `xgcc' rather than `gcc'
520 # to avoid confusion if the current directory is in the path
521 # and CC is `gcc'.  It is renamed to `gcc' when it is installed.
522 xgcc: gcc.o version.o $(LIBDEPS)
523         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o xgcc gcc.o version.o $(LIBS)
524
525 # Dump a specs file to make -B./ read these specs over installed ones.
526 specs: xgcc
527         $(GCC_FOR_TARGET) -dumpspecs > specs
528
529 # Create the compiler driver for g++.
530 g++: g++.o $(LIBDEPS)
531         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o g++ g++.o $(LIBS)
532
533 # We do want to create an executable named `xgcc', so we can use it to
534 # compile libgcc2.a.
535 # Also create gcc-cross, so that install-common will install properly.
536 gcc-cross: xgcc
537         cp xgcc gcc-cross
538
539 # Create a version of the g++ driver which calls the cross-compiler.
540 g++-cross: $(srcdir)/g++.c
541         $(CC) $(ALL_CFLAGS) $(INCLUDES) $(LDFLAGS) -o g++-cross \
542            -DGCC_NAME=\"$(target)-gcc\" $(srcdir)/g++.c version.o $(LIBS)
543
544 cc1:$(P) $(C_OBJS) $(OBJS) $(LIBDEPS)
545         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
546
547 cc1plus:$(P) $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
548         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
549
550 cc1obj:$(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS)
551         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1obj $(OBJC_OBJS) $(OBJS) $(LIBS)
552
553 # Copy float.h from its source.
554 gfloat.h: $(FLOAT_H)
555         cp $(FLOAT_H) gfloat.h
556
557 # Create float.h source for the native machine.
558 float.h-nat: enquire
559         -./enquire -f > tmp-float.h
560         mv tmp-float.h float.h-nat
561
562 # Create a dummy float.h source for a cross-compiler.
563 float.h-cross:
564         echo "#error float.h values not known for cross-compiler" > float.h-cross
565
566 # Used to compile enquire with standard cc, but have forgotten why.
567 # Let's try with GCC.
568 enquire: enquire.o $(GCC_PARTS)
569         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
570 enquire.o: $(srcdir)/enquire.c $(GCC_PASSES)
571 #       -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
572 #       -cp $(srcdir)/enquire.c . > /dev/null 2>&1
573 # Breaking this line caused a problem with one version of GNU make.
574         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
575
576 # Build the version of limits.h that we will install.
577 xlimits.h: glimits.h limitx.h limity.h
578         if [ -f $(SYSTEM_HEADER_DIR)/limits.h ] ; then \
579           cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > xlimits.h; \
580         else \
581           cat $(srcdir)/glimits.h > xlimits.h; \
582         fi
583 \f
584 # Build libgcc.a.
585 # This is done in two parts because some functions, in libgcc1.c,
586 # must be compiled with something other than GCC,
587 # while the rest, in libgcc2.c, must be compiled with xgcc.
588 # That means we can't do libgcc2.c until after xgcc, cc1, etc.
589
590 # Use this as value of LIBGCC1 to cause conversion to GNU library format.
591 # LIBCONVERT should put its output in libgcc1.conv.
592 libgcc1.conv: libgcc1.a
593         $(LIBCONVERT) libgcc1.a libgcc1.conv
594
595 # Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
596 # Make an empty file instead.
597 libgcc1.null: $(GCC_PASSES)
598         echo "__foo () {}" > dummy.c
599         $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
600         $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy.o
601         rm -f dummy.o dummy.c
602
603 # This is $(LIBGCC1) for a cross-compiler.
604 # We have no automatic way of building libgcc1.a, 
605 # so it's up to the installer to find a way to do that.
606 # This rule deliberately does not depend on libgcc1.a
607 # so that it will fail if the installer hasn't provided it.
608 libgcc1.cross:
609         mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
610
611 # Compile the library of arithmetic subroutines with the native compiler.
612 # Don't compile it with GCC!
613 # (That would cause most arithmetic functions to call themselves.)
614 libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
615         -rm -f tmplibgcc1.a
616 # Actually build it in tmplibgcc1.a, then rename at end,
617 # so that libgcc1.a itself remains nonexistent if compilation is aborted.
618 # -e causes any failing command to make this rule fail.
619 # -e doesn't work in certain shells, so we test $$? as well.
620 # lynx has a broken ar, it always complains when the initial library is
621 # empty, thus this command works only if we don't do -e
622 # There is a trailing backslash (\) deleted from the following line.
623 #       set -e;
624         for name in $(LIB1FUNCS); \
625         do \
626           echo $${name}; \
627           rm -f $${name}.o; \
628           $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
629           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
630           mv libgcc1.o $${name}.o; \
631           $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
632           rm -f $${name}.o; \
633         done
634 # Some shells crash when a loop has no items.
635 # So make sure there is always at least one--`..'.
636 # Then ignore it.
637 # We don't use -e here because there are if statements
638 # that should not make the command give up when the if condition is false.
639 # Instead, we test for failure after each command where it matters.
640         -for file in .. $(LIB1FUNCS_EXTRA); \
641         do \
642           if [ x$${file} != x.. ]; then \
643             name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
644             echo $${name}; \
645             if [ $${name}.asm = $${file} ]; then \
646               cp $${file} $${name}.s || exit 1; file=$${name}.s; \
647             else true; fi; \
648             $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
649             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
650             $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
651             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
652             rm -f $${name}.[so]; \
653           else true; \
654           fi; \
655         done
656         mv tmplibgcc1.a libgcc1.a
657
658 # Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
659 # But recompiling cc1 should not force recompilation of libgcc2.a.
660 # If you want to force recompilation, delete libgcc2.a.
661 libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS)
662         -if [ -f libgcc2.ready ] ; then \
663                 true; \
664         else \
665                 touch libgcc2.ready; \
666         fi
667
668 libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
669    machmode.h longlong.h gbl-ctors.h config.status
670 # Actually build it in tmplibgcc2.a, then rename at end,
671 # so that libgcc2.a itself remains nonexistent if compilation is aborted.
672         -rm -f tmplibgcc2.a
673 # -e causes any failing command to make this rule fail.
674 # -e doesn't work in certain shells, so we test $$? as well.
675 # lynx has a broken ar, it always complains when the initial library is
676 # empty, thus this command works only if we don't do -e
677 # There is a trailing backslash (\) deleted from the following line.
678 #       set -e;
679         for name in $(LIB2FUNCS); \
680         do \
681           echo $${name}; \
682           $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
683               $(srcdir)/libgcc2.c -o $${name}.o; \
684           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
685           $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
686           rm -f $${name}.o; \
687         done
688 # Some shells crash when a loop has no items.
689 # So make sure there is always at least one--`..'.
690 # Then ignore it.
691 # We don't use -e here because there are if statements
692 # that should not make the command give up when the if condition is false.
693 # Instead, we test for failure after each command where it matters.
694         -for file in .. $(LIB2FUNCS_EXTRA); \
695         do \
696           if [ x$${file} != x.. ]; then \
697             name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
698             echo $${name}; \
699             if [ $${name}.asm = $${file} ]; then \
700               cp $${file} $${name}.s || exit 1; file=$${name}.s; \
701             else true; fi; \
702             $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
703             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
704             $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
705             rm -f $${name}.[so]; \
706           else true; \
707           fi; \
708         done
709         mv tmplibgcc2.a libgcc2.a
710 # These lines were deleted from above the mv command
711 # because ranlibing libgcc.a itself should suffice.
712 #       -if [ x${HPUX_GAS} = x ] ; then \
713 #         if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi \
714 #       else true; fi
715
716 # Combine the various libraries into a single library, libgcc.a.
717 libgcc.a: $(LIBGCC1) $(LIBGCC2)
718         -rm -rf tmplibgcc.a libgcc.a tmpcopy
719         mkdir tmpcopy
720         -if [ x$(LIBGCC1) != x ];                       \
721         then (cd tmpcopy; $(AR) x ../$(LIBGCC1));       \
722         else true;                                      \
723         fi
724 # Some versions of ar (specifically the one in RISC/os 5.x), create an
725 # unwritable table of contents file, and then print an error message when
726 # the second ar command tries to overwrite this file.  To avoid the error
727 # message from ar, we make sure all files are writable.
728         (cd tmpcopy; chmod +w * > /dev/null 2>&1)
729         (cd tmpcopy; $(AR) x ../$(LIBGCC2))
730         (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o)
731         rm -rf tmpcopy
732         -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
733 # Actually build it in tmplibgcc.a, then rename at end,
734 # so that libgcc.a itself remains nonexistent if compilation is aborted.
735         mv tmplibgcc.a libgcc.a
736
737 objc-runtime: libobjc.a
738
739 # Build the Objective C runtime library.
740 libobjc.a: cc1obj libgcc2.ready $(USE_COLLECT2) $(EXTRA_PARTS)
741         if [ -d objc ]; then true; else mkdir objc; fi
742         thisdir1=`pwd`; \
743         srcdir1=`cd $(srcdir); pwd`; \
744         cd objc; \
745         $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
746           srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
747           GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
748           GCC_CFLAGS="$(GCC_CFLAGS)"
749         -rm -f libobjc.a
750         ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
751         -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
752
753 # This is used by objc/Makefile if the user runs that directly.
754 sublibobjc.a: cc1obj libgcc2.ready
755         thisdir1=`pwd`; \
756         srcdir1=`cd $(srcdir); pwd`; \
757         cd objc; \
758         $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
759           srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
760           GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
761           GCC_CFLAGS="$(GCC_CFLAGS)"
762
763 # Compile two additional files that are linked with every program
764 # linked using GCC on system V, for the sake of C++ constructors.
765 crtbegin.o:     crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
766         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \
767           -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
768
769 crtend.o:       crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
770         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
771           -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o
772 \f
773 # Compiling object files from source files.
774
775 # Note that dependencies on obstack.h are not written
776 # because that file is not part of GCC.
777 # Dependencies on gvarargs.h are not written
778 # because all that file does, when not compiling with GCC,
779 # is include the system varargs.h.
780
781 # C language specific files.
782
783 c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h c-parse.h \
784     c-tree.h input.h flags.h
785         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
786 $(srcdir)/c-parse.c $(srcdir)/c-parse.h: $(srcdir)/c-parse.y
787         cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
788 $(srcdir)/c-parse.y: $(srcdir)/c-parse.in
789         sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
790           -e "/^ifc$$/d" -e "/^end ifc$$/d" \
791           $(srcdir)/c-parse.in > $(srcdir)/c-parse.y
792
793 c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
794 c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
795 c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
796 c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h c-parse.h \
797     input.h flags.h
798 c-aux-info.o : c-aux-info.c  $(CONFIG_H) $(TREE_H) c-tree.h flags.h
799 c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
800 c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
801 c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
802
803 # C++ language specific files.
804
805 cp-parse.o : $(srcdir)/cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h cp-lex.h
806         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
807   `echo $(srcdir)/cp-parse.c | sed 's,^\./,,'`
808
809 $(srcdir)/cp-parse.c $(srcdir)/cp-parse.h : $(srcdir)/cp-parse.y
810         @echo expect 29 shift/reduce conflicts and 13 reduce/reduce conflicts
811         cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
812         cd $(srcdir); grep '^#define[   ]*YYEMPTY' cp-parse.c >>cp-parse.h
813
814 cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
815    $(srcdir)/cp-parse.h flags.h cp-lex.h
816 cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
817    $(srcdir)/cp-parse.h $(srcdir)/cp-input.c flags.h cp-hash.h cp-lex.h
818 cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
819   cp-lex.h cp-decl.h stack.h
820 cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
821   cp-lex.h cp-decl.h
822 cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
823 cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
824 cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
825 cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
826 cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
827 cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
828 cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
829 cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
830 cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
831 cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
832 cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
833 cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
834 cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
835   expr.h insn-codes.h
836 cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
837 cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H) input.h
838 cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
839
840 # To make a configuration always use collect2, set USE_COLLECT2 to ld.
841 ld: collect2
842         rm -f ld
843         ln collect2 ld
844
845 collect2 : collect2.o version.o $(LIBDEPS)
846 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
847         -rm -f collect2
848         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
849
850 collect2.o : collect2.c $(CONFIG_H) gstab.h
851         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES)  \
852         -DTARGET_MACHINE=\"$(target)\" \
853         -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
854
855 # Objective C language specific files.
856
857 objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
858    c-tree.h input.h flags.h objc-act.h
859         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
860 $(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
861         cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
862 $(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
863         sed -e "/^ifc$$/,/^end ifc$$/d" \
864           -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
865           $(srcdir)/c-parse.in > $(srcdir)/objc-parse.y
866
867 objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
868    flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
869
870 # A file used by all variants of C.
871
872 c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
873
874 # Language-independent files.
875
876 gcc.o: gcc.c $(CONFIG_H) gvarargs.h config.status
877         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
878   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
879   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
880   -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
881   -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
882   -DTOOLDIR=\"$(tooldir)/\" \
883   $(MAYBE_TARGET_DEFAULT) \
884   -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
885
886 dumpvers: dumpvers.c
887
888 version.o: version.c
889 obstack.o: obstack.c
890
891 convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
892
893 tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
894 print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
895 stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
896 fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
897 toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
898    insn-attr.h xcoffout.h defaults.h
899         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
900           $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
901           -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
902
903 rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
904
905 print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
906 rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
907
908 varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
909    defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
910 function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
911    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
912    recog.h output.h
913 stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
914    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
915 expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
916    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
917 calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
918    insn-flags.h gvarargs.h 
919 expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
920    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
921 explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
922    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
923 optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
924    insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
925 dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
926    insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
927 sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
928    insn-config.h reload.h
929 dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
930    insn-config.h reload.h output.h defaults.h
931 xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
932 emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
933    regs.h insn-config.h insn-codes.h real.h expr.h
934 real.o : real.c $(CONFIG_H) $(TREE_H)
935 getpwd.o : getpwd.c $(CONFIG_H)
936
937 integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
938    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
939
940 jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
941    insn-config.h insn-flags.h insn-codes.h expr.h real.h
942 stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
943
944 cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
945    insn-config.h recog.h
946 loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
947    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
948 unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
949    integrate.h regs.h flags.h expr.h loop.h
950 flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
951    basic-block.h regs.h hard-reg-set.h output.h
952 combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
953    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
954    basic-block.h recog.h real.h hard-reg-set.h
955 regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
956    basic-block.h regs.h insn-config.h recog.h reload.h real.h
957 local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
958    regs.h hard-reg-set.h insn-config.h recog.h output.h
959 global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
960    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
961
962 reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
963    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
964 reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
965    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
966    basic-block.h recog.h output.h
967 caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
968    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
969 reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
970    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
971    flags.h output.h
972 sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
973    flags.h insn-config.h insn-attr.h
974 final.o : final.c $(CONFIG_H) $(RTL_H) $(TREE_H) gvarargs.h flags.h regs.h \
975    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
976    hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
977 recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
978    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
979    insn-flags.h insn-codes.h real.h
980 reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
981    regs.h hard-reg-set.h flags.h insn-config.h
982
983 aux-output.o : aux-output.c $(CONFIG_H) \
984    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
985    insn-flags.h output.h insn-attr.h insn-codes.h
986
987 # Normally this target is not used; but it is used if you
988 # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
989 # from the GNU Emacs distribution.
990 alloca.o:       alloca.c
991         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
992           -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
993         $(ALLOCA_FINISH)
994 \f
995 # Generate header and source files from the machine description, 
996 # and compile them.
997
998 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
999   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
1000   insn-attr.h insn-attrtab.c
1001
1002 # The following pair of rules has this effect:
1003 # genconfig is run only if the md has changed since genconfig was last run;
1004 # but the file insn-config.h is touched only when its contents actually change.
1005
1006 # Each of the other insn-* files is handled by a similar pair of rules.
1007
1008 # This causes an anomaly in the results of make -n
1009 # because insn-* is older than stamp-*
1010 # and thus make -n thinks that insn-* will be updated
1011 # and force recompilation of things that depend on it.
1012 # We use move-if-change precisely to avoid such recompilation.
1013 # But there is no way to teach make -n that it will be avoided.
1014
1015 # Each of the insn-*.[ch] rules has a semicolon at the end,
1016 # for otherwise the system Make on SunOS 4.1 never tries
1017 # to recompile insn-*.o.  To avoid problems and extra noise from
1018 # versions of make which don't like empty commands (nothing after the
1019 # trailing `;'), we call true for each.
1020
1021 insn-config.h: stamp-config ; @true
1022 stamp-config : md genconfig $(srcdir)/move-if-change
1023         ./genconfig md > tmp-config.h
1024         $(srcdir)/move-if-change tmp-config.h insn-config.h
1025         touch stamp-config
1026
1027 insn-flags.h: stamp-flags ; @true
1028 stamp-flags : md genflags $(srcdir)/move-if-change
1029         ./genflags md > tmp-flags.h
1030         $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1031         touch stamp-flags
1032
1033 insn-codes.h: stamp-codes ; @true
1034 stamp-codes : md gencodes $(srcdir)/move-if-change
1035         ./gencodes md > tmp-codes.h
1036         $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1037         touch stamp-codes
1038
1039 insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
1040   insn-config.h insn-flags.h insn-codes.h
1041         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1042
1043 insn-emit.c: stamp-emit ; @true
1044 stamp-emit : md genemit $(srcdir)/move-if-change
1045         ./genemit md > tmp-emit.c
1046         $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1047         touch stamp-emit
1048
1049 insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
1050   real.h output.h flags.h
1051         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1052
1053 insn-recog.c: stamp-recog ; @true
1054 stamp-recog : md genrecog $(srcdir)/move-if-change
1055         ./genrecog md > tmp-recog.c
1056         $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1057         touch stamp-recog
1058
1059 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1060   insn-config.h flags.h rtl.h recog.h expr.h reload.h
1061         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1062
1063 insn-opinit.c: stamp-opinit ; @true
1064 stamp-opinit : md genopinit $(srcdir)/move-if-change
1065         ./genopinit md > tmp-opinit.c
1066         $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1067         touch stamp-opinit
1068
1069 insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
1070         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1071
1072 insn-extract.c: stamp-extract ; @true
1073 stamp-extract : md genextract $(srcdir)/move-if-change
1074         ./genextract md > tmp-extract.c
1075         $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1076         touch stamp-extract
1077
1078 insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1079         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1080
1081 insn-peep.c: stamp-peep ; @true
1082 stamp-peep : md genpeep $(srcdir)/move-if-change
1083         ./genpeep md > tmp-peep.c
1084         $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1085         touch stamp-peep
1086
1087 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1088      insn-attr.h insn-config.h
1089         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1090
1091 insn-attr.h: stamp-attr ; @true
1092 stamp-attr : md genattr $(srcdir)/move-if-change
1093         ./genattr md > tmp-attr.h
1094         $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1095         touch stamp-attr
1096
1097 insn-attrtab.c: stamp-attrtab ; @true
1098 stamp-attrtab : md genattrtab $(srcdir)/move-if-change
1099         if cmp -s $(PREMADE_ATTRTAB_MD) md;     \
1100         then                                    \
1101           echo Using $(PREMADE_ATTRTAB);        \
1102           cp $(PREMADE_ATTRTAB) tmp-attrtab.c;  \
1103         else                                    \
1104           ./genattrtab md > tmp-attrtab.c;      \
1105         fi
1106         $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1107         touch stamp-attrtab
1108
1109 insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1110     hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1111     insn-codes.h
1112         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1113
1114 insn-output.c: stamp-output ; @true
1115 stamp-output : md genoutput $(srcdir)/move-if-change
1116         ./genoutput md > tmp-output.c
1117         $(srcdir)/move-if-change tmp-output.c insn-output.c
1118         touch stamp-output
1119 \f
1120 # Compile the programs that generate insn-* from the machine description.
1121 # They are compiled with $(HOST_CC), and associated libraries,
1122 # since they need to run on this machine
1123 # even if GCC is being compiled to run on some other machine.
1124
1125 # $(CONFIG_H) is omitted from the deps of the gen*.o
1126 # because these programs don't really depend on anything 
1127 # about the target machine.  They do depend on config.h itself,
1128 # since that describes the host machine.
1129
1130 genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1131         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
1132           genconfig.o $(HOST_RTL) $(HOST_LIBS)
1133
1134 genconfig.o : genconfig.c $(RTL_H) hconfig.h
1135         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1136
1137 genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1138         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
1139          genflags.o $(HOST_RTL) $(HOST_LIBS)
1140
1141 genflags.o : genflags.c $(RTL_H) hconfig.h
1142         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1143
1144 gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1145         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
1146          gencodes.o $(HOST_RTL) $(HOST_LIBS)
1147
1148 gencodes.o : gencodes.c $(RTL_H) hconfig.h
1149         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1150
1151 genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1152         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
1153          genemit.o $(HOST_RTL) $(HOST_LIBS)
1154
1155 genemit.o : genemit.c $(RTL_H) hconfig.h
1156         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1157
1158 genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
1159         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genopinit \
1160          genopinit.o $(HOST_RTL) $(HOST_LIBS)
1161
1162 genopinit.o : genopinit.c $(RTL_H) hconfig.h
1163         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1164
1165 genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1166         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
1167          genrecog.o $(HOST_RTL) $(HOST_LIBS)
1168
1169 genrecog.o : genrecog.c $(RTL_H) hconfig.h
1170         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1171
1172 genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1173         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
1174          genextract.o $(HOST_RTL) $(HOST_LIBS)
1175
1176 genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
1177         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1178
1179 genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1180         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
1181          genpeep.o $(HOST_RTL) $(HOST_LIBS)
1182
1183 genpeep.o : genpeep.c $(RTL_H) hconfig.h
1184         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1185
1186 genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1187         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
1188          genattr.o $(HOST_RTL) $(HOST_LIBS)
1189
1190 genattr.o : genattr.c $(RTL_H) hconfig.h
1191         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1192
1193 genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
1194         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
1195          genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
1196
1197 genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
1198         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1199
1200 genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1201         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
1202          genoutput.o $(HOST_RTL) $(HOST_LIBS)
1203
1204 genoutput.o : genoutput.c $(RTL_H) hconfig.h
1205         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1206 \f
1207 # Compile the libraries to be used by gen*.
1208 # If we are not cross-building, gen* use the same .o's that cc1 will use,
1209 # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1210 # with the rules for rtl.o, alloca.o, etc.
1211 $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1212         rm -f $(HOST_PREFIX)rtl.c
1213         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
1214         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1215
1216 $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1217         rm -f $(HOST_PREFIX)print-rtl.c
1218         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
1219         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1220
1221 $(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1222         rm -f $(HOST_PREFIX)rtlanal.c
1223         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
1224         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1225
1226 $(HOST_PREFIX_1)alloca.o: alloca.c
1227         rm -f $(HOST_PREFIX)alloca.c
1228         cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1229         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1230
1231 $(HOST_PREFIX_1)obstack.o: obstack.c
1232         rm -f $(HOST_PREFIX)obstack.c
1233         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
1234         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1235
1236 $(HOST_PREFIX_1)malloc.o: malloc.c
1237         rm -f $(HOST_PREFIX)malloc.c
1238         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
1239         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1240
1241 # This satisfies the dependency that we get if you cross-compile a compiler
1242 # that does not need to compile alloca, malloc or whatever.
1243 $(HOST_PREFIX_1): 
1244         touch $(HOST_PREFIX_1)
1245 \f
1246 # Remake cpp and protoize.
1247
1248 # Making the preprocessor
1249 cpp: cccp
1250         -rm -f cpp
1251         ln cccp cpp
1252 cccp: cccp.o cexp.o version.o $(LIBDEPS)
1253         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
1254 cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1255         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1256 $(srcdir)/cexp.c: $(srcdir)/cexp.y
1257         cd $(srcdir); $(BISON) -o cexp.c cexp.y
1258 cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
1259 # The reason we use $(libdir)/g++-include rather than using libsubdir
1260 # is for compatibility with the current version of libg++.
1261         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1262           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1263           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1264           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1265           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1266           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1267           -DTOOLDIR=\"$(tooldir)/\" \
1268           -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1269
1270 # Note for the stamp targets, we run the program `true' instead of
1271 # having an empty command (nothing following the semicolon).
1272
1273 proto: config.status protoize unprotoize SYSCALLS.c.X
1274
1275 protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1276         $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1277           protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
1278 protoize.o: stamp-proto ; @true
1279
1280 unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1281         $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1282           unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
1283 unprotoize.o:   stamp-proto ; @true
1284
1285 stamp-proto:    $(srcdir)/protoize.c getopt.h $(CONFIG_H)
1286         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1287           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1288           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1289           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1290           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1291           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1292           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1293           -DUNPROTOIZE $(srcdir)/protoize.c
1294         mv protoize.o unprotoize.o
1295         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1296           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1297           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1298           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1299           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1300           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1301           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1302           $(srcdir)/protoize.c
1303         touch stamp-proto
1304
1305 getopt.o: $(srcdir)/getopt.c getopt.h
1306         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1307 getopt1.o: $(srcdir)/getopt1.c getopt.h
1308         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1309
1310 # This info describes the target machine, so compile with GCC just built.
1311 SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES)
1312         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1313         cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
1314         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1315           -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1316         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1317
1318
1319 test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
1320         -rm -f tmp-proto.[cso]
1321         cp $(srcdir)/protoize.c tmp-proto.c
1322         chmod u+w tmp-proto.c
1323         ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1324           $(CFLAGS) $(INCLUDES) \
1325           -DGCC_INCLUDE_DIR=0 \
1326           -DGPLUSPLUS_INCLUDE_DIR=0 \
1327           -DCROSS_INCLUDE_DIR=0 \
1328           -DTOOL_INCLUDE_DIR=0 \
1329           -DSTD_PROTO_DIR=0" tmp-proto.c
1330         @echo '**********' Expect 400 lines of differences.
1331         -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1332         -wc -l tmp-proto.diff
1333         ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1334           $(CFLAGS) $(INCLUDES) \
1335           -DGCC_INCLUDE_DIR=0 \
1336           -DGPLUSPLUS_INCLUDE_DIR=0 \
1337           -DCROSS_INCLUDE_DIR=0 \
1338           -DTOOL_INCLUDE_DIR=0 \
1339           -DSTD_PROTO_DIR=0" tmp-proto.c
1340         @echo Expect zero differences.
1341         diff $(srcdir)/protoize.c tmp-proto.c | cat
1342         -rm -f tmp-proto.[cso]
1343 \f
1344 # Build the include directory.  The stamp files are stmp-* rather than
1345 # stamp-* so that mostlyclean does not force the include directory to
1346 # be rebuilt.
1347
1348 # Build the include directory except for float.h (which depends upon
1349 # enquire).
1350 stmp-int-hdrs: stmp-fixinc $(USER_H) gvarargs.h gstdarg.h gstddef.h \
1351   xlimits.h objc-headers
1352 # Copy in the headers provided with gcc.
1353 # The sed command gets just the last file name component;
1354 # this is necessary because VPATH could add a dirname.
1355 # Using basename would be simpler, but some systems don't have it.
1356         objdir=`pwd`; \
1357         cd $(srcdir); \
1358         for file in $(USER_H); do \
1359           realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
1360           rm -f $$objdir/include/$$realfile; \
1361           cp $$realfile $$objdir/include; \
1362           chmod a+r $$objdir/include/$$realfile; \
1363         done
1364         rm -f include/varargs.h
1365         cp $(srcdir)/gvarargs.h include/varargs.h
1366         chmod a+r include/varargs.h
1367         rm -f include/stdarg.h
1368         cp $(srcdir)/gstdarg.h include/stdarg.h
1369         chmod a+r include/stdarg.h
1370         rm -f include/stddef.h
1371         cp $(srcdir)/gstddef.h include/stddef.h
1372         chmod a+r include/stddef.h
1373         rm -f include/limits.h
1374         cp xlimits.h include/limits.h
1375         chmod a+r include/limits.h
1376 # Install the README
1377         rm -f include/README
1378         cp $(srcdir)/README-fixinc include/README
1379         chmod a+r include/README
1380         touch stmp-int-hdrs
1381
1382 # Build the complete include directory.
1383 stmp-headers: stmp-int-hdrs gfloat.h
1384         rm -f include/float.h
1385         cp gfloat.h include/float.h
1386         chmod a+r include/float.h
1387         touch stmp-headers
1388
1389 # Build fixed copies of system files.
1390 stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h xgcc cpp
1391         rm -rf include
1392         mkdir include
1393         if [ x$(FIXINCLUDES) != xMakefile.in ]; \
1394         then \
1395           for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1396             if [ -d $$dir ]; \
1397             then \
1398               $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir) "`pwd`/xgcc -B`pwd`/"; \
1399             else true; fi; \
1400           done; \
1401         else true; \
1402         fi
1403         rm -f include/syslimits.h
1404         if [ -f include/limits.h ]; then \
1405           mv include/limits.h include/syslimits.h; \
1406         else \
1407           cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1408         fi
1409         chmod a+r include/syslimits.h
1410         touch stmp-fixinc
1411
1412 # copy objc header files into build directory
1413 objc-headers:
1414         if [ -d objc ]; then true; else mkdir objc; fi
1415         thisdir1=`pwd`; \
1416         srcdir1=`cd $(srcdir); pwd`; \
1417         cd objc; \
1418         $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
1419         srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1420         GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1421         GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
1422         touch objc-headers
1423
1424 # Files related to the fixproto script.
1425
1426 deduced.h: $(srcdir)/scan-types.sh
1427         CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -nostdinc -Iinclude -I${SYSTEM_HEADER_DIR}"; \
1428           export CC; \
1429           $(srcdir)/scan-types.sh >tmp-deduced.h
1430         mv tmp-deduced.h deduced.h
1431
1432 gen-protos: gen-protos.o scan.o
1433         ${HOST_CC} -o gen-protos gen-protos.o scan.o
1434
1435 xsys-protos.h: $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
1436         cat deduced.h $(srcdir)/sys-protos.h > fixtmp.c
1437         $(GCC_FOR_TARGET) fixtmp.c -E \
1438           | sed -e 's/  / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' -e 's/( )/()/' \
1439           | ./gen-protos >xsys-protos.h
1440         rm -rf fixtmp.c
1441
1442 scan-decls: scan-decls.o scan.o
1443         $(HOST_CC) -o scan-decls scan-decls.o scan.o
1444
1445 patch-header: patch-header.o scan.o xsys-protos.h $(HOST_OBSTACK)
1446         $(HOST_CC) -o patch-header patch-header.o scan.o $(HOST_OBSTACK)
1447
1448 patch-header.o: xsys-protos.h
1449
1450 stmp-fixproto: patch-header scan-decls xsys-protos.h
1451         CPP="$(GCC_FOR_TARGET) -E"; export CPP; \
1452           ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR)
1453         touch stmp-fixproto
1454 \f
1455 # Remake the info files.
1456
1457 doc: info
1458 info: $(srcdir)/cpp.info $(srcdir)/gcc.info
1459
1460 $(srcdir)/cpp.info: cpp.texi
1461         cd $(srcdir); $(MAKEINFO) cpp.texi
1462
1463 #$(srcdir)/gplus.info: gplus.texi
1464 #       $(MAKEINFO) `echo $(srcdir)/gplus.texi | sed 's,^\./,,'`
1465
1466 $(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1467                 md.texi rtl.texi tm.texi 
1468         cd $(srcdir); $(MAKEINFO) gcc.texi
1469
1470 dvi: $(srcdir)/gcc.dvi $(srcdir)/cpp.dvi
1471
1472 # This works with GNU Make's default rule.
1473 $(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1474                 md.texi rtl.texi tm.texi 
1475         $(TEXI2DVI) $<
1476
1477 # This works with GNU Make's default rule.
1478 $(srcdir)/cpp.dvi: cpp.texi
1479         $(TEXI2DVI) $<
1480
1481 $(srcdir)/INSTALL: install1.texi install.texi
1482         $(MAKEINFO) -D INSTALLONLY --no-header `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
1483 \f
1484 # Deletion of files made during compilation.
1485 # There are four levels of this:
1486 #   `mostlyclean', `clean', `distclean' and `realclean'.
1487 # `mostlyclean' is useful while working on a particular type of machine.
1488 # It deletes most, but not all, of the files made by compilation.
1489 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
1490 # `clean' deletes everything made by running `make all'.
1491 # `distclean' also deletes the files made by config.
1492 # `realclean' also deletes everything that could be regenerated automatically.
1493
1494
1495 mostlyclean:
1496         -rm -f $(STAGESTUFF)
1497 # Clean the objc subdir if we created one.
1498         if [ -d objc ]; then \
1499           srcdir1=`cd $(srcdir); pwd`; \
1500           cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
1501         else true; fi
1502         -rm -f libobjc.a
1503 # Delete the temporary source copies for cross compilation.
1504         -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1505         -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1506         -rm -f $(HOST_PREFIX_1)obstack.c 
1507 # Delete the temp files made in the course of building libgcc.a.
1508         -rm -f tmplibgcc* tmpcopy xlimits.h
1509         for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1510 # Delete other temporary files.
1511         -rm -f tmp-float.h tmp-gcc.xtar.gz
1512         -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
1513 # Delete the stamp files.
1514         -rm -f stamp-* tmp-*
1515 # Delete debugging dump files.
1516         -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
1517         -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
1518 # Delete some files made during installation.
1519         -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
1520         -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s
1521 # Delete files generated for fixproto
1522         -rm -rf patch-header scan-decls xsys-protos.h deduced.h tmp-deduced.h \
1523           gen-protos fixproto.list fixtmp.?
1524 # Delete unwanted output files from TeX.
1525         -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
1526 # Delete sorted indices we don't actually use.
1527         -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
1528 # Delete core dumps.
1529         -rm -f core config/core
1530
1531 # Delete all files made by compilation
1532 # that don't exist in the distribution.
1533 clean: mostlyclean
1534 # It may not be quite desirable to delete unprotoize.c here,
1535 # but the spec for `make clean' requires it.
1536 # Using unprotoize.c is not quite right in the first place, 
1537 # but what better way is there?
1538         -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready libgcc1.null
1539         -rm -f *.dvi
1540 # Delete the include directory.
1541         -rm -rf stmp-* include objc-headers
1542
1543 # Delete all files that users would normally create
1544 # while building and installing GCC.
1545 distclean: clean
1546         -rm -f tm.h aux-output.c config.h md config.status tconfig.h hconfig.h
1547         -rm -f Makefile *.oaux
1548         -rm -fr stage1 stage2 stage3 stage4
1549         -rm -f cp-parse.output
1550         -rm -f objc-parse.output
1551         -rm -f c-parse.output
1552
1553 # Delete anything likely to be found in the source directory
1554 # that shouldn't be in the distribution.
1555 extraclean: distclean
1556         -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
1557         -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
1558         -rm -f config/*/=* config/*/"#"* config/*/*~*
1559         -rm -f config/*/*.orig config/*/*.rej
1560         -rm -f objc/=* objc/"#"* objc/*~*
1561         -rm -f objc/*.orig objc/*.rej
1562         -rm -f *.dvi *.oaux *.d *.[zZ] *.gz
1563         -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
1564         -rm -f *lose config/*lose config/*/*lose
1565         -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
1566
1567 # Get rid of every file that's generated from some other file.
1568 # Most of these files ARE PRESENT in the GCC distribution.
1569 realclean: distclean
1570         -rm -f c-parse.y objc-parse.y
1571         -rm -f cp-parse.c cp-parse.h cp-parse.output
1572         -rm -f objc-parse.c objc-parse.output
1573         -rm -f c-parse.c c-parse.h c-parse.output
1574         -rm -f cexp.c cexp.output TAGS 
1575         -rm -f cpp.info* cpp.??s cpp.*aux
1576         -rm -f gcc.info* gcc.??s gcc.*aux
1577         -rm -f gplus.info* gplus.??s gplus.*aux
1578 \f
1579 # Entry points `install' and `uninstall'.
1580 # Also use `install-collect2' to install collect2 when the config files don't.
1581
1582 # The semicolon is to prevent the install.sh -> install default rule
1583 # from doing anything.  Having it run true helps avoid problems and
1584 # noise from versions of make which don't like to have null commands.
1585 install: $(INSTALL_TARGET) ; @true
1586
1587 # Copy the compiler files into directories where they will be run.
1588 install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
1589     install-man install-info
1590
1591 # Do nothing while making gcc with a cross-compiler. The person who
1592 # makes gcc for the target machine has to know how to put a complete
1593 # gcc together by hand.
1594 install-build: force
1595         @echo You have to install gcc on your target machine by hand.
1596
1597 # Run this on the target machine
1598 # to finish installation of cross compiler.
1599 install-cross-rest: install-float-h-cross
1600
1601 # Install float.h for cross compiler.
1602 # Run this on the target machine!
1603 install-float-h-cross:
1604 #       if [ -f enquire ] ; then true; else false; fi
1605 # Note: don't use -.  We should fail right away if enquire was not made.
1606         ./enquire -f > $(tmpdir)/float.h
1607         -rm -f $(libsubdir)/include/float.h
1608         $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
1609         -rm -f $(tmpdir)/float.h
1610         chmod a-x $(libsubdir)/include/float.h
1611
1612 # Create the installation directory.
1613 install-dir:
1614         -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
1615         -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
1616 # This dir isn't curretly searched by cpp.
1617 #       -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
1618         -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
1619         -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
1620         -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
1621         -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
1622         -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
1623         -if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi
1624         -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi
1625         -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
1626 # We don't use mkdir -p to create the parents of mandir,
1627 # because some systems don't support it.
1628 # Instead, we use this technique to create the immediate parent of mandir.
1629         -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
1630         if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
1631         -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
1632
1633 # Install the compiler executables built during cross compilation.
1634 # Deps on  $(srcdir)/g++ $(srcdir)/c++  would be natural here,
1635 # but the latter would get confused with the target `c++'.
1636 install-common: native install-dir xgcc g++ $(EXTRA_PARTS)
1637         for file in $(COMPILERS); do \
1638           if [ -f $$file ] ; then \
1639             rm -f $(libsubdir)/$$file; \
1640             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1641           else true; \
1642           fi; \
1643         done
1644         for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
1645           if [ x"$$file" != x.. ]; then \
1646             rm -f $(libsubdir)/$$file; \
1647             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1648           else true; fi; \
1649         done
1650 # Don't mess with specs if it doesn't exist yet.
1651         -if [ -f specs ] ; then \
1652           rm -f $(libsubdir)/specs; \
1653           $(INSTALL_DATA) specs $(libsubdir)/specs; \
1654         fi
1655 # Install the driver program as $(target)-gcc
1656 # and also as either gcc (if native) or $(tooldir)/bin/gcc.
1657         -if [ -f gcc-cross ] ; then \
1658           rm -f $(bindir)/$(target)-gcc; \
1659           $(INSTALL_PROGRAM) gcc-cross $(bindir)/$(target)-gcc; \
1660           if [ -d $(tooldir)/bin/. ] ; then \
1661             rm -f $(tooldir)/bin/gcc; \
1662             $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
1663           else true; fi; \
1664           if [ -f cc1plus ] ; then \
1665             rm -f $(bindir)/$(target)-g++; \
1666             $(INSTALL_PROGRAM) g++-cross $(bindir)/$(target)-g++; \
1667             chmod a+x $(bindir)/$(target)-g++; \
1668             rm -f $(bindir)/$(target)-c++; \
1669             ln $(bindir)/$(target)-g++ $(bindir)/$(target)-c++; \
1670           fi ; \
1671         else \
1672           rm -f $(bindir)/gcc; \
1673           $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
1674           rm -f $(bindir)/$(target)-gcc-1; \
1675           ln $(bindir)/gcc $(bindir)/$(target)-gcc-1; \
1676           mv $(bindir)/$(target)-gcc-1 $(bindir)/$(target)-gcc; \
1677         fi
1678 # Install protoize if it was compiled.
1679         -if [ -f protoize ]; \
1680         then \
1681             rm -f $(bindir)/protoize; \
1682             $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
1683             rm -f $(bindir)/unprotoize; \
1684             $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
1685             rm -f $(libsubdir)/SYSCALLS.c.X; \
1686             $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
1687             chmod a-x $(libsubdir)/SYSCALLS.c.X; \
1688         fi
1689         -if [ -f cc1plus ] ; then \
1690             rm -f $(bindir)/g++; \
1691             $(INSTALL_PROGRAM) g++ $(bindir)/g++; \
1692             chmod a+x $(bindir)/g++; \
1693             rm -f $(bindir)/c++; \
1694             ln $(bindir)/g++ $(bindir)/c++; \
1695         fi
1696         -rm -f $(libsubdir)/cpp
1697         $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
1698
1699 # Install the info files.
1700 install-info: doc
1701         -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
1702         cd $(srcdir); for f in cpp.info* gcc.info*; \
1703         do $(INSTALL_DATA) $$f $(infodir)/$$f; done
1704         -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
1705
1706 # Install the man pages.
1707 install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 $(srcdir)/g++.1
1708         -rm -f $(mandir)/gcc$(manext)
1709         -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
1710         -chmod a-x $(mandir)/gcc$(manext)
1711         -rm -f $(mandir)/cccp$(manext)
1712         -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
1713         -chmod a-x $(mandir)/cccp$(manext)
1714         -$(INSTALL_DATA) $(srcdir)/g++.1 $(mandir)/g++$(manext)
1715         -chmod a-x $(mandir)/g++$(manext)
1716
1717 # Install the library.
1718 install-libgcc: libgcc.a install-dir
1719         -if [ -f libgcc.a ] ; then \
1720           rm -f $(libsubdir)/libgcc.a; \
1721           $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
1722           if $(RANLIB_TEST) ; then \
1723             (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
1724           chmod a-x $(libsubdir)/libgcc.a; \
1725         else true; fi
1726
1727 # Install the objc run time library.
1728 install-libobjc: libobjc.a install-dir
1729         -if [ -f libobjc.a ] ; then \
1730           rm -f $(libsubdir)/libobjc.a; \
1731           $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
1732           if $(RANLIB_TEST) ; then \
1733             (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
1734           chmod a-x $(libsubdir)/libobjc.a; \
1735         else true; fi
1736
1737 # Install all the header files built in the include subdirectory.
1738 install-headers: install-include-dir $(INSTALL_HEADERS_DIR) install-assert-h
1739 # Fix symlinks to absolute paths in the installed include directory to
1740 # point to the installed directory, not the build directory.
1741         -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
1742         if [ $$? -eq 0 ]; then \
1743           dir=`cd include; pwd`; \
1744           for i in $$files; do \
1745             dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
1746             if expr "$$dest" : "$$dir.*" > /dev/null; then \
1747               rm -f $(libsubdir)/include/$$i; \
1748               ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
1749             fi; \
1750           done; \
1751         fi
1752
1753 # Create or recreate the gcc private include file directory.
1754 install-include-dir: install-dir
1755         -rm -rf $(libsubdir)/include
1756         mkdir $(libsubdir)/include
1757         -chmod a+rx $(libsubdir)/include
1758
1759 # Install the include directory using tar.
1760 install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
1761         cd include; \
1762          (tar cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - )
1763 # /bin/sh on some systems returns the status of the first tar,
1764 # and that can lose with GNU tar which always writes a full block.
1765 # So use `exit 0' to ignore its exit status.
1766
1767 # Install the include directory using cpio.
1768 install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
1769         cd include; find . -print | cpio -pdum $(libsubdir)/include
1770
1771 # Put assert.h where it won't override GNU libc's assert.h.
1772 # It goes in a dir that is searched after GNU libc's headers;
1773 # thus, the following conditionals are no longer needed.
1774 # But it's not worth deleting them now.
1775 ## Don't replace the assert.h already there if it is not from GCC.
1776 ## This code would be simpler if it tested for -f ... && ! grep ...
1777 ## but supposedly the ! operator is missing in sh on some systems.
1778 install-assert-h: assert.h install-dir
1779         if [ -f $(assertdir)/assert.h ]; \
1780         then \
1781           if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
1782             then \
1783             rm -f $(assertdir)/assert.h; \
1784             $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
1785             chmod a-x $(assertdir)/assert.h; \
1786           else true; \
1787           fi; \
1788         else \
1789           rm -f $(assertdir)/assert.h; \
1790           $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
1791           chmod a-x $(assertdir)/assert.h; \
1792         fi
1793
1794 # Use this target to install the program `collect2' under the name `ld'.
1795 install-collect2: collect2
1796         $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
1797 # Install the driver program as $(libsubdir)/gcc for collect2.
1798         $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
1799
1800 # Cancel installation by deleting the installed files.
1801 uninstall:
1802         -rm -rf $(libsubdir)
1803         -rm -rf $(bindir)/gcc
1804         -rm -rf $(bindir)/protoize
1805         -rm -rf $(bindir)/unprotoize
1806         -rm -rf $(mandir)/gcc$(manext)
1807         -rm -rf $(mandir)/g++$(manext)
1808         -rm -rf $(mandir)/cccp$(manext)
1809         -rm -rf $(mandir)/protoize$(manext)
1810         -rm -rf $(mandir)/unprotoize$(manext)
1811 \f
1812 # These exist for maintenance purposes.
1813
1814 # Update the tags table.
1815 TAGS: force
1816         cd $(srcdir);                                                   \
1817         mkdir temp;                                                     \
1818         mv -f c-parse.[ch] cp-parse.[ch] objc-parse.c cexp.c =*.[chy] temp; \
1819         etags *.y *.h *.c;                                              \
1820         mv temp/* .;                                                    \
1821         rmdir temp
1822
1823 # Create the distribution tar file.
1824 #dist: gcc-$(version).tar.gz
1825 dist: gcc.xtar.gz
1826
1827 gcc.xtar.gz: gcc.xtar
1828         gzip < gcc.xtar > tmp-gcc.xtar.gz
1829         mv tmp-gcc.xtar.gz gcc.xtar.gz
1830
1831 #gcc-$(version).tar.gz: gcc-$(version).tar
1832 #       gzip < gcc-$(version).tar > gcc-$(version).tar.gz
1833
1834 #gcc-$(version).tar:
1835 gcc.xtar: distdir
1836 # Make the distribution.
1837         tar chf gcc.xtar gcc-$(version)
1838
1839 distdir: doc $(srcdir)/INSTALL c-parse.y objc-parse.y cp-parse.y \
1840   c-parse.c cp-parse.c objc-parse.c cexp.c
1841         if grep -s "for version ${version}" gcc.texi; \
1842         then true; \
1843         else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
1844         fi
1845 # Update the version number in README
1846         awk '$$1 " " $$2 " " $$3 == "This directory contains" \
1847                 { $$6 = version; print $$0 } \
1848              $$1 " " $$2 " " $$3 != "This directory contains"' \
1849           version=$(version) README > tmp.README
1850         mv tmp.README README
1851         -rm -rf gcc-$(version) tmp      
1852 # Put all the files in a temporary subdirectory
1853 # which has the name that we want to have in the tar file.
1854         mkdir tmp
1855         mkdir tmp/config
1856         mkdir tmp/objc
1857         for file in *[0-9a-zA-Z+]; do \
1858           ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
1859         done
1860         cd config; \
1861         for file in *[0-9a-zA-Z+]; do \
1862           if test -d $$file && test "$$file" != RCS; then \
1863             mkdir ../tmp/config/$$file; \
1864             cd $$file; \
1865             for subfile in *[0-9a-zA-Z+]; do \
1866               ln $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
1867               || cp $$subfile ../../tmp/config/$$file; \
1868             done; \
1869             cd ..; \
1870           else \
1871             ln $$file ../tmp/config >/dev/null 2>&1 \
1872             || cp $$file ../tmp/config; \
1873           fi; \
1874         done
1875         cd objc; \
1876         for file in *[0-9a-zA-Z+]; do \
1877           ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
1878         done
1879         ln .gdbinit tmp
1880         mv tmp gcc-$(version)
1881 # Get rid of everything we don't want in the distribution.
1882         cd gcc-$(version); make -f Makefile.in extraclean
1883
1884 # do make -f ../gcc/Makefile maketest DIR=../gcc
1885 # in the intended test directory to make it a suitable test directory.
1886 # THIS IS OBSOLETE; use the -srcdir operand in configure instead. 
1887 maketest:
1888         ln -s $(DIR)/*.[chy] .
1889         ln -s $(DIR)/configure .
1890         ln -s $(DIR)/*.def .
1891         -rm -f =*
1892         ln -s $(DIR)/.gdbinit .
1893         ln -s $(DIR)/$(FIXINCLUDES) .
1894         -ln -s $(DIR)/bison.simple .
1895         ln -s $(DIR)/config .
1896         ln -s $(DIR)/move-if-change .
1897 # The then and else were swapped to avoid a problem on Ultrix.
1898         if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile .; else false; fi
1899         -rm tm.h aux-output.c config.h md
1900         make clean
1901 # You must then run config to set up for compilation.
1902
1903 bootstrap: force
1904 # Only build the C compiler for stage1, because that is the only one that
1905 # we can guarantee will build with the native compiler, and also it is the
1906 # only thing useful for building stage2.
1907         $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES=c
1908         $(MAKE) stage1
1909 # This used to define ALLOCA as empty, but that would lead to bad results
1910 # for a subsequent `make install' since that would not have ALLOCA empty.
1911 # To prevent `make install' from compiling alloca.o and then relinking cc1
1912 # because alloca.o is newer, we permit these recursive makes to compile
1913 # alloca.o.  Then cc1 is newer, so it won't have to be relinked.
1914         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1915         $(MAKE) stage2
1916         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1917
1918 bootstrap2: force
1919         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1920         $(MAKE) stage2
1921         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1922
1923 bootstrap3: force
1924         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1925
1926 # Compare the object files in the current directory with those in the
1927 # stage2 directory.
1928
1929 # ./ avoids bug in some versions of tail.
1930 compare: force
1931         for file in *.o; do \
1932           tail +16c ./$$file > tmp-foo1; \
1933           tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
1934             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
1935         done
1936         -rm -f tmp-foo*
1937
1938 # Similar, but compare with stage3 directory
1939 compare3: force
1940         for file in *.o; do \
1941           tail +16c $$file > tmp-foo1; \
1942           tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
1943             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
1944         done
1945         -rm -f tmp-foo*
1946
1947 # Copy the object files from a particular stage into a subdirectory.
1948 stage1: force
1949         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
1950         -mv $(STAGESTUFF) stage1
1951         -rm -f stage1/libgcc.a
1952         -cp libgcc.a stage1
1953         -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
1954
1955 stage2: force
1956         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
1957         -mv $(STAGESTUFF) stage2
1958         -rm -f stage2/libgcc.a
1959         -cp libgcc.a stage2
1960         -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
1961
1962 stage3: force
1963         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
1964         -mv $(STAGESTUFF) stage3
1965         -rm -f stage3/libgcc.a
1966         -cp libgcc.a stage3
1967         -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
1968
1969 stage4: force
1970         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
1971         -mv $(STAGESTUFF) stage4
1972         -rm -f stage4/libgcc.a
1973         -cp libgcc.a stage4
1974         -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
1975
1976 # Copy just the executable files from a particular stage into a subdirectory,
1977 # and delete the object files.  Use this if you're just verifying a version
1978 # that is pretty sure to work, and you are short of disk space.
1979 risky-stage1: force
1980         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
1981         -mv $(GCC_PARTS) stage1
1982         -rm -f stage1/libgcc.a
1983         -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
1984         -make clean
1985
1986 risky-stage2: force
1987         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
1988         -mv $(GCC_PARTS) stage2
1989         -rm -f stage2/libgcc.a
1990         -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
1991         -make clean
1992
1993 risky-stage3: force
1994         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
1995         -mv $(GCC_PARTS) stage3
1996         -rm -f stage3/libgcc.a
1997         -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
1998         -make clean
1999
2000 risky-stage4: force
2001         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
2002         -mv $(GCC_PARTS) stage4
2003         -rm -f stage4/libgcc.a
2004         -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
2005         -make clean
2006
2007 #In GNU Make, ignore whether `stage*' exists.
2008 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
2009 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
2010
2011 force: