2003-12-26 Guilhem Lavaux <guilhem@kaffe.org>
[official-gcc.git] / gcc / f / Make-lang.in
blobb54b83c1f5e399af230a08901f06d8cd0286d235
1 # Top level -*- makefile -*- fragment for GNU Fortran.
2 #   Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003 Free Software Foundation, Inc.
4 #This file is part of GNU Fortran.
6 #GNU Fortran 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.
11 #GNU Fortran 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.
16 #You should have received a copy of the GNU General Public License
17 #along with GNU Fortran; see the file COPYING.  If not, write to
18 #the Free Software Foundation, 59 Temple Place - Suite 330,
19 #Boston, MA 02111-1307, USA.
21 # This file provides the language dependent support in the main Makefile.
22 # Each language makefile fragment must provide the following targets:
24 # foo.all.build, foo.all.cross, foo.start.encap, foo.rest.encap,
25 # foo.install-normal, foo.install-common, foo.install-man,
26 # foo.uninstall,
27 # foo.mostlyclean, foo.clean, foo.distclean,
28 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
30 # where `foo' is the name of the language.
32 # It should also provide rules for:
34 # - making any compiler driver (eg: g++)
35 # - the compiler proper (eg: cc1plus)
36 # - define the names for selecting the language in LANGUAGES.
38 # $(srcdir) must be set to the gcc/ source directory (not gcc/f/).
39 #\f
40 # Actual name to use when installing a native compiler.
41 G77_INSTALL_NAME = `echo g77|sed '$(program_transform_name)'`
43 # Some versions of `touch' (such as the version on Solaris 2.8) 
44 # do not correctly set the timestamp due to buggy versions of `utime'
45 # in the kernel.  So, we use `echo' instead. 
46 STAMP = echo timestamp >
48 #\f
49 # Define the names for selecting f77 in LANGUAGES.
50 # Note that it would be nice to move the dependency on g77
51 # into the F77 rule, but that needs a little bit of work
52 # to do the right thing within all.cross.
53 F77 f77: f771$(exeext)
55 # Tell GNU make to ignore these if they exist.
56 .PHONY: F77 f77 f77.all.build f77.all.cross \
57   f77.start.encap f77.rest.encap f77.dvi \
58   f77.install-normal \
59   f77.install-common f77.install-man \
60   f77.uninstall f77.mostlyclean f77.clean f77.distclean \
61   f77.maintainer-clean f77.rebuilt \
62   f77.stage1 f77.stage2 f77.stage3 f77.stage4 \
63   f77.stageprofile f77.stagefeedback
65 g77spec.o: $(srcdir)/f/g77spec.c $(SYSTEM_H) coretypes.h $(TM_H) $(GCC_H) \
66         $(CONFIG_H)
67         (SHLIB_LINK='$(SHLIB_LINK)' \
68         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
69         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
70                 $(INCLUDES) $(srcdir)/f/g77spec.c)
72 # Create the compiler driver for g77.
73 g77$(exeext): gcc.o g77spec.o version.o prefix.o intl.o \
74   $(LIBDEPS) $(EXTRA_GCC_OBJS)
75         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ gcc.o g77spec.o \
76            version.o prefix.o intl.o $(EXTRA_GCC_OBJS) $(LIBS)
78 # Create a version of the g77 driver which calls the cross-compiler.
79 g77-cross$(exeext): g77$(exeext)
80         rm -f g77-cross$(exeext); \
81         cp g77$(exeext) g77-cross$(exeext)
83 # The compiler itself.
85 F77_OBJS = f/bad.o f/bit.o f/bld.o f/com.o f/data.o f/equiv.o f/expr.o \
86  f/global.o f/implic.o f/info.o f/intrin.o f/lab.o f/lex.o f/malloc.o \
87  f/name.o f/parse.o f/src.o f/st.o f/sta.o f/stb.o f/stc.o \
88  f/std.o f/ste.o f/storag.o f/stp.o f/str.o f/sts.o f/stt.o f/stu.o \
89  f/stv.o f/stw.o f/symbol.o f/target.o f/top.o f/type.o f/where.o
91 # Use loose warnings for this front end.
92 f-warn = $(WERROR)
93 # type-punning warning
94 f/sta.o-warn = -Wno-error
96 f771$(exeext): $(F77_OBJS) $(BACKEND) $(LIBDEPS)
97         rm -f f771$(exeext)
98         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(F77_OBJS) $(BACKEND) $(LIBS)
100 # Keyword tables.
101 f/stamp-str: f/str-1t.h f/str-1t.j f/str-2t.h f/str-2t.j \
102  f/str-fo.h f/str-fo.j f/str-io.h f/str-io.j f/str-nq.h  f/str-nq.j \
103  f/str-op.h f/str-op.j f/str-ot.h f/str-ot.j
104         $(STAMP) f/stamp-str
106 f/str-1t.h f/str-1t.j: f/fini$(build_exeext) f/str-1t.fin
107         ./f/fini$(build_exeext) $(srcdir)/f/str-1t.fin f/str-1t.j f/str-1t.h
109 f/str-2t.h f/str-2t.j: f/fini$(build_exeext) f/str-2t.fin
110         ./f/fini$(build_exeext) $(srcdir)/f/str-2t.fin f/str-2t.j f/str-2t.h
112 f/str-fo.h f/str-fo.j: f/fini$(build_exeext) f/str-fo.fin
113         ./f/fini$(build_exeext) $(srcdir)/f/str-fo.fin f/str-fo.j f/str-fo.h
115 f/str-io.h f/str-io.j: f/fini$(build_exeext) f/str-io.fin
116         ./f/fini$(build_exeext) $(srcdir)/f/str-io.fin f/str-io.j f/str-io.h
118 f/str-nq.h f/str-nq.j: f/fini$(build_exeext) f/str-nq.fin
119         ./f/fini$(build_exeext) $(srcdir)/f/str-nq.fin f/str-nq.j f/str-nq.h
121 f/str-op.h f/str-op.j: f/fini$(build_exeext) f/str-op.fin
122         ./f/fini$(build_exeext) $(srcdir)/f/str-op.fin f/str-op.j f/str-op.h
124 f/str-ot.h f/str-ot.j: f/fini$(build_exeext) f/str-ot.fin
125         ./f/fini$(build_exeext) $(srcdir)/f/str-ot.fin f/str-ot.j f/str-ot.h
127 f/fini$(build_exeext): f/fini.o $(BUILD_LIBDEPS)
128         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o f/fini$(build_exeext) \
129                 f/fini.o $(BUILD_LIBS)
131 f/fini.o:
132         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
133               -c $(srcdir)/f/fini.c $(OUTPUT_OPTION)
135 gt-f-lex.h gt-f-where.h gt-f-com.h gt-f-ste.h gtype-f.h : s-gtype; @true
138 # Build hooks:
140 f77.all.build: g77$(exeext)
141 f77.all.cross: g77-cross$(exeext)
142 f77.start.encap: g77$(exeext)
143 f77.rest.encap:
145 f77.tags: force
146         cd $(srcdir)/f; etags -o TAGS.sub *.c *.h; \
147         etags --include TAGS.sub --include ../TAGS.sub
149 info:: $(docobjdir)/g77.info
150 dvi:: $(docobjdir)/g77.dvi
151 generated-manpages:: $(docobjdir)/g77.1
153 check-f77 : check-g77
154 lang_checks += check-g77
156 # g77 documentation.
157 $(docobjdir)/g77.info: $(srcdir)/f/g77.texi $(srcdir)/f/bugs.texi \
158                 $(srcdir)/f/ffe.texi $(srcdir)/f/invoke.texi \
159                 $(srcdir)/f/news.texi  $(srcdir)/f/intdoc.texi \
160                 $(srcdir)/f/root.texi $(docdir)/include/fdl.texi \
161                 $(docdir)/include/gpl.texi \
162                 $(docdir)/include/funding.texi \
163                 $(docdir)/include/gcc-common.texi \
164                 stmp-docobjdir
165         if [ x$(BUILD_INFO) = xinfo ]; then \
166           rm -f $(@)*; \
167           $(MAKEINFO) -I$(docdir)/include -I$(srcdir)/f -o $@ $<; \
168         else true; fi
170 $(docobjdir)/g77.dvi: $(srcdir)/f/g77.texi $(srcdir)/f/bugs.texi \
171                 $(srcdir)/f/ffe.texi $(srcdir)/f/invoke.texi \
172                 $(srcdir)/f/news.texi  $(srcdir)/f/intdoc.texi \
173                 $(srcdir)/f/root.texi $(docdir)/include/fdl.texi \
174                 $(docdir)/include/gpl.texi \
175                 $(docdir)/include/funding.texi \
176                 $(docdir)/include/gcc-common.texi \
177                 stmp-docobjdir
178         $(TEXI2DVI) -I $(srcdir)/f -I $(docdir)/include -o $@ $<
180 .INTERMEDIATE: g77.pod
181 g77.pod: f/invoke.texi
182         -$(TEXI2POD) < $< > $@
184 # This dance is all about producing accurate documentation for g77's
185 # intrinsics with minimum fuss.  f/ansify appends "\n\" to C strings
186 # so ANSI C compilers can compile f/intdoc.h -- gcc can compile f/intdoc.in
187 # directly, if f/intdoc.c #include'd that, but we don't want to force
188 # people to install gcc just to build the documentation.  We use the
189 # C format for f/intdoc.in in the first place to allow a fairly "free",
190 # but widely known format for documentation -- basically anyone who knows
191 # how to write texinfo source and enclose it in C constants can handle
192 # it, and f/ansify allows them to not even end lines with "\n\".  So,
193 # essentially, the C preprocessor and compiler are used to enter the
194 # document snippets into a data base via name lookup, rather than duplicating
195 # that kind of code here.  And we use f/intdoc.c instead of straight
196 # texinfo in the first place so that as much information as possible
197 # contained in f/intrin.def can be inserted directly and reliably into
198 # the documentation.  That's better than replicating it, because it
199 # reduces the likelihood of discrepancies between the docs and the compiler
200 # itself, which uses f/intrin.def; in fact, many bugs in f/intrin.def have
201 # been found only upon reading the documentation that was automatically
202 # produced from it.
204 # If the documentation files depended on executables in the build
205 # tree, there'd be no way to ship a source tree with the documentation
206 # already generated such that `make' wouldn't attempt to rebuilt it.
207 # So, we punt and arrange for the documentation files to depend on the
208 # dependencies of the executables, not on the executables themselves.
209 # But then, we have to build the executables explicitly in their build
210 # rules.
212 INTDOC_DEPS = $(srcdir)/f/intdoc.c $(srcdir)/f/intrin.h $(srcdir)/f/intrin.def
214 $(srcdir)/f/intdoc.texi: $(INTDOC_DEPS) $(srcdir)/f/intdoc.in
215         $(MAKE) f/intdoc$(build_exeext)
216         f/intdoc$(build_exeext) > $(srcdir)/f/intdoc.texi
218 f/intdoc$(build_exeext): $(INTDOC_DEPS) f/intdoc.h0 bconfig.h \
219   $(SYSTEM_H) coretypes.h $(TM_H) $(BUILD_LIBDEPS)
220           $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
221                   $(srcdir)/f/intdoc.c $(BUILD_LIBS) -o f/intdoc$(build_exeext)
223 f/intdoc.h0: f/intdoc.in f/ansify$(build_exeext)
224         f/ansify$(build_exeext) $(srcdir)/f/intdoc.in \
225                 < $(srcdir)/f/intdoc.in > f/intdoc.h0
227 f/ansify$(build_exeext): f/ansify.c bconfig.h $(SYSTEM_H) coretypes.h $(TM_H)
228           $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) \
229                 $(srcdir)/f/ansify.c -o f/ansify$(build_exeext)
231 $(srcdir)/f/BUGS: f/bugs0.texi f/bugs.texi f/root.texi
232         cd $(srcdir)/f; $(MAKEINFO) -D BUGSONLY --no-header --no-split \
233           --no-validate -I../doc/include -o BUGS bugs0.texi
235 $(srcdir)/f/NEWS: f/news0.texi f/news.texi f/root.texi
236         cd $(srcdir)/f; $(MAKEINFO) -D NEWSONLY --no-header --no-split \
237           --no-validate -I../doc/include -o NEWS news0.texi
239 f77.rebuilt: $(docobjdir)/g77.info $(srcdir)/f/BUGS \
240   $(srcdir)/f/NEWS 
243 # Install hooks:
244 # f771 is installed elsewhere as part of $(COMPILERS).
246 f77.install-normal:
248 # Install the driver program as $(target)-g77
249 # and also as either g77 (if native) or $(tooldir)/bin/g77.
250 f77.install-common: installdirs
251         -if [ -f f771$(exeext) ] ; then \
252           rm -f $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
253           $(INSTALL_PROGRAM) g77$(exeext) $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
254           chmod a+x $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
255         else true; fi
256         @if [ -f f77-install-ok -o -f $(srcdir)/f77-install-ok ]; then \
257           echo ''; \
258           echo 'Warning: gcc no longer installs an f77 command.'; \
259           echo '         You must do so yourself.  For more information,'; \
260           echo '         read "Distributing Binaries" in the g77 docs.'; \
261           echo '         (To turn off this warning, delete the file'; \
262           echo '         f77-install-ok in the source or build directory.)'; \
263           echo ''; \
264         else true; fi
266 install-info:: $(DESTDIR)$(infodir)/g77.info
268 f77.install-man: $(GENERATED_MANPAGES) installdirs
269         -if [ -f f771$(exeext) ] ; then \
270           rm -f $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
271           $(INSTALL_DATA) $(docobjdir)/g77.1 $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
272           chmod a-x $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
273         else true; fi
275 f77.uninstall: installdirs
276         if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
277           echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info"; \
278           install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info || : ; \
279         else : ; fi
280         rm -rf $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
281         rm -rf $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
282         rm -rf $(DESTDIR)$(infodir)/g77.info*
284 # Clean hooks:
285 # A lot of the ancillary files are deleted by the main makefile.
286 # We just have to delete files specific to us.
288 f77.mostlyclean:
289         -rm -f f/*$(objext)
290         -rm -f f/*$(coverageexts)
291         -rm -f f/fini$(build_exeext) f/stamp-str f/str-*.h f/str-*.j
292         -rm -f f/intdoc$(build_exeext) f/ansify$(build_exeext) f/intdoc.h0
293         -rm -f g77.aux g77.cps g77.ky g77.toc g77.vr g77.fn g77.kys \
294                g77.pg g77.tp g77.vrs g77.cp g77.fns g77.log g77.pgs g77.tps 
295 f77.clean:
296         -rm -f g77spec.o
297 f77.distclean:
298         -rm -f f/Makefile
299 f77.maintainer-clean:
300         -rm -f f/g77.info* f/g77.*aux f/TAGS f/TAGS.sub f/BUGS f/NEWS f/intdoc.texi
302 # Stage hooks:
303 # The main makefile has already created stage?/f.
305 G77STAGESTUFF = f/*$(objext) f/fini$(build_exeext) f/stamp-str \
306   f/str-*.h f/str-*.j g77spec.o
308 f77.stage1: stage1-start
309         -mv -f $(G77STAGESTUFF) stage1/f
311 f77.stage2: stage2-start
312         -mv -f $(G77STAGESTUFF) stage2/f
314 f77.stage3: stage3-start
315         -mv -f $(G77STAGESTUFF) stage3/f
317 f77.stage4: stage4-start
318         -mv -f $(G77STAGESTUFF) stage4/f
320 f77.stageprofile: stageprofile-start
321         -mv -f $(G77STAGESTUFF) stageprofile/f
323 f77.stagefeedback: stageprofile-start
324         -mv -f $(G77STAGESTUFF) stagefeedback/f
326 # .o: .h dependencies.
328 f/bad.o: f/bad.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
329  glimits.h f/top.h f/malloc.h flags.h f/com.h f/com-rt.def $(TREE_H) f/bld.h \
330  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
331  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
332  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h toplev.h intl.h \
333  diagnostic.h coretypes.h $(TM_H)
334 f/bit.o: f/bit.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/bit.h \
335  f/malloc.h coretypes.h $(TM_H)
336 f/bld.o: f/bld.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
337  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
338  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h f/lex.h \
339  f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h f/global.h \
340  f/name.h f/intrin.h f/intrin.def real.h coretypes.h $(TM_H)
341 f/com.o: f/com.c f/proj.h $(CONFIG_H) $(SYSTEM_H) flags.h $(RTL_H) $(TREE_H) \
342  output.h convert.h f/com.h f/com-rt.def f/bld.h f/bld-op.def f/bit.h \
343  f/malloc.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
344  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
345  f/intrin.def f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
346  f/name.h f/expr.h f/implic.h f/src.h f/st.h $(GGC_H) toplev.h diagnostic.h \
347  $(LANGHOOKS_DEF) langhooks.h intl.h real.h debug.h gt-f-com.h gtype-f.h \
348  coretypes.h $(TM_H)
349 f/data.o: f/data.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/data.h f/bld.h f/bld-op.def \
350  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
351  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
352  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
353  f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/st.h coretypes.h $(TM_H)
354 f/equiv.o: f/equiv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/equiv.h f/bld.h \
355  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
356  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
357  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
358  f/global.h f/name.h f/intrin.h f/intrin.def f/data.h coretypes.h $(TM_H)
359 f/expr.o: f/expr.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/expr.h f/bld.h f/bld-op.def \
360  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
361  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
362  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
363  f/global.h f/name.h f/intrin.h f/intrin.def f/implic.h f/src.h f/st.h \
364  f/stamp-str real.h coretypes.h $(TM_H)
365 f/fini.o: f/fini.c f/proj.h bconfig.h $(SYSTEM_H) f/malloc.h coretypes.h $(TM_H)
366 f/global.o: f/global.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/global.h f/info.h \
367  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
368  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/name.h f/symbol.h \
369  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
370  f/storag.h f/intrin.h f/intrin.def f/equiv.h coretypes.h $(TM_H)
371 f/implic.o: f/implic.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/implic.h f/info.h \
372  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
373  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/symbol.h \
374  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
375  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/src.h \
376  coretypes.h $(TM_H)
377 f/info.o: f/info.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/info.h f/info-b.def \
378  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def f/where.h \
379  glimits.h f/top.h f/malloc.h f/lex.h f/type.h coretypes.h $(TM_H)
380 f/intrin.o: f/intrin.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/intrin.h \
381  f/intrin.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def \
382  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
383  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
384  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/expr.h f/src.h \
385  coretypes.h $(TM_H)
386 f/lab.o: f/lab.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/lab.h f/com.h f/com-rt.def \
387  $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h f/info.h f/info-b.def \
388  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
389  f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def f/symbol.h f/symbol.def \
390  f/equiv.h f/storag.h f/global.h f/name.h coretypes.h $(TM_H)
391 f/lex.o: f/lex.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
392  glimits.h f/bad.h f/bad.def f/com.h f/com-rt.def $(TREE_H) f/bld.h \
393  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
394  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
395  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h f/src.h flags.h \
396  debug.h input.h toplev.h output.h $(GGC_H) gt-f-lex.h coretypes.h $(TM_H)
397 f/malloc.o: f/malloc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/malloc.h \
398  coretypes.h $(TM_H)
399 f/name.o: f/name.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
400  glimits.h f/top.h f/malloc.h f/name.h f/global.h f/info.h f/info-b.def \
401  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/lex.h f/type.h f/symbol.h \
402  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
403  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/src.h coretypes.h $(TM_H)
404 f/parse.o: f/parse.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h \
405  f/where.h glimits.h f/com.h f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def \
406  f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
407  f/bad.def f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
408  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h version.h flags.h \
409  coretypes.h $(TM_H)
410 f/src.o: f/src.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
411  f/where.h glimits.h f/top.h f/malloc.h coretypes.h $(TM_H)
412 f/st.o: f/st.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/st.h f/bad.h f/bad.def \
413  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/symbol.h f/symbol.def \
414  f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
415  f/info-b.def f/info-k.def f/info-w.def f/target.h f/type.h f/lab.h \
416  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/sta.h \
417  f/stamp-str f/stb.h f/expr.h f/stp.h f/stt.h f/stc.h f/std.h \
418  f/stv.h f/stw.h f/ste.h f/sts.h f/stu.h coretypes.h $(TM_H)
419 f/sta.o: f/sta.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sta.h f/bad.h f/bad.def \
420  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/stamp-str f/symbol.h \
421  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) \
422  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/type.h f/lab.h \
423  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/implic.h \
424  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 \
425  $(TM_H)
426 f/stb.o: f/stb.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stb.h f/bad.h f/bad.def \
427  f/where.h glimits.h f/top.h f/malloc.h f/expr.h f/bld.h f/bld-op.def f/bit.h \
428  f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
429  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
430  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
431  f/stt.h f/stamp-str f/src.h f/sta.h f/stc.h coretypes.h $(TM_H)
432 f/stc.o: f/stc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stc.h f/bad.h f/bad.def \
433  f/where.h glimits.h f/top.h f/malloc.h f/bld.h f/bld-op.def f/bit.h f/com.h \
434  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def \
435  f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
436  f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/stp.h \
437  f/stt.h f/stamp-str f/data.h f/implic.h f/src.h f/sta.h f/std.h f/stv.h \
438  f/stw.h coretypes.h $(TM_H)
439 f/std.o: f/std.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/std.h f/bld.h f/bld-op.def \
440  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
441  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
442  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
443  f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h f/stt.h f/stamp-str \
444  f/stv.h f/stw.h f/sta.h f/ste.h f/sts.h coretypes.h $(TM_H)
445 f/ste.o: f/ste.c f/proj.h $(CONFIG_H) $(SYSTEM_H) $(RTL_H) toplev.h f/ste.h \
446  f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
447  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
448  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
449  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
450  f/stt.h f/stamp-str f/sts.h f/stv.h f/stw.h f/expr.h f/sta.h $(GGC_H) \
451  gt-f-ste.h coretypes.h $(TM_H)
452 f/storag.o: f/storag.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/storag.h f/bld.h  \
453  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
454  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
455  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h \
456  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
457  f/intrin.def f/data.h coretypes.h $(TM_H)
458 f/stp.o: f/stp.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stp.h f/bld.h f/bld-op.def \
459  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
460  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
461  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
462  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
463  f/intrin.def f/stt.h coretypes.h $(TM_H)
464 f/str.o: f/str.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
465  f/where.h glimits.h f/top.h f/malloc.h f/stamp-str f/lex.h coretypes.h $(TM_H)
466 f/sts.o: f/sts.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sts.h f/malloc.h f/com.h \
467  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/info.h \
468  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
469  f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def \
470  f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
471  f/name.h coretypes.h $(TM_H)
472 f/stt.o: f/stt.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stt.h f/top.h f/malloc.h \
473  f/where.h glimits.h f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def \
474  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h \
475  f/bad.h f/bad.def f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
476  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
477  f/stp.h f/expr.h f/sta.h f/stamp-str coretypes.h $(TM_H)
478 f/stu.o: f/stu.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
479  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
480  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
481  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
482  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
483  f/implic.h f/stu.h f/sta.h f/stamp-str coretypes.h $(TM_H)
484 f/stv.o: f/stv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stv.h f/lab.h f/com.h \
485  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h \
486  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
487  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
488  f/intrin.def f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
489  f/name.h coretypes.h $(TM_H)
490 f/stw.o: f/stw.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stw.h f/bld.h f/bld-op.def \
491  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
492  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
493  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
494  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
495  f/intrin.def f/stv.h f/sta.h f/stamp-str coretypes.h $(TM_H)
496 f/symbol.o: f/symbol.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/symbol.h \
497  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h \
498  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
499  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h \
500  f/lex.h f/type.h f/lab.h f/storag.h f/intrin.h f/intrin.def f/equiv.h \
501  f/global.h f/name.h f/src.h f/st.h coretypes.h $(TM_H)
502 f/target.o: f/target.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/target.h \
503  $(TREE_H) f/bad.h f/bad.def f/where.h f/top.h f/malloc.h f/info.h real.h \
504  f/info-b.def f/info-k.def f/info-w.def f/type.h f/lex.h diagnostic.h \
505  coretypes.h $(TM_H) toplev.h
506 f/top.o: f/top.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
507  glimits.h f/bad.h f/bad.def f/bit.h f/bld.h f/bld-op.def f/com.h \
508  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
509  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h \
510  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
511  f/intrin.def f/data.h f/expr.h f/implic.h f/src.h f/st.h flags.h \
512  toplev.h coretypes.h $(TM_H) opts.h options.h
513 f/type.o: f/type.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/type.h f/malloc.h \
514  coretypes.h $(TM_H)
515 f/where.o: f/where.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/where.h glimits.h \
516  f/top.h f/malloc.h f/lex.h $(GGC_H) gt-f-where.h coretypes.h $(TM_H)