OSDN Git Service

* doc/invoke.texi (Overall Options): Document --help=.
[pf3gnuchains/gcc-fork.git] / gcc / fortran / Make-lang.in
1 # -*- makefile -*-
2 # Top level makefile fragment for GNU gfortran, the GNU Fortran 95 compiler.
3 # Copyright (C) 2002, 2003, 2004, 2005, 2006 Free Software Foundation, Inc.
4 # Contributed by Paul Brook <paul@nowt.org
5 # and Steven Bosscher <s.bosscher@student.tudelft.nl>
6
7 #This file is part of GCC.
8
9 #GCC is free software; you can redistribute it and/or modify
10 #it under the terms of the GNU General Public License as published by
11 #the Free Software Foundation; either version 2, or (at your option)
12 #any later version.
13
14 #GCC is distributed in the hope that it will be useful,
15 #but WITHOUT ANY WARRANTY; without even the implied warranty of
16 #MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
17 #GNU General Public License for more details.
18
19 #You should have received a copy of the GNU General Public License
20 #along with GCC; see the file COPYING.  If not, write to
21 #the Free Software Foundation, 51 Franklin Street, Fifth Floor,
22 #Boston, MA 02110-1301, USA.
23
24 # This file provides the language dependent support in the main Makefile.
25 # Each language makefile fragment must provide the following targets:
26 #
27 # foo.all.cross, foo.start.encap, foo.rest.encap,
28 # foo.info
29 # foo.install-common, foo.install-info, foo.install-man,
30 # foo.uninstall, foo.install-info, foo.dvi, foo.pdf, foo.html,
31 # foo.mostlyclean, foo.clean, foo.distclean, foo.extraclean,
32 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
33 #
34 # where `foo' is the name of the language.
35 #
36 # It should also provide rules for:
37 #
38 # - making any compiler driver (eg: gfortran)
39 # - the compiler proper (eg: f951)
40 # - define the names for selecting the language in LANGUAGES.
41 # $(srcdir) must be set to the gcc/ source directory (*not* gcc/fortran/).
42
43 # Actual name to use when installing a native compiler.
44 GFORTRAN_INSTALL_NAME := $(shell echo gfortran|sed '$(program_transform_name)')
45 GFORTRAN_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gfortran|sed '$(program_transform_name)')
46
47 #^L
48
49 # Use strict warnings for this front end.
50 fortran-warn = $(STRICT_WARN)
51
52 # These files get warnings from an inline function in GMP saying:
53 # "control may reach end of non-void function '__gmpz_get_ui' being inlined"
54 fortran/expr.o-warn = -Wno-error
55 fortran/resolve.o-warn = -Wno-error
56 fortran/simplify.o-warn = -Wno-error
57 fortran/trans-common.o-warn = -Wno-error
58
59 # These are the groups of object files we have.  The F95_PARSER_OBJS are
60 # all the front end files, the F95_OBJS are the files for the translation
61 # from the parse tree to GENERIC
62
63 F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \
64     fortran/check.o fortran/data.o fortran/decl.o fortran/dump-parse-tree.o \
65     fortran/error.o fortran/expr.o fortran/interface.o \
66     fortran/intrinsic.o fortran/io.o fortran/iresolve.o \
67     fortran/match.o fortran/matchexp.o fortran/misc.o fortran/module.o \
68     fortran/openmp.o fortran/options.o fortran/parse.o fortran/primary.o \
69     fortran/resolve.o fortran/scanner.o fortran/simplify.o fortran/st.o \
70     fortran/symbol.o
71
72 F95_OBJS = $(F95_PARSER_OBJS) \
73     fortran/convert.o fortran/dependency.o fortran/f95-lang.o \
74     fortran/trans.o fortran/trans-array.o fortran/trans-common.o \
75     fortran/trans-const.o fortran/trans-decl.o fortran/trans-expr.o \
76     fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-openmp.o \
77     fortran/trans-stmt.o fortran/trans-types.o
78
79 #\f
80 # Define the names for selecting gfortran in LANGUAGES.
81 fortran: f951$(exeext)
82
83 # Tell GNU make to ignore files by these names if they exist.
84 .PHONY: fortran
85
86 gfortranspec.o: $(srcdir)/fortran/gfortranspec.c $(SYSTEM_H) $(TM_H) $(GCC_H) $(CONFIG_H)
87         (SHLIB_LINK='$(SHLIB_LINK)' \
88         SHLIB_MULTILIB='$(SHLIB_MULTILIB)'; \
89         $(CC) -c $(ALL_CFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
90                 $(INCLUDES) $(srcdir)/fortran/gfortranspec.c)
91
92 # Create the compiler driver gfortran.
93 GFORTRAN_D_OBJS = $(GCC_OBJS) gfortranspec.o version.o prefix.o intl.o
94 gfortran$(exeext): $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBDEPS)
95         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
96           $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBS)
97
98 # Create a version of the gfortran driver which calls the cross-compiler.
99 gfortran-cross$(exeext): gfortran$(exeext)
100         -rm -f gfortran-cross$(exeext)
101         cp gfortran$(exeext) gfortran-cross$(exeext)
102
103 # The compiler itself is called f951.
104 f951$(exeext): $(F95_OBJS) \
105                 $(BACKEND) $(LIBDEPS) attribs.o
106         $(CC) $(ALL_CFLAGS) $(LDFLAGS) -o $@ \
107                 $(F95_OBJS) $(BACKEND) $(LIBS) attribs.o
108
109 gt-fortran-trans.h    : s-gtype; @true
110 #\f
111 # Build hooks:
112
113 fortran.all.cross: gfortran-cross$(exeext)
114
115 fortran.start.encap: gfortran$(exeext)
116 fortran.rest.encap:
117
118 fortran.srcinfo: doc/gfortran.info
119         -cp -p $^ $(srcdir)/fortran
120
121 fortran.tags: force
122         cd $(srcdir)/fortran; etags -o TAGS.sub *.c *.h; \
123         etags --include TAGS.sub --include ../TAGS.sub
124
125 fortran.info: doc/gfortran.info
126 fortran.dvi: doc/gfortran.dvi
127 fortran.pdf: doc/gfortran.pdf
128 fortran.html: $(build_htmldir)/gfortran/index.html
129
130 F95_MANFILES = doc/gfortran.1
131
132 fortran.man: $(F95_MANFILES)
133
134 fortran.srcman: $(F95_MANFILES)
135         -cp -p $^ $(srcdir)/doc
136
137 fortran.srcextra:
138
139 check-f95 : check-gfortran
140 check-fortran : check-gfortran
141 lang_checks += check-gfortran
142
143 # GFORTRAN documentation.
144 GFORTRAN_TEXI = \
145   $(srcdir)/fortran/gfortran.texi \
146   $(srcdir)/fortran/intrinsic.texi \
147   $(srcdir)/fortran/invoke.texi \
148   $(srcdir)/doc/include/fdl.texi \
149   $(srcdir)/doc/include/gpl.texi \
150   $(srcdir)/doc/include/funding.texi \
151   $(srcdir)/doc/include/gcc-common.texi \
152   gcc-vers.texi
153
154 doc/gfortran.info: $(GFORTRAN_TEXI)
155         if [ x$(BUILD_INFO) = xinfo ]; then \
156           rm -f doc/gfortran.info-*; \
157           $(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
158             -o $@ $<; \
159         else true; fi
160
161 doc/gfortran.dvi: $(GFORTRAN_TEXI)
162         $(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
163
164 doc/gfortran.pdf: $(GFORTRAN_TEXI)
165         $(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
166
167 $(build_htmldir)/gfortran/index.html: $(GFORTRAN_TEXI)
168         $(mkinstalldirs) $(@D)
169         rm -f $(@D)/*
170         $(TEXI2HTML) -I $(gcc_docdir)/include -I $(srcdir)/fortran -o $(@D) $<
171
172 .INTERMEDIATE: gfortran.pod
173
174 gfortran.pod: $(GFORTRAN_TEXI)
175         -$(TEXI2POD) < $(srcdir)/fortran/invoke.texi > $@
176
177 # Create or recreate the gfortran private include file directory.
178 install-finclude-dir: installdirs
179         -rm -rf $(DESTDIR)$(libsubdir)/finclude
180         mkdir $(DESTDIR)$(libsubdir)/finclude
181         -chmod a+rx $(DESTDIR)$(libsubdir)/finclude
182 #\f
183 # Install hooks:
184 # f951 is installed elsewhere as part of $(COMPILERS).
185
186 # Install the driver program as $(target)-gfortran
187 # and also as either gfortran (if native) or $(tooldir)/bin/gfortran.
188 fortran.install-common: install-finclude-dir installdirs
189         -if [ -f f951$(exeext) ] ; then \
190           rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
191           $(INSTALL_PROGRAM) gfortran$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
192           chmod a+x $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
193           if [ -f gfortran-cross$(exeext) ] ; then \
194             if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
195               rm -f $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
196               $(INSTALL_PROGRAM) gfortran-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
197             else true; fi; \
198           else \
199             rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
200             $(LN) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
201           fi ; \
202         fi
203
204 fortran.install-info: $(DESTDIR)$(infodir)/gfortran.info
205
206 fortran.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
207
208 $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1 \
209                 installdirs
210         -rm -f $@
211         -$(INSTALL_DATA) $< $@
212         -chmod a-x $@
213
214 fortran.uninstall:
215         if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
216           echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info"; \
217           install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info || : ; \
218         else : ; fi; \
219         rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
220         rm -rf $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext); \
221         rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
222         rm -rf $(DESTDIR)$(infodir)/gfortran.info*
223
224 #\f
225 # Clean hooks:
226 # A lot of the ancillary files are deleted by the main makefile.
227 # We just have to delete files specific to us.
228
229 fortran.mostlyclean:
230         -rm -f f951$(exeext)
231         -rm -f fortran/*.o
232
233 fortran.clean:
234 fortran.distclean:
235         -rm -f fortran/config.status fortran/Makefile
236
237 fortran.extraclean:
238 fortran.maintainer-clean:
239         -rm -f doc/gfortran.info* fortran/gfortran.*aux
240         -rm -f $(docobjdir)/gfortran.1
241
242 #\f
243 # Stage hooks:
244 # The toplevel makefile has already created stage?/fortran at this point.
245
246 fortran.stage1: stage1-start
247         -mv fortran/*$(objext) stage1/fortran
248 fortran.stage2: stage2-start
249         -mv fortran/*$(objext) stage2/fortran
250 fortran.stage3: stage3-start
251         -mv fortran/*$(objext) stage3/fortran
252 fortran.stage4: stage4-start
253         -mv fortran/*$(objext) stage4/fortran
254 fortran.stageprofile: stageprofile-start
255         -mv fortran/*$(objext) stageprofile/fortran
256 fortran.stagefeedback: stageprofile-start
257         -mv fortran/*$(objext) stagefeedback/fortran
258
259 #\f
260 # .o: .h dependencies.
261
262 # Everything depends on gfortran.h, but only a few files depend on
263 # the other headers.  So at some point we'll have to split out
264 # which objects depend on what.  FIXME
265 # TODO: Add dependencies on the backend/tree header files
266
267 $(F95_PARSER_OBJS): fortran/gfortran.h fortran/intrinsic.h fortran/match.h \
268                 fortran/parse.h \
269                 $(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TM_P_H) coretypes.h \
270                 $(RTL_H) $(TREE_H) $(TREE_DUMP_H) $(GGC_H) $(EXPR_H) \
271                 $(FLAGS_H) output.h $(DIAGNOSTIC_H) errors.h $(FUNCTION_H) 
272 fortran/openmp.o: pointer-set.h $(TARGET_H) toplev.h
273
274 GFORTRAN_TRANS_DEPS = fortran/gfortran.h fortran/intrinsic.h fortran/trans-array.h \
275     fortran/trans-const.h fortran/trans-const.h fortran/trans.h \
276     fortran/trans-stmt.h fortran/trans-types.h \
277     $(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_H) coretypes.h $(GGC_H)
278
279 fortran/f95-lang.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
280   gt-fortran-f95-lang.h gtype-fortran.h $(CGRAPH_H) $(TARGET_H) \
281   $(BUILTINS_DEF) fortran/types.def
282 fortran/scanner.o: toplev.h
283 fortran/convert.o: $(GFORTRAN_TRANS_DEPS)
284 fortran/trans.o: $(GFORTRAN_TRANS_DEPS)
285 fortran/trans-decl.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-decl.h \
286   $(CGRAPH_H) $(TARGET_H) $(FUNCTION_H) $(FLAGS_H) $(RTL_H) $(TREE_GIMPLE_H) \
287   $(TREE_DUMP_H)
288 fortran/trans-types.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-types.h \
289   $(REAL_H) toplev.h $(TARGET_H)
290 fortran/trans-const.o: $(GFORTRAN_TRANS_DEPS)
291 fortran/trans-expr.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
292 fortran/trans-stmt.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
293 fortran/trans-openmp.o: $(GFORTRAN_TRANS_DEPS)
294 fortran/trans-io.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-io.h \
295   fortran/ioparm.def
296 fortran/trans-array.o: $(GFORTRAN_TRANS_DEPS)
297 fortran/trans-intrinsic.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
298   gt-fortran-trans-intrinsic.h
299 fortran/dependency.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
300 fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS) $(TARGET_H) $(RTL_H)
301 fortran/resolve.o: fortran/dependency.h
302 fortran/options.o: $(PARAMS_H) $(TARGET_H)