* config.gcc <arm>: Add --with-abi=
[official-gcc.git] / gcc / f / Make-lang.in
blob052adfcaab9e2c25573afb6a59d5fdad5e817f3e
1 # Top level -*- makefile -*- fragment for GNU Fortran.
2 #   Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003, 2004
3 #   Free Software Foundation, Inc.
5 #This file is part of GNU Fortran.
7 #GNU Fortran is free software; you can redistribute it and/or modify
8 #it under the terms of the GNU General Public License as published by
9 #the Free Software Foundation; either version 2, or (at your option)
10 #any later version.
12 #GNU Fortran is distributed in the hope that it will be useful,
13 #but WITHOUT ANY WARRANTY; without even the implied warranty of
14 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 #GNU General Public License for more details.
17 #You should have received a copy of the GNU General Public License
18 #along with GNU Fortran; see the file COPYING.  If not, write to
19 #the Free Software Foundation, 59 Temple Place - Suite 330,
20 #Boston, MA 02111-1307, USA.
22 # This file provides the language dependent support in the main Makefile.
23 # Each language makefile fragment must provide the following targets:
25 # foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
26 # foo.install-normal, foo.install-common, foo.install-man,
27 # foo.uninstall,
28 # foo.mostlyclean, foo.clean, foo.distclean,
29 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
31 # where `foo' is the name of the language.
33 # It should also provide rules for:
35 # - making any compiler driver (eg: g++)
36 # - the compiler proper (eg: cc1plus)
37 # - define the names for selecting the language in LANGUAGES.
39 # $(srcdir) must be set to the gcc/ source directory (not gcc/f/).
40 #\f
41 # Actual name to use when installing a native compiler.
42 G77_INSTALL_NAME := $(shell echo g77|sed '$(program_transform_name)')
44 # Some versions of `touch' (such as the version on Solaris 2.8) 
45 # do not correctly set the timestamp due to buggy versions of `utime'
46 # in the kernel.  So, we use `echo' instead. 
47 STAMP = echo timestamp >
49 #\f
50 # Define the names for selecting f77 in LANGUAGES.
51 # Note that it would be nice to move the dependency on g77
52 # into the F77 rule, but that needs a little bit of work
53 # to do the right thing within all.cross.
54 F77 f77: f771$(exeext)
56 # Tell GNU make to ignore these if they exist.
57 .PHONY: F77 f77 f77.all.build f77.all.cross \
58   f77.start.encap f77.rest.encap f77.dvi \
59   f77.install-normal \
60   f77.install-common f77.install-man \
61   f77.uninstall f77.mostlyclean f77.clean f77.distclean \
62   f77.maintainer-clean \
63   f77.stage1 f77.stage2 f77.stage3 f77.stage4 \
64   f77.stageprofile f77.stagefeedback
66 g77spec.o: $(srcdir)/f/g77spec.c $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H) \
67         $(CONFIG_H) intl.h
68         (SHLIB_LINK='$(SHLIB_LINK)' \
69         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
70         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
71                 $(INCLUDES) $(srcdir)/f/g77spec.c)
73 # Create the compiler driver for g77.
74 g77$(exeext): gcc.o g77spec.o version.o prefix.o intl.o \
75   $(LIBDEPS) $(EXTRA_GCC_OBJS)
76         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o g77spec.o \
77            version.o prefix.o intl.o $(EXTRA_GCC_OBJS) $(LIBS)
79 # Create a version of the g77 driver which calls the cross-compiler.
80 g77-cross$(exeext): g77$(exeext)
81         rm -f g77-cross$(exeext); \
82         cp g77$(exeext) g77-cross$(exeext)
84 # The compiler itself.
86 F77_OBJS = f/bad.o f/bit.o f/bld.o f/com.o f/data.o f/equiv.o f/expr.o \
87  f/global.o f/implic.o f/info.o f/intrin.o f/lab.o f/lex.o f/malloc.o \
88  f/name.o f/parse.o f/src.o f/st.o f/sta.o f/stb.o f/stc.o \
89  f/std.o f/ste.o f/storag.o f/stp.o f/str.o f/sts.o f/stt.o f/stu.o \
90  f/stv.o f/stw.o f/symbol.o f/target.o f/top.o f/type.o f/where.o
92 # Use loose warnings for this front end.
93 f-warn = $(WERROR)
95 f771$(exeext): $(F77_OBJS) $(BACKEND) $(LIBDEPS)
96         rm -f f771$(exeext)
97         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(F77_OBJS) $(BACKEND) $(LIBS)
99 # Keyword tables.
100 f/stamp-str: f/str-1t.h f/str-1t.j f/str-2t.h f/str-2t.j \
101  f/str-fo.h f/str-fo.j f/str-io.h f/str-io.j f/str-nq.h  f/str-nq.j \
102  f/str-op.h f/str-op.j f/str-ot.h f/str-ot.j
103         $(STAMP) f/stamp-str
105 f/str-1t.h f/str-1t.j: f/stamp-1t ; @true
106 f/stamp-1t: f/fini$(build_exeext) f/str-1t.fin
107         ./f/fini$(build_exeext) $(srcdir)/f/str-1t.fin f/tmp-str-1t.j f/tmp-str-1t.h
108         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-1t.j f/str-1t.j
109         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-1t.h f/str-1t.h
110         $(STAMP) f/stamp-1t
112 f/str-2t.h f/str-2t.j: f/stamp-2t ; @true
113 f/stamp-2t: f/fini$(build_exeext) f/str-2t.fin
114         ./f/fini$(build_exeext) $(srcdir)/f/str-2t.fin f/tmp-str-2t.j f/tmp-str-2t.h
115         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-2t.j f/str-2t.j
116         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-2t.h f/str-2t.h
117         $(STAMP) f/stamp-2t
119 f/str-fo.h f/str-fo.j: f/stamp-fo ; @true
120 f/stamp-fo: f/fini$(build_exeext) f/str-fo.fin
121         ./f/fini$(build_exeext) $(srcdir)/f/str-fo.fin f/tmp-str-fo.j f/tmp-str-fo.h
122         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-fo.j f/str-fo.j
123         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-fo.h f/str-fo.h
124         $(STAMP) f/stamp-fo
126 f/str-io.h f/str-io.j: f/stamp-io ; @true
127 f/stamp-io: f/fini$(build_exeext) f/str-io.fin
128         ./f/fini$(build_exeext) $(srcdir)/f/str-io.fin f/tmp-str-io.j f/tmp-str-io.h
129         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-io.j f/str-io.j
130         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-io.h f/str-io.h
131         $(STAMP) f/stamp-io
133 f/str-nq.h f/str-nq.j: f/stamp-nq ; @true
134 f/stamp-nq: f/fini$(build_exeext) f/str-nq.fin
135         ./f/fini$(build_exeext) $(srcdir)/f/str-nq.fin f/tmp-str-nq.j f/tmp-str-nq.h
136         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-nq.j f/str-nq.j
137         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-nq.h f/str-nq.h
138         $(STAMP) f/stamp-nq
140 f/str-op.h f/str-op.j: f/stamp-op ; @true
141 f/stamp-op: f/fini$(build_exeext) f/str-op.fin
142         ./f/fini$(build_exeext) $(srcdir)/f/str-op.fin f/tmp-str-op.j f/tmp-str-op.h
143         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-op.j f/str-op.j
144         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-op.h f/str-op.h
145         $(STAMP) f/stamp-op
147 f/str-ot.h f/str-ot.j: f/stamp-ot ; @true
148 f/stamp-ot: f/fini$(build_exeext) f/str-ot.fin
149         ./f/fini$(build_exeext) $(srcdir)/f/str-ot.fin f/tmp-str-ot.j f/tmp-str-ot.h
150         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-ot.j f/str-ot.j
151         $(SHELL) $(srcdir)/../move-if-change f/tmp-str-ot.h f/str-ot.h
152         $(STAMP) f/stamp-ot
154 f/fini$(build_exeext): f/fini.o $(BUILD_LIBDEPS)
155         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o f/fini$(build_exeext) \
156                 f/fini.o $(BUILD_LIBS)
158 f/fini.o:
159         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
160               -c $(srcdir)/f/fini.c $(OUTPUT_OPTION)
162 gt-f-lex.h gt-f-where.h gt-f-com.h gt-f-ste.h gtype-f.h : s-gtype; @true
165 # Build hooks:
167 f77.all.build: g77$(exeext)
168 f77.all.cross: g77-cross$(exeext)
169 f77.start.encap: g77$(exeext)
170 f77.rest.encap:
172 f77.srcinfo: doc/g77.info
173         -cp -p $^ $(srcdir)/doc
174 f77.srcman: doc/g77.1
175         -cp -p $^ $(srcdir)/doc
176 f77.srcextra: f/BUGS f/NEWS 
177         -cp -p $^ $(srcdir)/f
179 f77.tags: force
180         cd $(srcdir)/f; etags -o TAGS.sub *.c *.h; \
181         etags --include TAGS.sub --include ../TAGS.sub
183 f77.info: doc/g77.info
184 dvi:: doc/g77.dvi
185 f77.man: doc/g77.1
187 check-f77 : check-g77
188 lang_checks += check-g77
190 # g77 documentation.
191 TEXI_G77_FILES = f/g77.texi f/bugs.texi f/ffe.texi f/invoke.texi \
192                  f/news.texi f/root.texi $(docdir)/include/fdl.texi \
193                  $(docdir)/include/gpl.texi $(docdir)/include/funding.texi \
194                  $(docdir)/include/gcc-common.texi $(srcdir)/f/intdoc.texi
196 doc/g77.info: $(TEXI_G77_FILES)
197         if test "x$(BUILD_INFO)" = xinfo; then \
198           rm -f $(@)*; \
199           $(MAKEINFO) $(MAKEINFOFLAGS) -I$(docdir)/include -I$(srcdir)/f \
200             -o$@ $<; \
201         else true; fi
203 doc/g77.dvi: $(TEXI_G77_FILES)
204         $(TEXI2DVI) -I $(srcdir)/f -I $(abs_docdir)/include -I $(objdir)/f -o $@ $<
206 .INTERMEDIATE: g77.pod
207 g77.pod: f/invoke.texi
208         -$(TEXI2POD) < $< > $@
210 # This dance is all about producing accurate documentation for g77's
211 # intrinsics with minimum fuss.  f/ansify appends "\n\" to C strings
212 # so ANSI C compilers can compile f/intdoc.h -- gcc can compile f/intdoc.in
213 # directly, if f/intdoc.c #include'd that, but we don't want to force
214 # people to install gcc just to build the documentation.  We use the
215 # C format for f/intdoc.in in the first place to allow a fairly "free",
216 # but widely known format for documentation -- basically anyone who knows
217 # how to write texinfo source and enclose it in C constants can handle
218 # it, and f/ansify allows them to not even end lines with "\n\".  So,
219 # essentially, the C preprocessor and compiler are used to enter the
220 # document snippets into a data base via name lookup, rather than duplicating
221 # that kind of code here.  And we use f/intdoc.c instead of straight
222 # texinfo in the first place so that as much information as possible
223 # contained in f/intrin.def can be inserted directly and reliably into
224 # the documentation.  That's better than replicating it, because it
225 # reduces the likelihood of discrepancies between the docs and the compiler
226 # itself, which uses f/intrin.def; in fact, many bugs in f/intrin.def have
227 # been found only upon reading the documentation that was automatically
228 # produced from it.
230 # If the documentation files depended on executables in the build
231 # tree, there'd be no way to ship a source tree with the documentation
232 # already generated such that `make' wouldn't attempt to rebuild it.
233 # So, we punt and arrange for the documentation files to depend on the
234 # dependencies of the executables, not on the executables themselves.
235 # But then, we have to build the executables explicitly in their build
236 # rules.
238 INTDOC_DEPS = f/intdoc.c f/intrin.h f/intrin.def
240 $(srcdir)/f/intdoc.texi: $(INTDOC_DEPS) f/intdoc.in
241         $(MAKE) f/intdoc$(build_exeext)
242         f/intdoc$(build_exeext) > $(srcdir)/f/intdoc.texi
244 f/intdoc$(build_exeext): $(INTDOC_DEPS) f/intdoc.h0 bconfig.h \
245   $(SYSTEM_H) coretypes.h $(TM_H) $(BUILD_LIBDEPS)
246         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) $< \
247           $(BUILD_LIBS) -o $@
249 f/intdoc.h0: f/intdoc.in f/ansify$(build_exeext)
250         f/ansify$(build_exeext) $< < $< > $@
252 f/ansify$(build_exeext): f/ansify.c bconfig.h $(SYSTEM_H) coretypes.h $(TM_H)
253           $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) $< \
254           -o $@
256 f/BUGS: f/bugs0.texi f/bugs.texi f/root.texi
257         if [ x$(BUILD_INFO) = xinfo ]; then \
258           rm -f $(@)*; \
259           $(MAKEINFO) $(MAKEINFOFLAGS) -D BUGSONLY --no-header --no-split \
260            --no-validate -I$(docdir)/include -I$(srcdir)/f -o $@ bugs0.texi; \
261         else true; fi
263 f/NEWS: f/news0.texi f/news.texi f/root.texi
264         if [ x$(BUILD_INFO) = xinfo ]; then \
265           rm -f $(@)*; \
266           $(MAKEINFO) $(MAKEINFOFLAGS) -D NEWSONLY --no-header --no-split \
267            --no-validate -I$(docdir)/include -I$(srcdir)/f -o $@ news0.texi; \
268         else true; fi
271 # Install hooks:
272 # f771 is installed elsewhere as part of $(COMPILERS).
274 f77.install-normal:
276 # Install the driver program as $(target)-g77
277 # and also as either g77 (if native) or $(tooldir)/bin/g77.
278 f77.install-common: installdirs
279         -if [ -f f771$(exeext) ] ; then \
280           rm -f $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
281           $(INSTALL_PROGRAM) g77$(exeext) $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
282           chmod a+x $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
283         else true; fi
284         @if [ -f f77-install-ok -o -f $(srcdir)/f77-install-ok ]; then \
285           echo ''; \
286           echo 'Warning: gcc no longer installs an f77 command.'; \
287           echo '         You must do so yourself.  For more information,'; \
288           echo '         read "Distributing Binaries" in the g77 docs.'; \
289           echo '         (To turn off this warning, delete the file'; \
290           echo '         f77-install-ok in the source or build directory.)'; \
291           echo ''; \
292         else true; fi
294 install-info:: $(DESTDIR)$(infodir)/g77.info
296 f77.install-man: installdirs $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext)
298 $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext): doc/g77.1
299         -rm -f $@
300         -$(INSTALL_DATA) $< $@
301         -chmod a-x $@
303 f77.uninstall: installdirs
304         if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
305           echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info"; \
306           install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info || : ; \
307         else : ; fi
308         rm -rf $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
309         rm -rf $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
310         rm -rf $(DESTDIR)$(infodir)/g77.info*
312 # Clean hooks:
313 # A lot of the ancillary files are deleted by the main makefile.
314 # We just have to delete files specific to us.
316 f77.mostlyclean:
317         -rm -f f/*$(objext)
318         -rm -f f/*$(coverageexts)
319         -rm -f f/fini$(build_exeext) f/stamp-str f/str-*.h f/str-*.j
320         -rm -f f/BUGS f/NEWS
321         -rm -f g77.aux g77.cps g77.ky g77.toc g77.vr g77.fn g77.kys \
322                g77.pg g77.tp g77.vrs g77.cp g77.fns g77.log g77.pgs g77.tps 
323 f77.clean:
324         -rm -f g77spec.o
325 f77.distclean:
326         -rm -f f/Makefile
327 f77.maintainer-clean:
328         -rm -f $(srcdir)/f/BUGS $(srcdir)/f/TAGS $(srcdir)/f/TAGS.SUB
329         -rm -f $(srcdir)/f/NEWS $(srcdir)/f/intdoc.texi
331 # Stage hooks:
332 # The main makefile has already created stage?/f.
334 G77STAGESTUFF = f/*$(objext) f/fini$(build_exeext) f/stamp-* \
335   f/str-*.h f/str-*.j g77spec.o
337 f77.stage1: stage1-start
338         -mv -f $(G77STAGESTUFF) stage1/f
340 f77.stage2: stage2-start
341         -mv -f $(G77STAGESTUFF) stage2/f
343 f77.stage3: stage3-start
344         -mv -f $(G77STAGESTUFF) stage3/f
346 f77.stage4: stage4-start
347         -mv -f $(G77STAGESTUFF) stage4/f
349 f77.stageprofile: stageprofile-start
350         -mv -f $(G77STAGESTUFF) stageprofile/f
352 f77.stagefeedback: stageprofile-start
353         -mv -f $(G77STAGESTUFF) stagefeedback/f
355 # .o: .h dependencies.
357 f/bad.o: f/bad.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
358  glimits.h f/top.h f/malloc.h flags.h f/com.h f/com-rt.def $(TREE_H) f/bld.h \
359  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
360  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
361  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h toplev.h intl.h \
362  diagnostic.h coretypes.h $(TM_H)
363 f/bit.o: f/bit.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/bit.h \
364  f/malloc.h coretypes.h $(TM_H)
365 f/bld.o: f/bld.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
366  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
367  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h f/lex.h \
368  f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h f/global.h \
369  f/name.h f/intrin.h f/intrin.def real.h coretypes.h $(TM_H)
370 f/com.o: f/com.c f/proj.h $(CONFIG_H) $(SYSTEM_H) flags.h $(RTL_H) $(TREE_H) \
371  output.h convert.h f/com.h f/com-rt.def f/bld.h f/bld-op.def f/bit.h \
372  f/malloc.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
373  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
374  f/intrin.def f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
375  f/name.h f/expr.h f/implic.h f/src.h f/st.h $(GGC_H) toplev.h diagnostic.h \
376  $(LANGHOOKS_DEF) langhooks.h intl.h real.h debug.h gt-f-com.h gtype-f.h \
377  coretypes.h $(TM_H)
378 f/data.o: f/data.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/data.h f/bld.h f/bld-op.def \
379  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
380  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
381  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
382  f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/st.h coretypes.h $(TM_H)
383 f/equiv.o: f/equiv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/equiv.h f/bld.h \
384  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
385  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
386  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
387  f/global.h f/name.h f/intrin.h f/intrin.def f/data.h coretypes.h $(TM_H)
388 f/expr.o: f/expr.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/expr.h f/bld.h f/bld-op.def \
389  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
390  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
391  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
392  f/global.h f/name.h f/intrin.h f/intrin.def f/implic.h f/src.h f/st.h \
393  f/stamp-str real.h coretypes.h $(TM_H)
394 f/fini.o: f/fini.c f/proj.h bconfig.h $(SYSTEM_H) f/malloc.h coretypes.h $(TM_H)
395 f/global.o: f/global.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/global.h f/info.h \
396  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
397  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/name.h f/symbol.h \
398  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
399  f/storag.h f/intrin.h f/intrin.def f/equiv.h coretypes.h $(TM_H)
400 f/implic.o: f/implic.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/implic.h f/info.h \
401  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
402  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/symbol.h \
403  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
404  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/src.h \
405  coretypes.h $(TM_H)
406 f/info.o: f/info.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/info.h f/info-b.def \
407  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def f/where.h \
408  glimits.h f/top.h f/malloc.h f/lex.h f/type.h coretypes.h $(TM_H)
409 f/intrin.o: f/intrin.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/intrin.h \
410  f/intrin.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def \
411  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
412  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
413  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/expr.h f/src.h \
414  coretypes.h $(TM_H)
415 f/lab.o: f/lab.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/lab.h f/com.h f/com-rt.def \
416  $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h f/info.h f/info-b.def \
417  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
418  f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def f/symbol.h f/symbol.def \
419  f/equiv.h f/storag.h f/global.h f/name.h coretypes.h $(TM_H)
420 f/lex.o: f/lex.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
421  glimits.h f/bad.h f/bad.def f/com.h f/com-rt.def $(TREE_H) f/bld.h \
422  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
423  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
424  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h f/src.h flags.h \
425  debug.h input.h toplev.h output.h $(GGC_H) gt-f-lex.h coretypes.h $(TM_H)
426 f/malloc.o: f/malloc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/malloc.h \
427  coretypes.h $(TM_H)
428 f/name.o: f/name.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
429  glimits.h f/top.h f/malloc.h f/name.h f/global.h f/info.h f/info-b.def \
430  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/lex.h f/type.h f/symbol.h \
431  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
432  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/src.h coretypes.h $(TM_H)
433 f/parse.o: f/parse.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h \
434  f/where.h glimits.h f/com.h f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def \
435  f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
436  f/bad.def f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
437  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h version.h flags.h \
438  coretypes.h $(TM_H)
439 f/src.o: f/src.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
440  f/where.h glimits.h f/top.h f/malloc.h coretypes.h $(TM_H)
441 f/st.o: f/st.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/st.h f/bad.h f/bad.def \
442  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/symbol.h f/symbol.def \
443  f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
444  f/info-b.def f/info-k.def f/info-w.def f/target.h f/type.h f/lab.h \
445  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/sta.h \
446  f/stamp-str f/stb.h f/expr.h f/stp.h f/stt.h f/stc.h f/std.h \
447  f/stv.h f/stw.h f/ste.h f/sts.h f/stu.h coretypes.h $(TM_H)
448 f/sta.o: f/sta.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sta.h f/bad.h f/bad.def \
449  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/stamp-str f/symbol.h \
450  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) \
451  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/type.h f/lab.h \
452  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/implic.h \
453  f/stb.h f/expr.h f/stp.h f/stt.h f/stc.h f/std.h f/stv.h f/stw.h coretypes.h \
454  $(TM_H)
455 f/stb.o: f/stb.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stb.h f/bad.h f/bad.def \
456  f/where.h glimits.h f/top.h f/malloc.h f/expr.h f/bld.h f/bld-op.def f/bit.h \
457  f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
458  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
459  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
460  f/stt.h f/stamp-str f/src.h f/sta.h f/stc.h coretypes.h $(TM_H)
461 f/stc.o: f/stc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stc.h f/bad.h f/bad.def \
462  f/where.h glimits.h f/top.h f/malloc.h f/bld.h f/bld-op.def f/bit.h f/com.h \
463  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def \
464  f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
465  f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/stp.h \
466  f/stt.h f/stamp-str f/data.h f/implic.h f/src.h f/sta.h f/std.h f/stv.h \
467  f/stw.h coretypes.h $(TM_H)
468 f/std.o: f/std.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/std.h f/bld.h f/bld-op.def \
469  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
470  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
471  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
472  f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h f/stt.h f/stamp-str \
473  f/stv.h f/stw.h f/sta.h f/ste.h f/sts.h coretypes.h $(TM_H)
474 f/ste.o: f/ste.c f/proj.h $(CONFIG_H) $(SYSTEM_H) $(RTL_H) toplev.h f/ste.h \
475  f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
476  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
477  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
478  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
479  f/stt.h f/stamp-str f/sts.h f/stv.h f/stw.h f/expr.h f/sta.h $(GGC_H) \
480  gt-f-ste.h coretypes.h $(TM_H)
481 f/storag.o: f/storag.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/storag.h f/bld.h  \
482  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
483  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
484  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h \
485  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
486  f/intrin.def f/data.h coretypes.h $(TM_H)
487 f/stp.o: f/stp.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stp.h f/bld.h f/bld-op.def \
488  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
489  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
490  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
491  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
492  f/intrin.def f/stt.h coretypes.h $(TM_H)
493 f/str.o: f/str.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
494  f/where.h glimits.h f/top.h f/malloc.h f/stamp-str f/lex.h coretypes.h $(TM_H)
495 f/sts.o: f/sts.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sts.h f/malloc.h f/com.h \
496  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/info.h \
497  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
498  f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def \
499  f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
500  f/name.h coretypes.h $(TM_H)
501 f/stt.o: f/stt.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stt.h f/top.h f/malloc.h \
502  f/where.h glimits.h f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def \
503  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h \
504  f/bad.h f/bad.def f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
505  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
506  f/stp.h f/expr.h f/sta.h f/stamp-str coretypes.h $(TM_H)
507 f/stu.o: f/stu.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
508  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
509  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
510  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
511  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
512  f/implic.h f/stu.h f/sta.h f/stamp-str coretypes.h $(TM_H)
513 f/stv.o: f/stv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stv.h f/lab.h f/com.h \
514  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h \
515  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
516  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
517  f/intrin.def f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
518  f/name.h coretypes.h $(TM_H)
519 f/stw.o: f/stw.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stw.h f/bld.h f/bld-op.def \
520  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
521  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
522  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
523  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
524  f/intrin.def f/stv.h f/sta.h f/stamp-str coretypes.h $(TM_H)
525 f/symbol.o: f/symbol.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/symbol.h \
526  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h \
527  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
528  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h \
529  f/lex.h f/type.h f/lab.h f/storag.h f/intrin.h f/intrin.def f/equiv.h \
530  f/global.h f/name.h f/src.h f/st.h coretypes.h $(TM_H)
531 f/target.o: f/target.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/target.h \
532  $(TREE_H) f/bad.h f/bad.def f/where.h f/top.h f/malloc.h f/info.h real.h \
533  f/info-b.def f/info-k.def f/info-w.def f/type.h f/lex.h diagnostic.h \
534  coretypes.h $(TM_H) toplev.h
535 f/top.o: f/top.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
536  glimits.h f/bad.h f/bad.def f/bit.h f/bld.h f/bld-op.def f/com.h \
537  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
538  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h \
539  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
540  f/intrin.def f/data.h f/expr.h f/implic.h f/src.h f/st.h flags.h \
541  toplev.h coretypes.h $(TM_H) opts.h options.h
542 f/type.o: f/type.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/type.h f/malloc.h \
543  coretypes.h $(TM_H)
544 f/where.o: f/where.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/where.h glimits.h \
545  f/top.h f/malloc.h f/lex.h $(GGC_H) gt-f-where.h coretypes.h $(TM_H)