Makefile.in (abs_docdir, abs_srcdir): Define.
[platform/upstream/gcc.git] / gcc / f / Make-lang.in
1 # Top level -*- makefile -*- fragment for GNU Fortran.
2 #   Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2002, 2003 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.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
29 #
30 # where `foo' is the name of the language.
31 #
32 # It should also provide rules for:
33 #
34 # - making any compiler driver (eg: g++)
35 # - the compiler proper (eg: cc1plus)
36 # - define the names for selecting the language in LANGUAGES.
37 #
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 := $(shell echo g77|sed '$(program_transform_name)')
42
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 >
47
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)
54
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 \
62   f77.stage1 f77.stage2 f77.stage3 f77.stage4 \
63   f77.stageprofile f77.stagefeedback
64
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)
71
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)
77
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)
82
83 # The compiler itself.
84
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
90
91 # Use loose warnings for this front end.
92 f-warn = $(WERROR)
93 # type-punning warning
94 f/sta.o-warn = -Wno-error
95
96 f771$(exeext): $(F77_OBJS) $(BACKEND) $(LIBDEPS)
97         rm -f f771$(exeext)
98         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ $(F77_OBJS) $(BACKEND) $(LIBS)
99
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
105
106 f/str-1t.h f/str-1t.j: f/stamp-1t ; @true
107 f/stamp-1t: f/fini$(build_exeext) f/str-1t.fin
108         ./f/fini$(build_exeext) $(srcdir)/f/str-1t.fin f/tmp-str-1t.j f/tmp-str-1t.h
109         $(SHELL) $(srcdir)/move-if-change f/tmp-str-1t.j f/str-1t.j
110         $(SHELL) $(srcdir)/move-if-change f/tmp-str-1t.h f/str-1t.h
111         $(STAMP) f/stamp-1t
112
113 f/str-2t.h f/str-2t.j: f/stamp-2t ; @true
114 f/stamp-2t: f/fini$(build_exeext) f/str-2t.fin
115         ./f/fini$(build_exeext) $(srcdir)/f/str-2t.fin f/tmp-str-2t.j f/tmp-str-2t.h
116         $(SHELL) $(srcdir)/move-if-change f/tmp-str-2t.j f/str-2t.j
117         $(SHELL) $(srcdir)/move-if-change f/tmp-str-2t.h f/str-2t.h
118         $(STAMP) f/stamp-2t
119
120 f/str-fo.h f/str-fo.j: f/stamp-fo ; @true
121 f/stamp-fo: f/fini$(build_exeext) f/str-fo.fin
122         ./f/fini$(build_exeext) $(srcdir)/f/str-fo.fin f/tmp-str-fo.j f/tmp-str-fo.h
123         $(SHELL) $(srcdir)/move-if-change f/tmp-str-fo.j f/str-fo.j
124         $(SHELL) $(srcdir)/move-if-change f/tmp-str-fo.h f/str-fo.h
125         $(STAMP) f/stamp-fo
126
127 f/str-io.h f/str-io.j: f/stamp-io ; @true
128 f/stamp-io: f/fini$(build_exeext) f/str-io.fin
129         ./f/fini$(build_exeext) $(srcdir)/f/str-io.fin f/tmp-str-io.j f/tmp-str-io.h
130         $(SHELL) $(srcdir)/move-if-change f/tmp-str-io.j f/str-io.j
131         $(SHELL) $(srcdir)/move-if-change f/tmp-str-io.h f/str-io.h
132         $(STAMP) f/stamp-io
133
134 f/str-nq.h f/str-nq.j: f/stamp-nq ; @true
135 f/stamp-nq: f/fini$(build_exeext) f/str-nq.fin
136         ./f/fini$(build_exeext) $(srcdir)/f/str-nq.fin f/tmp-str-nq.j f/tmp-str-nq.h
137         $(SHELL) $(srcdir)/move-if-change f/tmp-str-nq.j f/str-nq.j
138         $(SHELL) $(srcdir)/move-if-change f/tmp-str-nq.h f/str-nq.h
139         $(STAMP) f/stamp-nq
140
141 f/str-op.h f/str-op.j: f/stamp-op ; @true
142 f/stamp-op: f/fini$(build_exeext) f/str-op.fin
143         ./f/fini$(build_exeext) $(srcdir)/f/str-op.fin f/tmp-str-op.j f/tmp-str-op.h
144         $(SHELL) $(srcdir)/move-if-change f/tmp-str-op.j f/str-op.j
145         $(SHELL) $(srcdir)/move-if-change f/tmp-str-op.h f/str-op.h
146         $(STAMP) f/stamp-op
147
148 f/str-ot.h f/str-ot.j: f/stamp-ot ; @true
149 f/stamp-ot: f/fini$(build_exeext) f/str-ot.fin
150         ./f/fini$(build_exeext) $(srcdir)/f/str-ot.fin f/tmp-str-ot.j f/tmp-str-ot.h
151         $(SHELL) $(srcdir)/move-if-change f/tmp-str-ot.j f/str-ot.j
152         $(SHELL) $(srcdir)/move-if-change f/tmp-str-ot.h f/str-ot.h
153         $(STAMP) f/stamp-ot
154
155 f/fini$(build_exeext): f/fini.o $(BUILD_LIBDEPS)
156         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) -o f/fini$(build_exeext) \
157                 f/fini.o $(BUILD_LIBS)
158
159 f/fini.o:
160         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_CPPFLAGS) $(INCLUDES) \
161               -c $(srcdir)/f/fini.c $(OUTPUT_OPTION)
162
163 gt-f-lex.h gt-f-where.h gt-f-com.h gt-f-ste.h gtype-f.h : s-gtype; @true
164
165 #\f
166 # Build hooks:
167
168 f77.all.build: g77$(exeext)
169 f77.all.cross: g77-cross$(exeext)
170 f77.start.encap: g77$(exeext)
171 f77.rest.encap:
172
173 f77.srcinfo: doc/g77.info
174         -cp -p $^ $(srcdir)/doc
175 f77.srcman: doc/g77.1
176         -cp -p $^ $(srcdir)/doc
177 f77.srcextra: f/BUGS f/NEWS 
178         -cp -p $^ $(srcdir)/f
179
180 f77.tags: force
181         cd $(srcdir)/f; etags -o TAGS.sub *.c *.h; \
182         etags --include TAGS.sub --include ../TAGS.sub
183
184 f77.info: doc/g77.info
185 dvi:: doc/g77.dvi
186 f77.man: doc/g77.1
187
188 check-f77 : check-g77
189 lang_checks += check-g77
190
191 # g77 documentation.
192 TEXI_G77_FILES = f/g77.texi f/bugs.texi f/ffe.texi f/invoke.texi \
193                  f/news.texi f/root.texi $(docdir)/include/fdl.texi \
194                  $(docdir)/include/gpl.texi $(docdir)/include/funding.texi \
195                  $(docdir)/include/gcc-common.texi $(srcdir)/f/intdoc.texi
196
197 doc/g77.info: $(TEXI_G77_FILES)
198         if test "x$(BUILD_INFO)" = xinfo; then \
199           rm -f $(@)*; \
200           $(MAKEINFO) $(MAKEINFOFLAGS) -I$(docdir)/include -I$(srcdir)/f \
201             -o$@ $<; \
202         else true; fi
203
204 doc/g77.dvi: $(TEXI_G77_FILES)
205         $(TEXI2DVI) -I $(srcdir)/f -I $(abs_docdir)/include -I $(objdir)/f -o $@ $<
206
207 .INTERMEDIATE: g77.pod
208 g77.pod: f/invoke.texi
209         -$(TEXI2POD) < $< > $@
210
211 # This dance is all about producing accurate documentation for g77's
212 # intrinsics with minimum fuss.  f/ansify appends "\n\" to C strings
213 # so ANSI C compilers can compile f/intdoc.h -- gcc can compile f/intdoc.in
214 # directly, if f/intdoc.c #include'd that, but we don't want to force
215 # people to install gcc just to build the documentation.  We use the
216 # C format for f/intdoc.in in the first place to allow a fairly "free",
217 # but widely known format for documentation -- basically anyone who knows
218 # how to write texinfo source and enclose it in C constants can handle
219 # it, and f/ansify allows them to not even end lines with "\n\".  So,
220 # essentially, the C preprocessor and compiler are used to enter the
221 # document snippets into a data base via name lookup, rather than duplicating
222 # that kind of code here.  And we use f/intdoc.c instead of straight
223 # texinfo in the first place so that as much information as possible
224 # contained in f/intrin.def can be inserted directly and reliably into
225 # the documentation.  That's better than replicating it, because it
226 # reduces the likelihood of discrepancies between the docs and the compiler
227 # itself, which uses f/intrin.def; in fact, many bugs in f/intrin.def have
228 # been found only upon reading the documentation that was automatically
229 # produced from it.
230
231 # If the documentation files depended on executables in the build
232 # tree, there'd be no way to ship a source tree with the documentation
233 # already generated such that `make' wouldn't attempt to rebuild it.
234 # So, we punt and arrange for the documentation files to depend on the
235 # dependencies of the executables, not on the executables themselves.
236 # But then, we have to build the executables explicitly in their build
237 # rules.
238
239 INTDOC_DEPS = f/intdoc.c f/intrin.h f/intrin.def
240
241 $(srcdir)/f/intdoc.texi: $(INTDOC_DEPS) f/intdoc.in
242         $(MAKE) f/intdoc$(build_exeext)
243         f/intdoc$(build_exeext) > $(srcdir)/f/intdoc.texi
244
245 f/intdoc$(build_exeext): $(INTDOC_DEPS) f/intdoc.h0 bconfig.h \
246   $(SYSTEM_H) coretypes.h $(TM_H) $(BUILD_LIBDEPS)
247         $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) $< \
248           $(BUILD_LIBS) -o $@
249
250 f/intdoc.h0: f/intdoc.in f/ansify$(build_exeext)
251         f/ansify$(build_exeext) $< < $< > $@
252
253 f/ansify$(build_exeext): f/ansify.c bconfig.h $(SYSTEM_H) coretypes.h $(TM_H)
254           $(CC_FOR_BUILD) $(BUILD_CFLAGS) $(BUILD_LDFLAGS) $(INCLUDES) $< \
255           -o $@
256
257 f/BUGS: f/bugs0.texi f/bugs.texi f/root.texi
258         if [ x$(BUILD_INFO) = xinfo ]; then \
259           rm -f $(@)*; \
260           $(MAKEINFO) $(MAKEINFOFLAGS) -D BUGSONLY --no-header --no-split \
261            --no-validate -I$(docdir)/include -I$(srcdir)/f -o $@ bugs0.texi; \
262         else true; fi
263
264 f/NEWS: f/news0.texi f/news.texi f/root.texi
265         if [ x$(BUILD_INFO) = xinfo ]; then \
266           rm -f $(@)*; \
267           $(MAKEINFO) $(MAKEINFOFLAGS) -D NEWSONLY --no-header --no-split \
268            --no-validate -I$(docdir)/include -I$(srcdir)/f -o $@ news0.texi; \
269         else true; fi
270
271 #\f
272 # Install hooks:
273 # f771 is installed elsewhere as part of $(COMPILERS).
274
275 f77.install-normal:
276
277 # Install the driver program as $(target)-g77
278 # and also as either g77 (if native) or $(tooldir)/bin/g77.
279 f77.install-common: installdirs
280         -if [ -f f771$(exeext) ] ; then \
281           rm -f $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
282           $(INSTALL_PROGRAM) g77$(exeext) $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
283           chmod a+x $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
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
295 install-info:: $(DESTDIR)$(infodir)/g77.info
296
297 f77.install-man: installdirs $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext)
298
299 $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext): doc/g77.1
300         -rm -f $@
301         -$(INSTALL_DATA) $< $@
302         -chmod a-x $@
303
304 f77.uninstall: installdirs
305         if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
306           echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info"; \
307           install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/g77.info || : ; \
308         else : ; fi
309         rm -rf $(DESTDIR)$(bindir)/$(G77_INSTALL_NAME)$(exeext); \
310         rm -rf $(DESTDIR)$(man1dir)/$(G77_INSTALL_NAME)$(man1ext); \
311         rm -rf $(DESTDIR)$(infodir)/g77.info*
312 #\f
313 # Clean hooks:
314 # A lot of the ancillary files are deleted by the main makefile.
315 # We just have to delete files specific to us.
316
317 f77.mostlyclean:
318         -rm -f f/*$(objext)
319         -rm -f f/*$(coverageexts)
320         -rm -f f/fini$(build_exeext) f/stamp-str f/str-*.h f/str-*.j
321         -rm -f f/BUGS f/NEWS
322         -rm -f g77.aux g77.cps g77.ky g77.toc g77.vr g77.fn g77.kys \
323                g77.pg g77.tp g77.vrs g77.cp g77.fns g77.log g77.pgs g77.tps 
324 f77.clean:
325         -rm -f g77spec.o
326 f77.distclean:
327         -rm -f f/Makefile
328 f77.maintainer-clean:
329         -rm -f $(srcdir)/f/BUGS $(srcdir)/f/TAGS $(srcdir)/f/TAGS.SUB
330         -rm -f $(srcdir)/f/NEWS $(srcdir)/f/intdoc.texi
331 #\f
332 # Stage hooks:
333 # The main makefile has already created stage?/f.
334
335 G77STAGESTUFF = f/*$(objext) f/fini$(build_exeext) f/stamp-* \
336   f/str-*.h f/str-*.j g77spec.o
337
338 f77.stage1: stage1-start
339         -mv -f $(G77STAGESTUFF) stage1/f
340
341 f77.stage2: stage2-start
342         -mv -f $(G77STAGESTUFF) stage2/f
343
344 f77.stage3: stage3-start
345         -mv -f $(G77STAGESTUFF) stage3/f
346
347 f77.stage4: stage4-start
348         -mv -f $(G77STAGESTUFF) stage4/f
349
350 f77.stageprofile: stageprofile-start
351         -mv -f $(G77STAGESTUFF) stageprofile/f
352
353 f77.stagefeedback: stageprofile-start
354         -mv -f $(G77STAGESTUFF) stagefeedback/f
355 #\f
356 # .o: .h dependencies.
357
358 f/bad.o: f/bad.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
359  glimits.h f/top.h f/malloc.h flags.h f/com.h f/com-rt.def $(TREE_H) f/bld.h \
360  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
361  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
362  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h toplev.h intl.h \
363  diagnostic.h coretypes.h $(TM_H)
364 f/bit.o: f/bit.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/bit.h \
365  f/malloc.h coretypes.h $(TM_H)
366 f/bld.o: f/bld.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
367  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
368  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h f/lex.h \
369  f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h f/global.h \
370  f/name.h f/intrin.h f/intrin.def real.h coretypes.h $(TM_H)
371 f/com.o: f/com.c f/proj.h $(CONFIG_H) $(SYSTEM_H) flags.h $(RTL_H) $(TREE_H) \
372  output.h convert.h f/com.h f/com-rt.def f/bld.h f/bld-op.def f/bit.h \
373  f/malloc.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
374  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
375  f/intrin.def f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
376  f/name.h f/expr.h f/implic.h f/src.h f/st.h $(GGC_H) toplev.h diagnostic.h \
377  $(LANGHOOKS_DEF) langhooks.h intl.h real.h debug.h gt-f-com.h gtype-f.h \
378  coretypes.h $(TM_H)
379 f/data.o: f/data.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/data.h f/bld.h f/bld-op.def \
380  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
381  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
382  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
383  f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/st.h coretypes.h $(TM_H)
384 f/equiv.o: f/equiv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/equiv.h f/bld.h \
385  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
386  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
387  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
388  f/global.h f/name.h f/intrin.h f/intrin.def f/data.h coretypes.h $(TM_H)
389 f/expr.o: f/expr.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/expr.h f/bld.h f/bld-op.def \
390  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
391  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
392  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
393  f/global.h f/name.h f/intrin.h f/intrin.def f/implic.h f/src.h f/st.h \
394  f/stamp-str real.h coretypes.h $(TM_H)
395 f/fini.o: f/fini.c f/proj.h bconfig.h $(SYSTEM_H) f/malloc.h coretypes.h $(TM_H)
396 f/global.o: f/global.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/global.h f/info.h \
397  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
398  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/name.h f/symbol.h \
399  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
400  f/storag.h f/intrin.h f/intrin.def f/equiv.h coretypes.h $(TM_H)
401 f/implic.o: f/implic.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/implic.h f/info.h \
402  f/info-b.def f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def \
403  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/type.h f/symbol.h \
404  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
405  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/src.h \
406  coretypes.h $(TM_H)
407 f/info.o: f/info.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/info.h f/info-b.def \
408  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/bad.h f/bad.def f/where.h \
409  glimits.h f/top.h f/malloc.h f/lex.h f/type.h coretypes.h $(TM_H)
410 f/intrin.o: f/intrin.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/intrin.h \
411  f/intrin.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def \
412  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
413  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
414  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/expr.h f/src.h \
415  coretypes.h $(TM_H)
416 f/lab.o: f/lab.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/lab.h f/com.h f/com-rt.def \
417  $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h f/info.h f/info-b.def \
418  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
419  f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def f/symbol.h f/symbol.def \
420  f/equiv.h f/storag.h f/global.h f/name.h coretypes.h $(TM_H)
421 f/lex.o: f/lex.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
422  glimits.h f/bad.h f/bad.def f/com.h f/com-rt.def $(TREE_H) f/bld.h \
423  f/bld-op.def f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def \
424  f/target.h f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
425  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h f/src.h flags.h \
426  debug.h input.h toplev.h output.h $(GGC_H) gt-f-lex.h coretypes.h $(TM_H)
427 f/malloc.o: f/malloc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/malloc.h \
428  coretypes.h $(TM_H)
429 f/name.o: f/name.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bad.h f/bad.def f/where.h \
430  glimits.h f/top.h f/malloc.h f/name.h f/global.h f/info.h f/info-b.def \
431  f/info-k.def f/info-w.def f/target.h $(TREE_H) f/lex.h f/type.h f/symbol.h \
432  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def f/lab.h \
433  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/src.h coretypes.h $(TM_H)
434 f/parse.o: f/parse.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h \
435  f/where.h glimits.h f/com.h f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def \
436  f/bit.h f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
437  f/bad.def f/lex.h f/type.h f/intrin.h f/intrin.def f/lab.h f/symbol.h \
438  f/symbol.def f/equiv.h f/storag.h f/global.h f/name.h version.h flags.h \
439  coretypes.h $(TM_H)
440 f/src.o: f/src.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
441  f/where.h glimits.h f/top.h f/malloc.h coretypes.h $(TM_H)
442 f/st.o: f/st.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/st.h f/bad.h f/bad.def \
443  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/symbol.h f/symbol.def \
444  f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
445  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/sta.h \
447  f/stamp-str f/stb.h f/expr.h f/stp.h f/stt.h f/stc.h f/std.h \
448  f/stv.h f/stw.h f/ste.h f/sts.h f/stu.h coretypes.h $(TM_H)
449 f/sta.o: f/sta.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sta.h f/bad.h f/bad.def \
450  f/where.h glimits.h f/top.h f/malloc.h f/lex.h f/stamp-str f/symbol.h \
451  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def $(TREE_H) \
452  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/type.h f/lab.h \
453  f/storag.h f/intrin.h f/intrin.def f/equiv.h f/global.h f/name.h f/implic.h \
454  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 \
455  $(TM_H)
456 f/stb.o: f/stb.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stb.h f/bad.h f/bad.def \
457  f/where.h glimits.h f/top.h f/malloc.h f/expr.h f/bld.h f/bld-op.def f/bit.h \
458  f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
459  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
460  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
461  f/stt.h f/stamp-str f/src.h f/sta.h f/stc.h coretypes.h $(TM_H)
462 f/stc.o: f/stc.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stc.h f/bad.h f/bad.def \
463  f/where.h glimits.h f/top.h f/malloc.h f/bld.h f/bld-op.def f/bit.h f/com.h \
464  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def \
465  f/target.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def \
466  f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/expr.h f/stp.h \
467  f/stt.h f/stamp-str f/data.h f/implic.h f/src.h f/sta.h f/std.h f/stv.h \
468  f/stw.h coretypes.h $(TM_H)
469 f/std.o: f/std.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/std.h f/bld.h f/bld-op.def \
470  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
471  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h \
472  f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h f/symbol.def f/equiv.h \
473  f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h f/stt.h f/stamp-str \
474  f/stv.h f/stw.h f/sta.h f/ste.h f/sts.h coretypes.h $(TM_H)
475 f/ste.o: f/ste.c f/proj.h $(CONFIG_H) $(SYSTEM_H) $(RTL_H) toplev.h f/ste.h \
476  f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
477  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
478  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
479  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def f/stp.h \
480  f/stt.h f/stamp-str f/sts.h f/stv.h f/stw.h f/expr.h f/sta.h $(GGC_H) \
481  gt-f-ste.h coretypes.h $(TM_H)
482 f/storag.o: f/storag.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/storag.h f/bld.h  \
483  f/bld-op.def f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) \
484  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
485  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h \
486  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
487  f/intrin.def f/data.h coretypes.h $(TM_H)
488 f/stp.o: f/stp.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stp.h f/bld.h f/bld-op.def \
489  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
490  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
491  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
492  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
493  f/intrin.def f/stt.h coretypes.h $(TM_H)
494 f/str.o: f/str.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/src.h f/bad.h f/bad.def \
495  f/where.h glimits.h f/top.h f/malloc.h f/stamp-str f/lex.h coretypes.h $(TM_H)
496 f/sts.o: f/sts.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/sts.h f/malloc.h f/com.h \
497  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/info.h \
498  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
499  f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h f/intrin.def \
500  f/lab.h f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
501  f/name.h coretypes.h $(TM_H)
502 f/stt.o: f/stt.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stt.h f/top.h f/malloc.h \
503  f/where.h glimits.h f/bld.h f/bld-op.def f/bit.h f/com.h f/com-rt.def \
504  $(TREE_H) f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h \
505  f/bad.h f/bad.def f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
506  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
507  f/stp.h f/expr.h f/sta.h f/stamp-str coretypes.h $(TM_H)
508 f/stu.o: f/stu.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/bld.h f/bld-op.def f/bit.h \
509  f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h f/info-b.def \
510  f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def f/where.h \
511  glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h f/symbol.h \
512  f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h f/intrin.def \
513  f/implic.h f/stu.h f/sta.h f/stamp-str coretypes.h $(TM_H)
514 f/stv.o: f/stv.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stv.h f/lab.h f/com.h \
515  f/com-rt.def $(TREE_H) f/bld.h f/bld-op.def f/bit.h f/malloc.h \
516  f/info.h f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h \
517  f/bad.def f/where.h glimits.h f/top.h f/lex.h f/type.h f/intrin.h \
518  f/intrin.def f/symbol.h f/symbol.def f/equiv.h f/storag.h f/global.h \
519  f/name.h coretypes.h $(TM_H)
520 f/stw.o: f/stw.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/stw.h f/bld.h f/bld-op.def \
521  f/bit.h f/malloc.h f/com.h f/com-rt.def $(TREE_H) f/info.h \
522  f/info-b.def f/info-k.def f/info-w.def f/target.h f/bad.h f/bad.def \
523  f/where.h glimits.h f/top.h f/lex.h f/type.h f/lab.h f/storag.h \
524  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
525  f/intrin.def f/stv.h f/sta.h f/stamp-str coretypes.h $(TM_H)
526 f/symbol.o: f/symbol.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/symbol.h \
527  f/symbol.def f/bld.h f/bld-op.def f/bit.h f/malloc.h f/com.h \
528  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
529  f/info-w.def f/target.h f/bad.h f/bad.def f/where.h glimits.h f/top.h \
530  f/lex.h f/type.h f/lab.h f/storag.h f/intrin.h f/intrin.def f/equiv.h \
531  f/global.h f/name.h f/src.h f/st.h coretypes.h $(TM_H)
532 f/target.o: f/target.c f/proj.h $(CONFIG_H) $(SYSTEM_H) glimits.h f/target.h \
533  $(TREE_H) f/bad.h f/bad.def f/where.h f/top.h f/malloc.h f/info.h real.h \
534  f/info-b.def f/info-k.def f/info-w.def f/type.h f/lex.h diagnostic.h \
535  coretypes.h $(TM_H) toplev.h
536 f/top.o: f/top.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/top.h f/malloc.h f/where.h \
537  glimits.h f/bad.h f/bad.def f/bit.h f/bld.h f/bld-op.def f/com.h \
538  f/com-rt.def $(TREE_H) f/info.h f/info-b.def f/info-k.def \
539  f/info-w.def f/target.h f/lex.h f/type.h f/lab.h f/storag.h \
540  f/symbol.h f/symbol.def f/equiv.h f/global.h f/name.h f/intrin.h \
541  f/intrin.def f/data.h f/expr.h f/implic.h f/src.h f/st.h flags.h \
542  toplev.h coretypes.h $(TM_H) opts.h options.h
543 f/type.o: f/type.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/type.h f/malloc.h \
544  coretypes.h $(TM_H)
545 f/where.o: f/where.c f/proj.h $(CONFIG_H) $(SYSTEM_H) f/where.h glimits.h \
546  f/top.h f/malloc.h f/lex.h $(GGC_H) gt-f-where.h coretypes.h $(TM_H)