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