OSDN Git Service

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