OSDN Git Service

Add fixproto support.
[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 \
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-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 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 $(EXTRA_PARTS)
475 # This is what must be made before installing GCC and converting libraries.
476 start.encap: native xgcc 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 # We do want to create an executable named `xgcc', so we can use it to
530 # compile libgcc2.a.
531 # Also create gcc-cross, so that install-common will install properly.
532 gcc-cross: xgcc
533         cp xgcc gcc-cross
534
535 cc1:$(P) $(C_OBJS) $(OBJS) $(LIBDEPS)
536         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1 $(C_OBJS) $(OBJS) $(LIBS)
537
538 cc1plus:$(P) $(CPLUS_OBJS) $(OBJS) $(LIBDEPS)
539         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1plus $(CPLUS_OBJS) $(OBJS) $(LIBS)
540
541 cc1obj:$(P) $(OBJC_OBJS) $(OBJS) $(LIBDEPS)
542         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cc1obj $(OBJC_OBJS) $(OBJS) $(LIBS)
543
544 # Copy float.h from its source.
545 gfloat.h: $(FLOAT_H)
546         cp $(FLOAT_H) gfloat.h
547
548 # Create float.h source for the native machine.
549 float.h-nat: enquire
550         -./enquire -f > tmp-float.h
551         mv tmp-float.h float.h-nat
552
553 # Create a dummy float.h source for a cross-compiler.
554 float.h-cross:
555         echo "#error float.h values not known for cross-compiler" > float.h-cross
556
557 # Used to compile enquire with standard cc, but have forgotten why.
558 # Let's try with GCC.
559 enquire: enquire.o $(GCC_PARTS)
560         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ENQUIRE_LDFLAGS) enquire.o -o $@
561 enquire.o: $(srcdir)/enquire.c $(GCC_PASSES)
562 #       -if [ "$(srcdir)" != "." ]; then rm -f ./enquire.c; else true; fi
563 #       -cp $(srcdir)/enquire.c . > /dev/null 2>&1
564 # Breaking this line caused a problem with one version of GNU make.
565         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(ENQUIRE_CFLAGS) -I. -c $(srcdir)/enquire.c
566
567 # Build the version of limits.h that we will install.
568 xlimits.h: glimits.h limitx.h limity.h
569         if [ -f $(SYSTEM_HEADER_DIR)/limits.h ] ; then \
570           cat $(srcdir)/limitx.h $(srcdir)/glimits.h $(srcdir)/limity.h > xlimits.h; \
571         else \
572           cat $(srcdir)/glimits.h > xlimits.h; \
573         fi
574 \f
575 # Build libgcc.a.
576 # This is done in two parts because some functions, in libgcc1.c,
577 # must be compiled with something other than GCC,
578 # while the rest, in libgcc2.c, must be compiled with xgcc.
579 # That means we can't do libgcc2.c until after xgcc, cc1, etc.
580
581 # Use this as value of LIBGCC1 to cause conversion to GNU library format.
582 # LIBCONVERT should put its output in libgcc1.conv.
583 libgcc1.conv: libgcc1.a
584         $(LIBCONVERT) libgcc1.a libgcc1.conv
585
586 # Use this as value of LIBGCC1 to inhibit use of libgcc1.c entirely.
587 # Make an empty file instead.
588 libgcc1.null: $(GCC_PASSES)
589         echo "__foo () {}" > dummy.c
590         $(GCC_FOR_TARGET) $(GCC_CFLAGS) -c dummy.c
591         $(OLDAR) $(OLDAR_FLAGS) libgcc1.null dummy.o
592         rm -f dummy.o dummy.c
593
594 # This is $(LIBGCC1) for a cross-compiler.
595 # We have no automatic way of building libgcc1.a, 
596 # so it's up to the installer to find a way to do that.
597 # This rule deliberately does not depend on libgcc1.a
598 # so that it will fail if the installer hasn't provided it.
599 libgcc1.cross:
600         mv libgcc1.a libgcc1.cross || (echo You must find a way to make libgcc1.a; false)
601
602 # Compile the library of arithmetic subroutines with the native compiler.
603 # Don't compile it with GCC!
604 # (That would cause most arithmetic functions to call themselves.)
605 libgcc1.a: libgcc1.c $(CONFIG_H) $(LIB1FUNCS_EXTRA) config.status
606         -rm -f tmplibgcc1.a
607 # Actually build it in tmplibgcc1.a, then rename at end,
608 # so that libgcc1.a itself remains nonexistent if compilation is aborted.
609 # -e causes any failing command to make this rule fail.
610 # -e doesn't work in certain shells, so we test $$? as well.
611         set -e; \
612         for name in $(LIB1FUNCS); \
613         do \
614           echo $${name}; \
615           rm -f $${name}.o; \
616           $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c -DL$${name} $(srcdir)/libgcc1.c; \
617           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
618           mv libgcc1.o $${name}.o; \
619           $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
620           rm -f $${name}.o; \
621         done
622 # Some shells crash when a loop has no items.
623 # So make sure there is always at least one--`..'.
624 # Then ignore it.
625 # We don't use -e here because there are if statements
626 # that should not make the command give up when the if condition is false.
627 # Instead, we test for failure after each command where it matters.
628         -for file in .. $(LIB1FUNCS_EXTRA); \
629         do \
630           if [ x$${file} != x.. ]; then \
631             name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
632             echo $${name}; \
633             if [ $${name}.asm = $${file} ]; then \
634               cp $${file} $${name}.s || exit 1; file=$${name}.s; \
635             else true; fi; \
636             $(OLDCC) $(CCLIBFLAGS) $(INCLUDES) -c $${file}; \
637             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
638             $(OLDAR) $(OLDAR_FLAGS) tmplibgcc1.a $${name}.o; \
639             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
640             rm -f $${name}.[so]; \
641           else true; \
642           fi; \
643         done
644         mv tmplibgcc1.a libgcc1.a
645
646 # Compiling libgcc2.a requires making sure that cc1, etc. have been compiled.
647 # But recompiling cc1 should not force recompilation of libgcc2.a.
648 # If you want to force recompilation, delete libgcc2.a.
649 libgcc2.ready: $(GCC_PASSES) $(LIBGCC2_DEPS)
650         -if [ -f libgcc2.ready ] ; then \
651                 true; \
652         else \
653                 touch libgcc2.ready; \
654         fi
655
656 libgcc2.a: libgcc2.c libgcc2.ready $(CONFIG_H) $(LIB2FUNCS_EXTRA) \
657    machmode.h longlong.h gbl-ctors.h config.status
658 # Actually build it in tmplibgcc2.a, then rename at end,
659 # so that libgcc2.a itself remains nonexistent if compilation is aborted.
660         -rm -f tmplibgcc2.a
661 # -e causes any failing command to make this rule fail.
662 # -e doesn't work in certain shells, so we test $$? as well.
663         set -e; \
664         for name in $(LIB2FUNCS); \
665         do \
666           echo $${name}; \
667           $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c -DL$${name} \
668               $(srcdir)/libgcc2.c -o $${name}.o; \
669           if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
670           $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
671           rm -f $${name}.o; \
672         done
673 # Some shells crash when a loop has no items.
674 # So make sure there is always at least one--`..'.
675 # Then ignore it.
676 # We don't use -e here because there are if statements
677 # that should not make the command give up when the if condition is false.
678 # Instead, we test for failure after each command where it matters.
679         -for file in .. $(LIB2FUNCS_EXTRA); \
680         do \
681           if [ x$${file} != x.. ]; then \
682             name=`echo $${file} | sed -e 's/[.]c$$//' -e 's/[.]asm$$//'`; \
683             echo $${name}; \
684             if [ $${name}.asm = $${file} ]; then \
685               cp $${file} $${name}.s || exit 1; file=$${name}.s; \
686             else true; fi; \
687             $(GCC_FOR_TARGET) $(LIBGCC2_CFLAGS) $(INCLUDES) -c $${file}; \
688             if [ $$? -eq 0 ] ; then true; else exit 1; fi; \
689             $(AR) $(AR_FLAGS) tmplibgcc2.a $${name}.o; \
690             rm -f $${name}.[so]; \
691           else true; \
692           fi; \
693         done
694         mv tmplibgcc2.a libgcc2.a
695 # These lines were deleted from above the mv command
696 # because ranlibing libgcc.a itself should suffice.
697 #       -if [ x${HPUX_GAS} = x ] ; then \
698 #         if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc2.a; else true; fi \
699 #       else true; fi
700
701 # Combine the various libraries into a single library, libgcc.a.
702 libgcc.a: $(LIBGCC1) $(LIBGCC2)
703         -rm -rf tmplibgcc.a libgcc.a tmpcopy
704         mkdir tmpcopy
705         -if [ x$(LIBGCC1) != x ];                       \
706         then (cd tmpcopy; $(AR) x ../$(LIBGCC1));       \
707         else true;                                      \
708         fi
709         (cd tmpcopy; $(AR) x ../$(LIBGCC2))
710         (cd tmpcopy; $(AR) $(AR_FLAGS) ../tmplibgcc.a *.o)
711         rm -rf tmpcopy
712         -if $(RANLIB_TEST) ; then $(RANLIB) tmplibgcc.a; else true; fi
713 # Actually build it in tmplibgcc.a, then rename at end,
714 # so that libgcc.a itself remains nonexistent if compilation is aborted.
715         mv tmplibgcc.a libgcc.a
716
717 objc-runtime: libobjc.a
718
719 # Build the Objective C runtime library.
720 libobjc.a: cc1obj libgcc2.ready $(USE_COLLECT2) $(EXTRA_PARTS)
721         if [ -d objc ]; then true; else mkdir objc; fi
722         thisdir1=`pwd`; \
723         srcdir1=`cd $(srcdir); pwd`; \
724         cd objc; \
725         $(MAKE) -f $${srcdir1}/objc/Makefile libobjc.a \
726           srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
727           GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
728           GCC_CFLAGS="$(GCC_CFLAGS)"
729         -rm -f libobjc.a
730         ln objc/libobjc.a . >/dev/null 2>&1 || cp objc/libobjc.a .
731         -if $(RANLIB_TEST) ; then $(RANLIB) libobjc.a; else true; fi
732
733 # This is used by objc/Makefile if the user runs that directly.
734 sublibobjc.a: cc1obj libgcc2.ready
735         thisdir1=`pwd`; \
736         srcdir1=`cd $(srcdir); pwd`; \
737         cd objc; \
738         $(MAKE) -f $$srcdir1/objc/Makefile libobjc.a \
739           srcdir=$$srcdir1 tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
740           GCC_FOR_TARGET="$$thisdir1/xgcc -B$$thisdir1/" \
741           GCC_CFLAGS="$(GCC_CFLAGS)"
742
743 # Compile two additional files that are linked with every program
744 # linked using GCC on system V, for the sake of C++ constructors.
745 crtbegin.o:     crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
746         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_BEGIN \
747           -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtbegin.o
748
749 crtend.o:       crtstuff.c $(GCC_PASSES) $(CONFIG_H) gbl-ctors.h
750         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(INCLUDES) -DCRT_END \
751           -finhibit-size-directive -g0 -c $(srcdir)/crtstuff.c -o crtend.o
752 \f
753 # Compiling object files from source files.
754
755 # Note that dependencies on obstack.h are not written
756 # because that file is not part of GCC.
757 # Dependencies on gvarargs.h are not written
758 # because all that file does, when not compiling with GCC,
759 # is include the system varargs.h.
760
761 # C language specific files.
762
763 c-parse.o : $(srcdir)/c-parse.c $(CONFIG_H) $(TREE_H) c-lex.h c-parse.h \
764     c-tree.h input.h flags.h
765         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/c-parse.c
766 $(srcdir)/c-parse.c $(srcdir)/c-parse.h: $(srcdir)/c-parse.y
767         cd $(srcdir); $(BISON) $(BISONFLAGS) -d c-parse.y -o c-parse.c
768 $(srcdir)/c-parse.y: $(srcdir)/c-parse.in
769         sed -e "/^ifobjc$$/,/^end ifobjc$$/d" \
770           -e "/^ifc$$/d" -e "/^end ifc$$/d" \
771           $(srcdir)/c-parse.in > $(srcdir)/c-parse.y
772
773 c-decl.o : c-decl.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
774 c-typeck.o : c-typeck.c $(CONFIG_H) $(TREE_H) c-tree.h flags.h
775 c-lang.o : c-lang.c $(CONFIG_H) $(TREE_H)
776 c-lex.o : c-lex.c $(CONFIG_H) $(TREE_H) c-lex.h c-tree.h c-parse.h \
777     input.h flags.h
778 c-aux-info.o : c-aux-info.c  $(CONFIG_H) $(TREE_H) c-tree.h flags.h
779 c-convert.o : c-convert.c $(CONFIG_H) $(TREE_H) flags.h
780 c-pragma.o: c-pragma.c $(CONFIG_H) $(TREE_H)
781 c-iterate.o: c-iterate.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h flags.h
782
783 # C++ language specific files.
784
785 cp-parse.o : $(srcdir)/cp-parse.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h cp-lex.h
786         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
787   `echo $(srcdir)/cp-parse.c | sed 's,^\./,,'`
788
789 $(srcdir)/cp-parse.c $(srcdir)/cp-parse.h : $(srcdir)/cp-parse.y
790         @echo expect 29 shift/reduce conflicts and 13 reduce/reduce conflicts
791         cd $(srcdir); $(BISON) $(BISONFLAGS) -d -o cp-parse.c cp-parse.y
792         cd $(srcdir); grep '^#define[   ]*YYEMPTY' cp-parse.c >>cp-parse.h
793
794 cp-spew.o : cp-spew.c $(CONFIG_H) $(CPLUS_TREE_H) \
795    $(srcdir)/cp-parse.h flags.h cp-lex.h
796 cp-lex.o : cp-lex.c $(CONFIG_H) $(CPLUS_TREE_H) \
797    $(srcdir)/cp-parse.h $(srcdir)/cp-input.c flags.h cp-hash.h cp-lex.h
798 cp-decl.o : cp-decl.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
799   cp-lex.h cp-decl.h stack.h
800 cp-decl2.o : cp-decl2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h \
801   cp-lex.h cp-decl.h
802 cp-type2.o : cp-type2.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
803 cp-typeck.o : cp-typeck.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
804 cp-class.o : cp-class.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
805 cp-call.o : cp-call.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
806 cp-init.o : cp-init.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
807 cp-method.o : cp-method.c $(CONFIG_H) $(CPLUS_TREE_H)
808 cp-cvt.o : cp-cvt.c $(CONFIG_H) $(CPLUS_TREE_H)
809 cp-search.o : cp-search.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
810 cp-tree.o : cp-tree.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
811 cp-ptree.o : cp-ptree.c $(CONFIG_H) $(CPLUS_TREE_H)
812 cp-gc.o : cp-gc.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h
813 cp-except.o : cp-except.c $(CONFIG_H) $(CPLUS_TREE_H) flags.h $(RTL_H)
814 cp-expr.o : cp-expr.c $(CONFIG_H) $(CPLUS_TREE_H) $(RTL_H) flags.h \
815   expr.h insn-codes.h
816 cp-edsel.o : cp-edsel.c $(CONFIG_H) $(CPLUS_TREE_H) stack.h flags.h
817 cp-xref.o : cp-xref.c $(CONFIG_H) $(CPLUS_TREE_H) input.h
818 cp-pt.o : cp-pt.c $(CONFIG_H) $(CPLUS_TREE_H) cp-decl.h cp-parse.h
819
820 # To make a configuration always use collect2, set USE_COLLECT2 to ld.
821 ld: collect2
822         rm -f ld
823         ln collect2 ld
824
825 collect2 : collect2.o version.o $(LIBDEPS)
826 # Don't try modifying collect2 (aka ld) in place--it might be linking this.
827         -rm -f collect2
828         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o collect2 collect2.o version.o $(LIBS)
829
830 collect2.o : collect2.c $(CONFIG_H) gstab.h
831         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES)  \
832         -DTARGET_MACHINE=\"$(target)\" \
833         -c `echo $(srcdir)/collect2.c | sed 's,^\./,,'`
834
835 # Objective C language specific files.
836
837 objc-parse.o : $(srcdir)/objc-parse.c $(CONFIG_H) $(TREE_H) c-lex.h \
838    c-tree.h input.h flags.h objc-act.h
839         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/objc-parse.c
840 $(srcdir)/objc-parse.c : $(srcdir)/objc-parse.y
841         cd $(srcdir); $(BISON) $(BISONFLAGS) objc-parse.y -o objc-parse.c
842 $(srcdir)/objc-parse.y: $(srcdir)/c-parse.in
843         sed -e "/^ifc$$/,/^end ifc$$/d" \
844           -e "/^ifobjc$$/d" -e "/^end ifobjc$$/d" \
845           $(srcdir)/c-parse.in > $(srcdir)/objc-parse.y
846
847 objc-act.o : objc-act.c $(CONFIG_H) $(TREE_H) $(RTL_H) c-tree.h c-lex.h \
848    flags.h objc-act.h input.h function.h $(srcdir)/c-parse.h
849
850 # A file used by all variants of C.
851
852 c-common.o : c-common.c $(CONFIG_H) $(TREE_H) c-tree.h c-lex.h flags.h
853
854 # Language-independent files.
855
856 gcc.o: gcc.c $(CONFIG_H) gvarargs.h config.status
857         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
858   -DSTANDARD_STARTFILE_PREFIX=\"$(libdir)/\" \
859   -DSTANDARD_EXEC_PREFIX=\"$(libdir)/gcc-lib/\" \
860   -DDEFAULT_TARGET_MACHINE=\"$(target)\" \
861   -DTOOLDIR_BASE_PREFIX=\"$(exec_prefix)/\" \
862   -DTOOLDIR=\"$(tooldir)/\" \
863   $(MAYBE_TARGET_DEFAULT) \
864   -c `echo $(srcdir)/gcc.c | sed 's,^\./,,'`
865
866 dumpvers: dumpvers.c
867
868 version.o: version.c
869 obstack.o: obstack.c
870
871 convert.o: convert.c $(CONFIG_H) $(TREE_H) flags.h convert.h
872
873 tree.o : tree.c $(CONFIG_H) $(TREE_H) gvarargs.h flags.h function.h
874 print-tree.o : print-tree.c $(CONFIG_H) $(TREE_H)
875 stor-layout.o : stor-layout.c $(CONFIG_H) $(TREE_H) function.h
876 fold-const.o : fold-const.c $(CONFIG_H) $(TREE_H) flags.h 
877 toplev.o : toplev.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h input.h \
878    insn-attr.h xcoffout.h defaults.h
879         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
880           $(MAYBE_TARGET_DEFAULT) $(MAYBE_USE_COLLECT2) \
881           -c `echo $(srcdir)/toplev.c | sed 's,^\./,,'`
882
883 rtl.o : rtl.c $(CONFIG_H) $(RTL_H)
884
885 print-rtl.o : print-rtl.c $(CONFIG_H) $(RTL_H)
886 rtlanal.o : rtlanal.c $(CONFIG_H) $(RTL_H)
887
888 varasm.o : varasm.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h function.h \
889    defaults.h insn-codes.h expr.h hard-reg-set.h regs.h xcoffout.h
890 function.o : function.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
891    insn-flags.h insn-codes.h expr.h regs.h hard-reg-set.h insn-config.h \
892    recog.h output.h
893 stmt.o : stmt.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
894    insn-flags.h insn-config.h insn-codes.h hard-reg-set.h expr.h loop.h recog.h
895 expr.o : expr.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h function.h  \
896    insn-flags.h insn-codes.h expr.h insn-config.h recog.h output.h typeclass.h
897 calls.o : calls.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h expr.h insn-codes.h \
898    insn-flags.h gvarargs.h 
899 expmed.o : expmed.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
900    insn-flags.h insn-config.h insn-codes.h expr.h recog.h real.h
901 explow.o : explow.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h hard-reg-set.h \
902    insn-config.h expr.h recog.h insn-flags.h insn-codes.h
903 optabs.o : optabs.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h  \
904    insn-flags.h insn-config.h insn-codes.h expr.h recog.h reload.h
905 dbxout.o : dbxout.c $(CONFIG_H) $(TREE_H) $(RTL_H) flags.h regs.h \
906    insn-config.h reload.h gstab.h xcoffout.h defaults.h output.h
907 sdbout.o : sdbout.c $(CONFIG_H) $(TREE_H) $(RTL_H) gsyms.h flags.h \
908    insn-config.h reload.h
909 dwarfout.o : dwarfout.c $(CONFIG_H) $(TREE_H) $(RTL_H) dwarf.h flags.h \
910    insn-config.h reload.h output.h defaults.h
911 xcoffout.o : xcoffout.c $(CONFIG_H) $(TREE_H) $(RTL_H) xcoffout.h flags.h
912 emit-rtl.o : emit-rtl.c $(CONFIG_H) $(RTL_H) flags.h gvarargs.h function.h  \
913    regs.h insn-config.h insn-codes.h real.h expr.h
914 real.o : real.c $(CONFIG_H) $(TREE_H)
915 getpwd.o : getpwd.c $(CONFIG_H)
916
917 integrate.o : integrate.c $(CONFIG_H) $(RTL_H) $(TREE_H) flags.h integrate.h \
918    insn-flags.h insn-config.h insn-codes.h expr.h real.h function.h
919
920 jump.o : jump.c $(CONFIG_H) $(RTL_H) flags.h hard-reg-set.h regs.h \
921    insn-config.h insn-flags.h insn-codes.h expr.h real.h
922 stupid.o : stupid.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h
923
924 cse.o : cse.c $(CONFIG_H) $(RTL_H) regs.h hard-reg-set.h flags.h real.h \
925    insn-config.h recog.h
926 loop.o : loop.c $(CONFIG_H) $(RTL_H) flags.h loop.h insn-config.h \
927    insn-flags.h insn-codes.h regs.h hard-reg-set.h recog.h expr.h real.h
928 unroll.o : unroll.c $(CONFIG_H) $(RTL_H) insn-config.h insn-codes.h \
929    integrate.h regs.h flags.h expr.h loop.h
930 flow.o : flow.c $(CONFIG_H) $(RTL_H) flags.h insn-config.h \
931    basic-block.h regs.h hard-reg-set.h output.h
932 combine.o : combine.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h  \
933    insn-config.h insn-flags.h insn-codes.h insn-attr.h regs.h expr.h \
934    basic-block.h recog.h real.h hard-reg-set.h
935 regclass.o : regclass.c $(CONFIG_H) $(RTL_H) hard-reg-set.h flags.h \
936    basic-block.h regs.h insn-config.h recog.h reload.h real.h
937 local-alloc.o : local-alloc.c $(CONFIG_H) $(RTL_H) flags.h basic-block.h \
938    regs.h hard-reg-set.h insn-config.h recog.h output.h
939 global.o : global.c $(CONFIG_H) $(RTL_H) flags.h  \
940    basic-block.h regs.h hard-reg-set.h insn-config.h output.h
941
942 reload.o : reload.c $(CONFIG_H) $(RTL_H) flags.h \
943    reload.h recog.h hard-reg-set.h insn-config.h insn-codes.h regs.h real.h
944 reload1.o : reload1.c $(CONFIG_H) $(RTL_H) flags.h expr.h \
945    reload.h regs.h hard-reg-set.h insn-config.h insn-flags.h insn-codes.h \
946    basic-block.h recog.h output.h
947 caller-save.o : caller-save.c $(CONFIG_H) $(RTL_H) flags.h \
948    regs.h hard-reg-set.h insn-config.h basic-block.h recog.h reload.h expr.h
949 reorg.o : reorg.c $(CONFIG_H) $(RTL_H) conditions.h hard-reg-set.h \
950    basic-block.h regs.h insn-config.h insn-attr.h insn-flags.h recog.h \
951    flags.h output.h
952 sched.o : sched.c $(CONFIG_H) $(RTL_H) basic-block.h regs.h hard-reg-set.h \
953    flags.h insn-config.h insn-attr.h
954 final.o : final.c $(CONFIG_H) $(RTL_H) gvarargs.h flags.h regs.h \
955    recog.h conditions.h insn-config.h insn-attr.h real.h output.h \
956    hard-reg-set.h insn-flags.h insn-codes.h gstab.h xcoffout.h defaults.h
957 recog.o : recog.c $(CONFIG_H) $(RTL_H)  \
958    regs.h recog.h hard-reg-set.h flags.h insn-config.h insn-attr.h \
959    insn-flags.h insn-codes.h real.h
960 reg-stack.o : reg-stack.c $(CONFIG_H) $(RTL_H) $(TREE_H) \
961    regs.h hard-reg-set.h flags.h insn-config.h
962
963 aux-output.o : aux-output.c $(CONFIG_H) \
964    $(RTL_H) regs.h hard-reg-set.h real.h insn-config.h conditions.h \
965    insn-flags.h output.h insn-attr.h insn-codes.h
966
967 # Normally this target is not used; but it is used if you
968 # define ALLOCA=alloca.o.  In that case, you must get a suitable alloca.c
969 # from the GNU Emacs distribution.
970 alloca.o:       alloca.c
971         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(ALLOCA_FLAGS) \
972           -c `echo $(srcdir)/alloca.c | sed 's,^\./,,'`
973         $(ALLOCA_FINISH)
974 \f
975 # Generate header and source files from the machine description, 
976 # and compile them.
977
978 .PRECIOUS: insn-config.h insn-flags.h insn-codes.h \
979   insn-emit.c insn-recog.c insn-extract.c insn-output.c insn-peep.c \
980   insn-attr.h insn-attrtab.c
981
982 # The following pair of rules has this effect:
983 # genconfig is run only if the md has changed since genconfig was last run;
984 # but the file insn-config.h is touched only when its contents actually change.
985
986 # Each of the other insn-* files is handled by a similar pair of rules.
987
988 # This causes an anomaly in the results of make -n
989 # because insn-* is older than stamp-*
990 # and thus make -n thinks that insn-* will be updated
991 # and force recompilation of things that depend on it.
992 # We use move-if-change precisely to avoid such recompilation.
993 # But there is no way to teach make -n that it will be avoided.
994
995 # Each of the insn-*.[ch] rules has a semicolon at the end,
996 # for otherwise the system Make on SunOS 4.1 never tries
997 # to recompile insn-*.o.  To avoid problems and extra noise from
998 # versions of make which don't like empty commands (nothing after the
999 # trailing `;'), we call true for each.
1000
1001 insn-config.h: stamp-config ; @true
1002 stamp-config : md genconfig $(srcdir)/move-if-change
1003         ./genconfig md > tmp-config.h
1004         $(srcdir)/move-if-change tmp-config.h insn-config.h
1005         touch stamp-config
1006
1007 insn-flags.h: stamp-flags ; @true
1008 stamp-flags : md genflags $(srcdir)/move-if-change
1009         ./genflags md > tmp-flags.h
1010         $(srcdir)/move-if-change tmp-flags.h insn-flags.h
1011         touch stamp-flags
1012
1013 insn-codes.h: stamp-codes ; @true
1014 stamp-codes : md gencodes $(srcdir)/move-if-change
1015         ./gencodes md > tmp-codes.h
1016         $(srcdir)/move-if-change tmp-codes.h insn-codes.h
1017         touch stamp-codes
1018
1019 insn-emit.o : insn-emit.c $(CONFIG_H) $(RTL_H) expr.h real.h output.h \
1020   insn-config.h insn-flags.h insn-codes.h
1021         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-emit.c
1022
1023 insn-emit.c: stamp-emit ; @true
1024 stamp-emit : md genemit $(srcdir)/move-if-change
1025         ./genemit md > tmp-emit.c
1026         $(srcdir)/move-if-change tmp-emit.c insn-emit.c
1027         touch stamp-emit
1028
1029 insn-recog.o : insn-recog.c $(CONFIG_H) $(RTL_H) insn-config.h recog.h \
1030   real.h output.h flags.h
1031         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-recog.c
1032
1033 insn-recog.c: stamp-recog ; @true
1034 stamp-recog : md genrecog $(srcdir)/move-if-change
1035         ./genrecog md > tmp-recog.c
1036         $(srcdir)/move-if-change tmp-recog.c insn-recog.c
1037         touch stamp-recog
1038
1039 insn-opinit.o : insn-opinit.c $(CONFIG_H) $(RTL_H) insn-codes.h insn-flags.h \
1040   insn-config.h flags.h rtl.h recog.h expr.h reload.h
1041         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-opinit.c
1042
1043 insn-opinit.c: stamp-opinit ; @true
1044 stamp-opinit : md genopinit $(srcdir)/move-if-change
1045         ./genopinit md > tmp-opinit.c
1046         $(srcdir)/move-if-change tmp-opinit.c insn-opinit.c
1047         touch stamp-opinit
1048
1049 insn-extract.o : insn-extract.c $(CONFIG_H) $(RTL_H)
1050         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-extract.c
1051
1052 insn-extract.c: stamp-extract ; @true
1053 stamp-extract : md genextract $(srcdir)/move-if-change
1054         ./genextract md > tmp-extract.c
1055         $(srcdir)/move-if-change tmp-extract.c insn-extract.c
1056         touch stamp-extract
1057
1058 insn-peep.o : insn-peep.c $(CONFIG_H) $(RTL_H) regs.h output.h real.h
1059         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-peep.c
1060
1061 insn-peep.c: stamp-peep ; @true
1062 stamp-peep : md genpeep $(srcdir)/move-if-change
1063         ./genpeep md > tmp-peep.c
1064         $(srcdir)/move-if-change tmp-peep.c insn-peep.c
1065         touch stamp-peep
1066
1067 insn-attrtab.o : insn-attrtab.c $(CONFIG_H) $(RTL_H) regs.h real.h output.h \
1068      insn-attr.h insn-config.h
1069         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-attrtab.c
1070
1071 insn-attr.h: stamp-attr ; @true
1072 stamp-attr : md genattr $(srcdir)/move-if-change
1073         ./genattr md > tmp-attr.h
1074         $(srcdir)/move-if-change tmp-attr.h insn-attr.h
1075         touch stamp-attr
1076
1077 insn-attrtab.c: stamp-attrtab ; @true
1078 stamp-attrtab : md genattrtab $(srcdir)/move-if-change
1079         if cmp -s $(PREMADE_ATTRTAB_MD) md;     \
1080         then                                    \
1081           echo Using $(PREMADE_ATTRTAB);        \
1082           cp $(PREMADE_ATTRTAB) tmp-attrtab.c;  \
1083         else                                    \
1084           ./genattrtab md > tmp-attrtab.c;      \
1085         fi
1086         $(srcdir)/move-if-change tmp-attrtab.c insn-attrtab.c
1087         touch stamp-attrtab
1088
1089 insn-output.o : insn-output.c $(CONFIG_H) $(RTL_H) regs.h real.h conditions.h \
1090     hard-reg-set.h insn-config.h insn-flags.h insn-attr.h output.h recog.h \
1091     insn-codes.h
1092         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c insn-output.c
1093
1094 insn-output.c: stamp-output ; @true
1095 stamp-output : md genoutput $(srcdir)/move-if-change
1096         ./genoutput md > tmp-output.c
1097         $(srcdir)/move-if-change tmp-output.c insn-output.c
1098         touch stamp-output
1099 \f
1100 # Compile the programs that generate insn-* from the machine description.
1101 # They are compiled with $(HOST_CC), and associated libraries,
1102 # since they need to run on this machine
1103 # even if GCC is being compiled to run on some other machine.
1104
1105 # $(CONFIG_H) is omitted from the deps of the gen*.o
1106 # because these programs don't really depend on anything 
1107 # about the target machine.  They do depend on config.h itself,
1108 # since that describes the host machine.
1109
1110 genconfig : genconfig.o $(HOST_RTL) $(HOST_LIBDEPS)
1111         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genconfig \
1112           genconfig.o $(HOST_RTL) $(HOST_LIBS)
1113
1114 genconfig.o : genconfig.c $(RTL_H) hconfig.h
1115         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genconfig.c
1116
1117 genflags : genflags.o $(HOST_RTL) $(HOST_LIBDEPS)
1118         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genflags \
1119          genflags.o $(HOST_RTL) $(HOST_LIBS)
1120
1121 genflags.o : genflags.c $(RTL_H) hconfig.h
1122         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genflags.c
1123
1124 gencodes : gencodes.o $(HOST_RTL) $(HOST_LIBDEPS)
1125         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o gencodes \
1126          gencodes.o $(HOST_RTL) $(HOST_LIBS)
1127
1128 gencodes.o : gencodes.c $(RTL_H) hconfig.h
1129         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/gencodes.c
1130
1131 genemit : genemit.o $(HOST_RTL) $(HOST_LIBDEPS)
1132         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genemit \
1133          genemit.o $(HOST_RTL) $(HOST_LIBS)
1134
1135 genemit.o : genemit.c $(RTL_H) hconfig.h
1136         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genemit.c
1137
1138 genopinit : genopinit.o $(HOST_RTL) $(HOST_LIBDEPS)
1139         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genopinit \
1140          genopinit.o $(HOST_RTL) $(HOST_LIBS)
1141
1142 genopinit.o : genopinit.c $(RTL_H) hconfig.h
1143         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genopinit.c
1144
1145 genrecog : genrecog.o $(HOST_RTL) $(HOST_LIBDEPS)
1146         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genrecog \
1147          genrecog.o $(HOST_RTL) $(HOST_LIBS)
1148
1149 genrecog.o : genrecog.c $(RTL_H) hconfig.h
1150         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genrecog.c
1151
1152 genextract : genextract.o $(HOST_RTL) $(HOST_LIBDEPS)
1153         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genextract \
1154          genextract.o $(HOST_RTL) $(HOST_LIBS)
1155
1156 genextract.o : genextract.c $(RTL_H) hconfig.h insn-config.h
1157         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genextract.c
1158
1159 genpeep : genpeep.o $(HOST_RTL) $(HOST_LIBDEPS)
1160         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genpeep \
1161          genpeep.o $(HOST_RTL) $(HOST_LIBS)
1162
1163 genpeep.o : genpeep.c $(RTL_H) hconfig.h
1164         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genpeep.c
1165
1166 genattr : genattr.o $(HOST_RTL) $(HOST_LIBDEPS)
1167         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattr \
1168          genattr.o $(HOST_RTL) $(HOST_LIBS)
1169
1170 genattr.o : genattr.c $(RTL_H) hconfig.h
1171         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattr.c
1172
1173 genattrtab : genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBDEPS)
1174         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genattrtab \
1175          genattrtab.o $(HOST_RTL) $(HOST_PRINT) $(HOST_RTLANAL) $(HOST_LIBS)
1176
1177 genattrtab.o : genattrtab.c $(RTL_H) hconfig.h insn-config.h
1178         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genattrtab.c
1179
1180 genoutput : genoutput.o $(HOST_RTL) $(HOST_LIBDEPS)
1181         $(HOST_CC) $(HOST_CFLAGS) $(HOST_LDFLAGS) -o genoutput \
1182          genoutput.o $(HOST_RTL) $(HOST_LIBS)
1183
1184 genoutput.o : genoutput.c $(RTL_H) hconfig.h
1185         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(srcdir)/genoutput.c
1186 \f
1187 # Compile the libraries to be used by gen*.
1188 # If we are not cross-building, gen* use the same .o's that cc1 will use,
1189 # and HOST_PREFIX_1 is `foobar', just to ensure these rules don't conflict
1190 # with the rules for rtl.o, alloca.o, etc.
1191 $(HOST_PREFIX_1)rtl.o: $(srcdir)/rtl.c $(CONFIG_H) $(RTL_H)
1192         rm -f $(HOST_PREFIX)rtl.c
1193         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtl.c > $(HOST_PREFIX)rtl.c
1194         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtl.c
1195
1196 $(HOST_PREFIX_1)print-rtl.o: $(srcdir)/print-rtl.c $(CONFIG_H) $(RTL_H)
1197         rm -f $(HOST_PREFIX)print-rtl.c
1198         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/print-rtl.c > $(HOST_PREFIX)print-rtl.c
1199         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)print-rtl.c
1200
1201 $(HOST_PREFIX_1)rtlanal.o: $(srcdir)/rtlanal.c $(CONFIG_H) $(RTL_H)
1202         rm -f $(HOST_PREFIX)rtlanal.c
1203         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/rtlanal.c > $(HOST_PREFIX)rtlanal.c
1204         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)rtlanal.c
1205
1206 $(HOST_PREFIX_1)alloca.o: alloca.c
1207         rm -f $(HOST_PREFIX)alloca.c
1208         cp $(srcdir)/alloca.c $(HOST_PREFIX)alloca.c
1209         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)alloca.c
1210
1211 $(HOST_PREFIX_1)obstack.o: obstack.c
1212         rm -f $(HOST_PREFIX)obstack.c
1213         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/obstack.c > $(HOST_PREFIX)obstack.c
1214         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)obstack.c
1215
1216 $(HOST_PREFIX_1)malloc.o: malloc.c
1217         rm -f $(HOST_PREFIX)malloc.c
1218         sed -e 's/config[.]h/hconfig.h/' $(srcdir)/malloc.c > $(HOST_PREFIX)malloc.c
1219         $(HOST_CC) -c $(HOST_CFLAGS) $(HOST_CPPFLAGS) $(INCLUDES) $(HOST_PREFIX)malloc.c
1220
1221 # This satisfies the dependency that we get if you cross-compile a compiler
1222 # that does not need to compile alloca, malloc or whatever.
1223 $(HOST_PREFIX_1): 
1224         touch $(HOST_PREFIX_1)
1225 \f
1226 # Remake cpp and protoize.
1227
1228 # Making the preprocessor
1229 cpp: cccp
1230         -rm -f cpp
1231         ln cccp cpp
1232 cccp: cccp.o cexp.o version.o $(LIBDEPS)
1233         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o cccp cccp.o cexp.o version.o $(LIBS)
1234 cexp.o: $(srcdir)/cexp.c $(CONFIG_H)
1235         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) -c $(srcdir)/cexp.c
1236 $(srcdir)/cexp.c: $(srcdir)/cexp.y
1237         cd $(srcdir); $(BISON) -o cexp.c cexp.y
1238 cccp.o: cccp.c $(CONFIG_H) pcp.h version.c config.status
1239 # The reason we use $(libdir)/g++-include rather than using libsubdir
1240 # is for compatibility with the current version of libg++.
1241         $(CC) $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1242           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1243           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1244           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1245           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1246           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1247           -DTOOLDIR=\"$(tooldir)/\" \
1248           -c `echo $(srcdir)/cccp.c | sed 's,^\./,,'`
1249
1250 # Note for the stamp targets, we run the program `true' instead of
1251 # having an empty command (nothing following the semicolon).
1252
1253 proto: config.status protoize unprotoize SYSCALLS.c.X
1254
1255 protoize: protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1256         $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1257           protoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
1258 protoize.o: stamp-proto ; @true
1259
1260 unprotoize: unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBDEPS)
1261         $(CC) $(ALL_CFLAGS) $(LDFLAGS) \
1262           unprotoize.o getopt.o getopt1.o getpwd.o version.o $(LIBS) -o $@
1263 unprotoize.o:   stamp-proto ; @true
1264
1265 stamp-proto:    $(srcdir)/protoize.c getopt.h $(CONFIG_H)
1266         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1267           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1268           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1269           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1270           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1271           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1272           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1273           -DUNPROTOIZE $(srcdir)/protoize.c
1274         mv protoize.o unprotoize.o
1275         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1276           -DGCC_INCLUDE_DIR=\"$(libsubdir)/include\" \
1277           -DGPLUSPLUS_INCLUDE_DIR=\"$(libdir)/g++-include\" \
1278           -DCROSS_INCLUDE_DIR=\"$(libsubdir)/sys-include\" \
1279           -DTOOL_INCLUDE_DIR=\"$(tooldir)/include\" \
1280           -DLOCAL_INCLUDE_DIR=\"$(local_prefix)/include\" \
1281           -DSTD_PROTO_DIR=\"$(libsubdir)\" \
1282           $(srcdir)/protoize.c
1283         touch stamp-proto
1284
1285 getopt.o: $(srcdir)/getopt.c getopt.h
1286         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt.c
1287 getopt1.o: $(srcdir)/getopt1.c getopt.h
1288         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) $(srcdir)/getopt1.c
1289
1290 # This info describes the target machine, so compile with GCC just built.
1291 SYSCALLS.c.X: $(srcdir)/sys-types.h $(srcdir)/sys-protos.h $(GCC_PASSES)
1292         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1293         cat $(srcdir)/sys-types.h $(srcdir)/sys-protos.h > SYSCALLS.c
1294         $(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) $(INCLUDES) \
1295           -aux-info $@ -S -o tmp-SYSCALLS.s SYSCALLS.c
1296         -rm -f SYSCALLS.c tmp-SYSCALLS.s
1297
1298
1299 test-protoize-simple: ./protoize ./unprotoize $(GCC_PASSES)
1300         -rm -f tmp-proto.[cso]
1301         cp $(srcdir)/protoize.c tmp-proto.c
1302         chmod u+w tmp-proto.c
1303         ./protoize -N -B ./ -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1304           $(CFLAGS) $(INCLUDES) \
1305           -DGCC_INCLUDE_DIR=0 \
1306           -DGPLUSPLUS_INCLUDE_DIR=0 \
1307           -DCROSS_INCLUDE_DIR=0 \
1308           -DTOOL_INCLUDE_DIR=0 \
1309           -DSTD_PROTO_DIR=0" tmp-proto.c
1310         @echo '**********' Expect 400 lines of differences.
1311         -diff $(srcdir)/protoize.c tmp-proto.c > tmp-proto.diff
1312         -wc -l tmp-proto.diff
1313         ./unprotoize -N -x getopt.h -c "-B./ -Wall -Wwrite-strings \
1314           $(CFLAGS) $(INCLUDES) \
1315           -DGCC_INCLUDE_DIR=0 \
1316           -DGPLUSPLUS_INCLUDE_DIR=0 \
1317           -DCROSS_INCLUDE_DIR=0 \
1318           -DTOOL_INCLUDE_DIR=0 \
1319           -DSTD_PROTO_DIR=0" tmp-proto.c
1320         @echo Expect zero differences.
1321         diff $(srcdir)/protoize.c tmp-proto.c | cat
1322         -rm -f tmp-proto.[cso]
1323 \f
1324 # Build the include directory.  The stamp files are stmp-* rather than
1325 # stamp-* so that mostlyclean does not force the include directory to
1326 # be rebuilt.
1327
1328 # Build the include directory except for float.h (which depends upon
1329 # enquire).
1330 stmp-int-hdrs: stmp-fixinc $(USER_H) gvarargs.h gstdarg.h gstddef.h \
1331   xlimits.h objc-headers
1332 # Copy in the headers provided with gcc.
1333 # The sed command gets just the last file name component;
1334 # this is necessary because VPATH could add a dirname.
1335 # Using basename would be simpler, but some systems don't have it.
1336         objdir=`pwd`; \
1337         cd $(srcdir); \
1338         for file in $(USER_H); do \
1339           realfile=`echo $$file | sed -e 's|.*/\([^/]*\)$$|\1|'`; \
1340           rm -f $$objdir/include/$$realfile; \
1341           cp $$realfile $$objdir/include; \
1342           chmod a+r $$objdir/include/$$realfile; \
1343         done
1344         rm -f include/varargs.h
1345         cp $(srcdir)/gvarargs.h include/varargs.h
1346         chmod a+r include/varargs.h
1347         rm -f include/stdarg.h
1348         cp $(srcdir)/gstdarg.h include/stdarg.h
1349         chmod a+r include/stdarg.h
1350         rm -f include/stddef.h
1351         cp $(srcdir)/gstddef.h include/stddef.h
1352         chmod a+r include/stddef.h
1353         rm -f include/limits.h
1354         cp xlimits.h include/limits.h
1355         chmod a+r include/limits.h
1356 # Install the README
1357         rm -f include/README
1358         cp $(srcdir)/README-fixinc include/README
1359         chmod a+r include/README
1360         touch stmp-int-hdrs
1361
1362 # Build the complete include directory.
1363 stmp-headers: stmp-int-hdrs gfloat.h
1364         rm -f include/float.h
1365         cp gfloat.h include/float.h
1366         chmod a+r include/float.h
1367         touch stmp-headers
1368
1369 # Build fixed copies of system files.
1370 stmp-fixinc: $(srcdir)/$(FIXINCLUDES) gsyslimits.h
1371         rm -rf include
1372         mkdir include
1373         if [ x$(FIXINCLUDES) != xMakefile.in ]; \
1374         then \
1375           for dir in $(SYSTEM_HEADER_DIR) $(OTHER_FIXINCLUDES_DIRS); do \
1376             if [ -d $$dir ]; \
1377             then \
1378               $(srcdir)/$(FIXINCLUDES) include $$dir $(srcdir); \
1379             else true; fi; \
1380           done; \
1381         else true; \
1382         fi
1383         rm -f include/syslimits.h
1384         if [ -f include/limits.h ]; then \
1385           mv include/limits.h include/syslimits.h; \
1386         else \
1387           cp $(srcdir)/gsyslimits.h include/syslimits.h; \
1388         fi
1389         chmod a+r include/syslimits.h
1390         touch stmp-fixinc
1391
1392 # copy objc header files into build directory
1393 objc-headers:
1394         if [ -d objc ]; then true; else mkdir objc; fi
1395         thisdir1=`pwd`; \
1396         srcdir1=`cd $(srcdir); pwd`; \
1397         cd objc; \
1398         $(MAKE) -f $${srcdir1}/objc/Makefile copy-headers \
1399         srcdir=$${srcdir1} tooldir=$(tooldir) AR="$(AR)" AR_FLAGS="$(AR_FLAGS)" \
1400         GCC_FOR_TARGET="$${thisdir1}/xgcc -B$${thisdir1}/" \
1401         GCC_CFLAGS="$(GCC_CFLAGS)" incinstalldir=$${thisdir1}/include
1402         touch objc-headers
1403
1404 # Files related to the fixproto script.
1405
1406 deduced.h: $(srcdir)/scan-types.sh
1407         CC="$(GCC_FOR_TARGET) $(GCC_CFLAGS) $(ALL_CPPFLAGS) -nostdinc -Iinclude -I${SYSTEM_HEADER_DIR}"; \
1408           export CC; \
1409           $(srcdir)/scan-types.sh >tmp-deduced.h
1410         mv tmp-deduced.h deduced.h
1411
1412 gen-protos: gen-protos.o scan.o
1413         ${HOST_CC} -o gen-protos gen-protos.o scan.o
1414
1415 xsys-protos.h: $(srcdir)/sys-protos.h deduced.h gen-protos Makefile
1416         cat deduced.h $(srcdir)/sys-protos.h |\
1417           sed -e 's/    / /g' -e 's/ *(/ (/g' -e 's/ [ ]*/ /g' >tmp.c
1418         $(GCC_FOR_TARGET) tmp.c -E | ./gen-protos >xsys-protos.h
1419
1420 scan-decls: scan-decls.o scan.o
1421         $(HOST_CC) -o scan-decls scan-decls.o scan.o
1422
1423 patch-header: patch-header.o scan.o xsys-protos.h obstack.o
1424         $(HOST_CC) -o patch-header patch-header.o scan.o obstack.o
1425
1426 patch-header.o: xsys-protos.h
1427
1428 stmp-fixproto: patch-header scan-decls xsys-protos.h
1429         CPP="$(GCC_FOR_TARGET) -E"; export CPP; \
1430           ${srcdir}/fixproto include include $(SYSTEM_HEADER_DIR)
1431         touch stmp-fixproto
1432 \f
1433 # Remake the info files.
1434
1435 doc: info
1436 info: $(srcdir)/cpp.info $(srcdir)/gcc.info
1437
1438 $(srcdir)/cpp.info: cpp.texi
1439         cd $(srcdir); $(MAKEINFO) cpp.texi
1440
1441 #$(srcdir)/gplus.info: gplus.texi
1442 #       $(MAKEINFO) `echo $(srcdir)/gplus.texi | sed 's,^\./,,'`
1443
1444 $(srcdir)/gcc.info: gcc.texi extend.texi install.texi invoke.texi \
1445                 md.texi rtl.texi tm.texi 
1446         cd $(srcdir); $(MAKEINFO) gcc.texi
1447
1448 dvi: $(srcdir)/gcc.dvi $(srcdir)/cpp.dvi
1449
1450 # This works with GNU Make's default rule.
1451 $(srcdir)/gcc.dvi: gcc.texi extend.texi install.texi invoke.texi \
1452                 md.texi rtl.texi tm.texi 
1453         $(TEXI2DVI) $<
1454
1455 # This works with GNU Make's default rule.
1456 $(srcdir)/cpp.dvi: cpp.texi
1457         $(TEXI2DVI) $<
1458
1459 $(srcdir)/INSTALL: install1.texi install.texi
1460         $(MAKEINFO) -D INSTALLONLY --no-header `echo $(srcdir)/install1.texi | sed 's,^\./,,'`
1461 \f
1462 # Deletion of files made during compilation.
1463 # There are four levels of this:
1464 #   `mostlyclean', `clean', `distclean' and `realclean'.
1465 # `mostlyclean' is useful while working on a particular type of machine.
1466 # It deletes most, but not all, of the files made by compilation.
1467 # It does not delete libgcc.a or its parts, so it won't have to be recompiled.
1468 # `clean' deletes everything made by running `make all'.
1469 # `distclean' also deletes the files made by config.
1470 # `realclean' also deletes everything that could be regenerated automatically.
1471
1472
1473 mostlyclean:
1474         -rm -f $(STAGESTUFF)
1475 # Clean the objc subdir if we created one.
1476         if [ -d objc ]; then \
1477           srcdir1=`cd $(srcdir); pwd`; \
1478           cd objc; $(MAKE) -f $$srcdir1/objc/Makefile mostlyclean; \
1479         else true; fi
1480         -rm -f libobjc.a
1481 # Delete the temporary source copies for cross compilation.
1482         -rm -f $(HOST_PREFIX_1)rtl.c $(HOST_PREFIX_1)rtlanal.c
1483         -rm -f $(HOST_PREFIX_1)alloca.c $(HOST_PREFIX_1)malloc.c
1484         -rm -f $(HOST_PREFIX_1)obstack.c 
1485 # Delete the temp files made in the course of building libgcc.a.
1486         -rm -f tmplibgcc* tmpcopy xlimits.h
1487         for name in $(LIB1FUNCS); do rm -f $${name}.c; done
1488 # Delete other temporary files.
1489         -rm -f tmp-float.h tmp-gcc.xtar.gz
1490         -rm -f tmp-foo1 tmp-foo2 tmp-proto.* tmp-unproto.1 tmp-SYSCALLS.s
1491 # Delete the stamp files.
1492         -rm -f stamp-* tmp-*
1493 # Delete debugging dump files.
1494         -rm -f *.greg *.lreg *.combine *.flow *.cse *.jump *.rtl *.tree *.loop
1495         -rm -f *.dbr *.jump2 *.sched *.cse2 *.sched2 *.stack
1496 # Delete some files made during installation.
1497         -rm -f specs gfloat.h float.h-* enquire SYSCALLS.c.X SYSCALLS.c
1498         -rm -f collect collect2 ld mips-tfile mips-tdump alloca.s
1499 # Delete files generated for fixproto
1500         rm -rf patch-header scan-decls xsys-protos.h deduced.h tmp-deduced.h \
1501           tmp.i tmp.c
1502 # Delete unwanted output files from TeX.
1503         -rm -f *.toc *.log *.vr *.fn *.cp *.tp *.ky *.pg
1504 # Delete sorted indices we don't actually use.
1505         -rm -f gcc.vrs gcc.kys gcc.tps gcc.pgs gcc.fns
1506 # Delete core dumps.
1507         -rm -f core config/core
1508
1509 # Delete all files made by compilation
1510 # that don't exist in the distribution.
1511 clean: mostlyclean
1512 # It may not be quite desirable to delete unprotoize.c here,
1513 # but the spec for `make clean' requires it.
1514 # Using unprotoize.c is not quite right in the first place, 
1515 # but what better way is there?
1516         -rm -f libgcc.a libgcc1.a libgcc2.a libgcc2.ready libgcc1.null
1517         -rm -f *.dvi
1518 # Delete the include directory.
1519         -rm -rf stmp-* include objc-headers
1520
1521 # Delete all files that users would normally create
1522 # while building and installing GCC.
1523 distclean: clean
1524         -rm -f tm.h aux-output.c config.h md config.status tconfig.h hconfig.h
1525         -rm -f Makefile *.oaux
1526         -rm -fr stage1 stage2 stage3 stage4
1527         -rm -f cp-parse.output
1528         -rm -f objc-parse.output
1529         -rm -f c-parse.output
1530
1531 # Delete anything likely to be found in the source directory
1532 # that shouldn't be in the distribution.
1533 extraclean: distclean
1534         -rm -rf =* ./"#"* *~* config/=* config/"#"* config/*~*
1535         -rm -f patch* *.orig *.rej config/patch* config/*.orig config/*.rej
1536         -rm -f config/*/=* config/*/"#"* config/*/*~*
1537         -rm -f config/*/*.orig config/*/*.rej
1538         -rm -f objc/=* objc/"#"* objc/*~*
1539         -rm -f objc/*.orig objc/*.rej
1540         -rm -f *.dvi *.oaux *.d *.[zZ] *.gz
1541         -rm -f *.tar *.xtar *diff *.diff.* *.tar.* *.xtar.* *diffs
1542         -rm -f *lose config/*lose config/*/*lose
1543         -rm -f *.s *.s[0-9] *.i install1.texi config/ChangeLog
1544
1545 # Get rid of every file that's generated from some other file.
1546 # Most of these files ARE PRESENT in the GCC distribution.
1547 realclean: distclean
1548         -rm -f c-parse.y objc-parse.y
1549         -rm -f cp-parse.c cp-parse.h cp-parse.output
1550         -rm -f objc-parse.c objc-parse.output
1551         -rm -f c-parse.c c-parse.h c-parse.output
1552         -rm -f cexp.c cexp.output TAGS 
1553         -rm -f cpp.info* cpp.??s cpp.*aux
1554         -rm -f gcc.info* gcc.??s gcc.*aux
1555         -rm -f gplus.info* gplus.??s gplus.*aux
1556 \f
1557 # Entry points `install' and `uninstall'.
1558 # Also use `install-collect2' to install collect2 when the config files don't.
1559
1560 # The semicolon is to prevent the install.sh -> install default rule
1561 # from doing anything.  Having it run true helps avoid problems and
1562 # noise from versions of make which don't like to have null commands.
1563 install: $(INSTALL_TARGET) ; @true
1564
1565 # Copy the compiler files into directories where they will be run.
1566 install-normal: install-common $(INSTALL_HEADERS) $(INSTALL_LIBGCC) \
1567     install-man install-info
1568
1569 # Do nothing while making gcc with a cross-compiler. The person who
1570 # makes gcc for the target machine has to know how to put a complete
1571 # gcc together by hand.
1572 install-build: force
1573         @echo You have to install gcc on your target machine by hand.
1574
1575 # Run this on the target machine
1576 # to finish installation of cross compiler.
1577 install-cross-rest: install-float-h-cross
1578
1579 # Install float.h for cross compiler.
1580 # Run this on the target machine!
1581 install-float-h-cross:
1582 #       if [ -f enquire ] ; then true; else false; fi
1583 # Note: don't use -.  We should fail right away if enquire was not made.
1584         ./enquire -f > $(tmpdir)/float.h
1585         -rm -f $(libsubdir)/include/float.h
1586         $(INSTALL_DATA) $(tmpdir)/float.h $(libsubdir)/include/float.h
1587         -rm -f $(tmpdir)/float.h
1588         chmod a-x $(libsubdir)/include/float.h
1589
1590 # Create the installation directory.
1591 install-dir:
1592         -if [ -d $(libdir) ] ; then true ; else mkdir $(libdir) ; fi
1593         -if [ -d $(libdir)/gcc-lib ] ; then true ; else mkdir $(libdir)/gcc-lib ; fi
1594 # This dir isn't curretly searched by cpp.
1595 #       -if [ -d $(libdir)/gcc-lib/include ] ; then true ; else mkdir $(libdir)/gcc-lib/include ; fi
1596         -if [ -d $(libdir)/gcc-lib/$(target) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target) ; fi
1597         -if [ -d $(libdir)/gcc-lib/$(target)/$(version) ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version) ; fi
1598         -if [ -d $(libdir)/gcc-lib/$(target)/$(version)/include ] ; then true ; else mkdir $(libdir)/gcc-lib/$(target)/$(version)/include ; fi
1599         -if [ -d $(bindir) ] ; then true ; else mkdir $(bindir) ; fi
1600         -if [ -d $(includedir) ] ; then true ; else mkdir $(includedir) ; fi
1601         -if [ -d $(tooldir) ] ; then true ; else mkdir $(tooldir) ; fi
1602         -if [ -d $(assertdir) ] ; then true ; else mkdir $(assertdir) ; fi
1603         -if [ -d $(infodir) ] ; then true ; else mkdir $(infodir) ; fi
1604 # We don't use mkdir -p to create the parents of mandir,
1605 # because some systems don't support it.
1606 # Instead, we use this technique to create the immediate parent of mandir.
1607         -parent=`echo $(mandir)|sed -e 's@/[^/]*$$@@'`; \
1608         if [ -d $$parent ] ; then true ; else mkdir $$parent ; fi
1609         -if [ -d $(mandir) ] ; then true ; else mkdir $(mandir) ; fi
1610
1611 # Install the compiler executables built during cross compilation.
1612 # Deps on  $(srcdir)/g++ $(srcdir)/c++  would be natural here,
1613 # but the latter would get confused with the target `c++'.
1614 install-common: native install-dir xgcc $(EXTRA_PARTS)
1615         for file in $(COMPILERS); do \
1616           if [ -f $$file ] ; then \
1617             rm -f $(libsubdir)/$$file; \
1618             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1619           else true; \
1620           fi; \
1621         done
1622         for file in $(EXTRA_PASSES) $(EXTRA_PARTS) $(EXTRA_PROGRAMS) $(USE_COLLECT2) ..; do \
1623           if [ x"$$file" != x.. ]; then \
1624             rm -f $(libsubdir)/$$file; \
1625             $(INSTALL_PROGRAM) $$file $(libsubdir)/$$file; \
1626           else true; fi; \
1627         done
1628 # Don't mess with specs if it doesn't exist yet.
1629         -if [ -f specs ] ; then \
1630           rm -f $(libsubdir)/specs; \
1631           $(INSTALL_DATA) specs $(libsubdir)/specs; \
1632         fi
1633 # Install the driver program as $(target)-gcc
1634 # and also as either gcc (if native) or $(tooldir)/bin/gcc.
1635         -if [ -f gcc-cross ] ; then \
1636           rm -f $(bindir)/$(target)-gcc; \
1637           $(INSTALL_PROGRAM) gcc-cross $(bindir)/$(target)-gcc; \
1638           if [ -d $(tooldir)/bin/. ] ; then \
1639             rm -f $(tooldir)/bin/gcc; \
1640             $(INSTALL_PROGRAM) gcc-cross $(tooldir)/bin/gcc; \
1641           else true; fi; \
1642         else \
1643           rm -f $(bindir)/gcc; \
1644           $(INSTALL_PROGRAM) xgcc $(bindir)/gcc; \
1645           rm -f $(bindir)/$(target)-gcc-1; \
1646           ln $(bindir)/gcc $(bindir)/$(target)-gcc-1; \
1647           mv $(bindir)/$(target)-gcc-1 $(bindir)/$(target)-gcc; \
1648         fi
1649 # Install protoize if it was compiled.
1650         -if [ -f protoize ]; \
1651         then \
1652             rm -f $(bindir)/protoize; \
1653             $(INSTALL_PROGRAM) protoize $(bindir)/protoize; \
1654             rm -f $(bindir)/unprotoize; \
1655             $(INSTALL_PROGRAM) unprotoize $(bindir)/unprotoize; \
1656             rm -f $(libsubdir)/SYSCALLS.c.X; \
1657             $(INSTALL_DATA) SYSCALLS.c.X $(libsubdir)/SYSCALLS.c.X; \
1658             chmod a-x $(libsubdir)/SYSCALLS.c.X; \
1659         fi
1660         -if [ -f cc1plus ] ; then \
1661           rm -f $(bindir)/c++ ; \
1662           $(INSTALL_PROGRAM) $(srcdir)/c++ $(bindir)/c++ ; \
1663           rm -f $(bindir)/g++ ; \
1664           $(INSTALL_PROGRAM) $(srcdir)/g++ $(bindir)/g++ ; \
1665         fi
1666         -rm -f $(libsubdir)/cpp
1667         $(INSTALL_PROGRAM) cpp $(libsubdir)/cpp
1668
1669 # Install the info files.
1670 install-info: doc
1671         -rm -f $(infodir)/cpp.info* $(infodir)/gcc.info*
1672         cd $(srcdir); for f in cpp.info* gcc.info*; \
1673         do $(INSTALL_DATA) $$f $(infodir)/$$f; done
1674         -chmod a-x $(infodir)/cpp.info* $(infodir)/gcc.info*
1675
1676 # Install the man pages.
1677 install-man: install-dir $(srcdir)/gcc.1 $(srcdir)/cccp.1 $(srcdir)/g++.1
1678         -rm -f $(mandir)/gcc$(manext)
1679         -$(INSTALL_DATA) $(srcdir)/gcc.1 $(mandir)/gcc$(manext)
1680         -chmod a-x $(mandir)/gcc$(manext)
1681         -rm -f $(mandir)/cccp$(manext)
1682         -$(INSTALL_DATA) $(srcdir)/cccp.1 $(mandir)/cccp$(manext)
1683         -chmod a-x $(mandir)/cccp$(manext)
1684         -$(INSTALL_DATA) $(srcdir)/g++.1 $(mandir)/g++$(manext)
1685         -chmod a-x $(mandir)/g++$(manext)
1686
1687 # Install the library.
1688 install-libgcc: libgcc.a install-dir
1689         -if [ -f libgcc.a ] ; then \
1690           rm -f $(libsubdir)/libgcc.a; \
1691           $(INSTALL_DATA) libgcc.a $(libsubdir)/libgcc.a; \
1692           if $(RANLIB_TEST) ; then \
1693             (cd $(libsubdir); $(RANLIB) libgcc.a); else true; fi; \
1694           chmod a-x $(libsubdir)/libgcc.a; \
1695         else true; fi
1696
1697 # Install the objc run time library.
1698 install-libobjc: libobjc.a install-dir
1699         -if [ -f libobjc.a ] ; then \
1700           rm -f $(libsubdir)/libobjc.a; \
1701           $(INSTALL_DATA) libobjc.a $(libsubdir)/libobjc.a; \
1702           if $(RANLIB_TEST) ; then \
1703             (cd $(libsubdir); $(RANLIB) libobjc.a); else true; fi; \
1704           chmod a-x $(libsubdir)/libobjc.a; \
1705         else true; fi
1706
1707 # Install all the header files built in the include subdirectory.
1708 install-headers: install-include-dir $(INSTALL_HEADERS_DIR) install-assert-h
1709 # Fix symlinks to absolute paths in the installed include directory to
1710 # point to the installed directory, not the build directory.
1711         -files=`cd $(libsubdir)/include; find . -type l -print 2>/dev/null`; \
1712         if [ $$? -eq 0 ]; then \
1713           dir=`cd include; pwd`; \
1714           for i in $$files; do \
1715             dest=`ls -ld $(libsubdir)/include/$$i | sed -n 's/.*-> //p'`; \
1716             if expr "$$dest" : "$$dir.*" > /dev/null; then \
1717               rm -f $(libsubdir)/include/$$i; \
1718               ln -s `echo $$i | sed "s|/[^/]*|/..|g" | sed 's|/..$$||'``echo "$$dest" | sed "s|$$dir||"` $(libsubdir)/include/$$i; \
1719             fi; \
1720           done; \
1721         fi
1722
1723 # Create or recreate the gcc private include file directory.
1724 install-include-dir: install-dir
1725         -rm -rf $(libsubdir)/include
1726         mkdir $(libsubdir)/include
1727         -chmod a+rx $(libsubdir)/include
1728
1729 # Install the include directory using tar.
1730 install-headers-tar: stmp-headers $(STMP_FIXPROTO) install-include-dir
1731         cd include; \
1732          (tar cf - .; exit 0) | (cd $(libsubdir)/include; tar $(TAROUTOPTS) - )
1733 # /bin/sh on some systems returns the status of the first tar,
1734 # and that can lose with GNU tar which always writes a full block.
1735 # So use `exit 0' to ignore its exit status.
1736
1737 # Install the include directory using cpio.
1738 install-headers-cpio: stmp-headers $(STMP_FIXPROTO) install-include-dir
1739         cd include; find . -print | cpio -pdum $(libsubdir)/include
1740
1741 # Put assert.h where it won't override GNU libc's assert.h.
1742 # It goes in a dir that is searched after GNU libc's headers;
1743 # thus, the following conditionals are no longer needed.
1744 # But it's not worth deleting them now.
1745 ## Don't replace the assert.h already there if it is not from GCC.
1746 ## This code would be simpler if it tested for -f ... && ! grep ...
1747 ## but supposedly the ! operator is missing in sh on some systems.
1748 install-assert-h: assert.h install-dir
1749         if [ -f $(assertdir)/assert.h ]; \
1750         then \
1751           if grep "__eprintf" $(assertdir)/assert.h >/dev/null; \
1752             then \
1753             rm -f $(assertdir)/assert.h; \
1754             $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
1755             chmod a-x $(assertdir)/assert.h; \
1756           else true; \
1757           fi; \
1758         else \
1759           rm -f $(assertdir)/assert.h; \
1760           $(INSTALL_DATA) $(srcdir)/assert.h $(assertdir)/assert.h; \
1761           chmod a-x $(assertdir)/assert.h; \
1762         fi
1763
1764 # Use this target to install the program `collect2' under the name `ld'.
1765 install-collect2: collect2
1766         $(INSTALL_PROGRAM) collect2 $(libsubdir)/ld
1767 # Install the driver program as $(libsubdir)/gcc for collect2.
1768         $(INSTALL_PROGRAM) xgcc $(libsubdir)/gcc
1769
1770 # Cancel installation by deleting the installed files.
1771 uninstall:
1772         -rm -rf $(libsubdir)
1773         -rm -rf $(bindir)/gcc
1774         -rm -rf $(bindir)/protoize
1775         -rm -rf $(bindir)/unprotoize
1776         -rm -rf $(mandir)/gcc$(manext)
1777         -rm -rf $(mandir)/g++$(manext)
1778         -rm -rf $(mandir)/cccp$(manext)
1779         -rm -rf $(mandir)/protoize$(manext)
1780         -rm -rf $(mandir)/unprotoize$(manext)
1781 \f
1782 # These exist for maintenance purposes.
1783
1784 # Update the tags table.
1785 TAGS: force
1786         cd $(srcdir);                                                   \
1787         mkdir temp;                                                     \
1788         mv -f c-parse.[ch] cp-parse.[ch] objc-parse.c cexp.c =*.[chy] temp; \
1789         etags *.y *.h *.c;                                              \
1790         mv temp/* .;                                                    \
1791         rmdir temp
1792
1793 # Create the distribution tar file.
1794 #dist: gcc-$(version).tar.gz
1795 dist: gcc.xtar.gz
1796
1797 gcc.xtar.gz: gcc.xtar
1798         gzip < gcc.xtar > tmp-gcc.xtar.gz
1799         mv tmp-gcc.xtar.gz gcc.xtar.gz
1800
1801 #gcc-$(version).tar.gz: gcc-$(version).tar
1802 #       gzip < gcc-$(version).tar > gcc-$(version).tar.gz
1803
1804 #gcc-$(version).tar:
1805 gcc.xtar: distdir
1806 # Make the distribution.
1807         tar chf gcc.xtar gcc-$(version)
1808
1809 distdir: doc $(srcdir)/INSTALL c-parse.y objc-parse.y cp-parse.y \
1810   c-parse.c cp-parse.c objc-parse.c cexp.c
1811         if grep -s "for version ${version}" gcc.texi; \
1812         then true; \
1813         else echo "You must update the version number in \`gcc.texi'"; sleep 10;\
1814         fi
1815 # Update the version number in README
1816         awk '$$1 " " $$2 " " $$3 == "This directory contains" \
1817                 { $$6 = version; print $$0 } \
1818              $$1 " " $$2 " " $$3 != "This directory contains"' \
1819           version=$(version) README > tmp.README
1820         mv tmp.README README
1821         -rm -rf gcc-$(version) tmp      
1822 # Put all the files in a temporary subdirectory
1823 # which has the name that we want to have in the tar file.
1824         mkdir tmp
1825         mkdir tmp/config
1826         mkdir tmp/objc
1827         for file in *[0-9a-zA-Z+]; do \
1828           ln $$file tmp > /dev/null 2>&1 || cp $$file tmp; \
1829         done
1830         cd config; \
1831         for file in *[0-9a-zA-Z+]; do \
1832           if test -d $$file && test "$$file" != RCS; then \
1833             mkdir ../tmp/config/$$file; \
1834             cd $$file; \
1835             for subfile in *[0-9a-zA-Z+]; do \
1836               ln $$subfile ../../tmp/config/$$file >/dev/null 2>&1 \
1837               || cp $$subfile ../../tmp/config/$$file; \
1838             done; \
1839             cd ..; \
1840           else \
1841             ln $$file ../tmp/config >/dev/null 2>&1 \
1842             || cp $$file ../tmp/config; \
1843           fi; \
1844         done
1845         cd objc; \
1846         for file in *[0-9a-zA-Z+]; do \
1847           ln $$file ../tmp/objc >/dev/null 2>&1 || cp $$file ../tmp/objc; \
1848         done
1849         ln .gdbinit tmp
1850         mv tmp gcc-$(version)
1851 # Get rid of everything we don't want in the distribution.
1852         cd gcc-$(version); make -f Makefile.in extraclean
1853
1854 # do make -f ../gcc/Makefile maketest DIR=../gcc
1855 # in the intended test directory to make it a suitable test directory.
1856 # THIS IS OBSOLETE; use the -srcdir operand in configure instead. 
1857 maketest:
1858         ln -s $(DIR)/*.[chy] .
1859         ln -s $(DIR)/configure .
1860         ln -s $(DIR)/*.def .
1861         -rm -f =*
1862         ln -s $(DIR)/.gdbinit .
1863         ln -s $(DIR)/$(FIXINCLUDES) .
1864         -ln -s $(DIR)/bison.simple .
1865         ln -s $(DIR)/config .
1866         ln -s $(DIR)/move-if-change .
1867 # The then and else were swapped to avoid a problem on Ultrix.
1868         if [ ! -f Makefile ] ; then ln -s $(DIR)/Makefile .; else false; fi
1869         -rm tm.h aux-output.c config.h md
1870         make clean
1871 # You must then run config to set up for compilation.
1872
1873 bootstrap: force
1874 # Only build the C compiler for stage1, because that is the only one that
1875 # we can guarantee will build with the native compiler, and also it is the
1876 # only thing useful for building stage2.
1877         $(MAKE) CC="$(CC)" libdir=$(libdir) LANGUAGES=c
1878         $(MAKE) stage1
1879 # This used to define ALLOCA as empty, but that would lead to bad results
1880 # for a subsequent `make install' since that would not have ALLOCA empty.
1881 # To prevent `make install' from compiling alloca.o and then relinking cc1
1882 # because alloca.o is newer, we permit these recursive makes to compile
1883 # alloca.o.  Then cc1 is newer, so it won't have to be relinked.
1884         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1885         $(MAKE) stage2
1886         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1887
1888 bootstrap2: force
1889         $(MAKE) CC="stage1/xgcc -Bstage1/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1890         $(MAKE) stage2
1891         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1892
1893 bootstrap3: force
1894         $(MAKE) CC="stage2/xgcc -Bstage2/" CFLAGS="$(BOOT_CFLAGS)" LDFLAGS="$(BOOT_LDFLAGS)" libdir=$(libdir) LANGUAGES="$(LANGUAGES)"
1895
1896 # Compare the object files in the current directory with those in the
1897 # stage2 directory.
1898
1899 compare: force
1900         for file in *.o; do \
1901           tail +16c $$file > tmp-foo1; \
1902           tail +16c stage2/$$file > tmp-foo2 2>/dev/null \
1903             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
1904         done
1905         -rm -f tmp-foo*
1906
1907 # Similar, but compare with stage3 directory
1908 compare3: force
1909         for file in *.o; do \
1910           tail +16c $$file > tmp-foo1; \
1911           tail +16c stage3/$$file > tmp-foo2 2>/dev/null \
1912             && (cmp tmp-foo1 tmp-foo2 || echo $$file differs); \
1913         done
1914         -rm -f tmp-foo*
1915
1916 # Copy the object files from a particular stage into a subdirectory.
1917 stage1: force
1918         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
1919         -mv $(STAGESTUFF) stage1
1920         -rm -f stage1/libgcc.a
1921         -cp libgcc.a stage1
1922         -if $(RANLIB_TEST) ; then $(RANLIB) stage1/libgcc.a; else true; fi
1923
1924 stage2: force
1925         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
1926         -mv $(STAGESTUFF) stage2
1927         -rm -f stage2/libgcc.a
1928         -cp libgcc.a stage2
1929         -if $(RANLIB_TEST) ; then $(RANLIB) stage2/libgcc.a; else true; fi
1930
1931 stage3: force
1932         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
1933         -mv $(STAGESTUFF) stage3
1934         -rm -f stage3/libgcc.a
1935         -cp libgcc.a stage3
1936         -if $(RANLIB_TEST) ; then $(RANLIB) stage3/libgcc.a; else true; fi
1937
1938 stage4: force
1939         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
1940         -mv $(STAGESTUFF) stage4
1941         -rm -f stage4/libgcc.a
1942         -cp libgcc.a stage4
1943         -if $(RANLIB_TEST) ; then $(RANLIB) stage4/libgcc.a; else true; fi
1944
1945 # Copy just the executable files from a particular stage into a subdirectory,
1946 # and delete the object files.  Use this if you're just verifying a version
1947 # that is pretty sure to work, and you are short of disk space.
1948 risky-stage1: force
1949         -if [ -d stage1 ] ; then true ; else mkdir stage1 ; fi
1950         -mv $(GCC_PARTS) stage1
1951         -rm -f stage1/libgcc.a
1952         -cp libgcc.a stage1 && $(RANLIB) stage1/libgcc.a
1953         -make clean
1954
1955 risky-stage2: force
1956         -if [ -d stage2 ] ; then true ; else mkdir stage2 ; fi
1957         -mv $(GCC_PARTS) stage2
1958         -rm -f stage2/libgcc.a
1959         -cp libgcc.a stage2 && $(RANLIB) stage2/libgcc.a
1960         -make clean
1961
1962 risky-stage3: force
1963         -if [ -d stage3 ] ; then true ; else mkdir stage3 ; fi
1964         -mv $(GCC_PARTS) stage3
1965         -rm -f stage3/libgcc.a
1966         -cp libgcc.a stage3 && $(RANLIB) stage3/libgcc.a
1967         -make clean
1968
1969 risky-stage4: force
1970         -if [ -d stage4 ] ; then true ; else mkdir stage4 ; fi
1971         -mv $(GCC_PARTS) stage4
1972         -rm -f stage4/libgcc.a
1973         -cp libgcc.a stage4 && $(RANLIB) stage4/libgcc.a
1974         -make clean
1975
1976 #In GNU Make, ignore whether `stage*' exists.
1977 .PHONY: stage1 stage2 stage3 stage4 clean realclean TAGS bootstrap
1978 .PHONY: risky-stage1 risky-stage2 risky-stage3 risky-stage4
1979
1980 force: