OSDN Git Service

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