ada/
[official-gcc.git] / gcc / fortran / Make-lang.in
blob2dc294f8cab451162963a3efe95fccd327ce1ac3
1 # -*- makefile -*-
2 # Top level makefile fragment for GNU gfortran, the GNU Fortran 95 compiler.
3 # Copyright (C) 2002-2015 Free Software Foundation, Inc.
4 # Contributed by Paul Brook <paul@nowt.org
5 # and Steven Bosscher <s.bosscher@student.tudelft.nl>
7 #This file is part of GCC.
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 3, or (at your option)
12 #any later version.
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.
19 #You should have received a copy of the GNU General Public License
20 #along with GCC; see the file COPYING3.  If not see
21 #<http://www.gnu.org/licenses/>.
23 # This file provides the language dependent support in the main Makefile.
24 # Each language makefile fragment must provide the following targets:
26 # foo.all.cross, foo.start.encap, foo.rest.encap,
27 # foo.install-common, foo.install-man, foo.install-info, foo.install-pdf,
28 # foo.install-html, foo.info, foo.dvi, foo.pdf, foo.html, foo.uninstall,
29 # foo.mostlyclean, foo.clean, foo.distclean,
30 # foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
32 # where `foo' is the name of the language.
34 # It should also provide rules for:
36 # - making any compiler driver (eg: gfortran)
37 # - the compiler proper (eg: f951)
38 # - define the names for selecting the language in LANGUAGES.
39 # $(srcdir) must be set to the gcc/ source directory (*not* gcc/fortran/).
41 # Actual name to use when installing a native compiler.
42 GFORTRAN_INSTALL_NAME := $(shell echo gfortran|sed '$(program_transform_name)')
43 GFORTRAN_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gfortran|sed '$(program_transform_name)')
45 #^L
47 # Use strict warnings for this front end.
48 fortran-warn = $(STRICT_WARN)
50 # These are the groups of object files we have.  The F95_PARSER_OBJS are
51 # all the front end files, the F95_OBJS are the files for the translation
52 # from the parse tree to GENERIC
54 F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \
55     fortran/check.o fortran/class.o fortran/constructor.o fortran/cpp.o \
56     fortran/data.o fortran/decl.o fortran/dump-parse-tree.o fortran/error.o \
57     fortran/expr.o fortran/interface.o fortran/intrinsic.o fortran/io.o \
58     fortran/iresolve.o fortran/match.o fortran/matchexp.o fortran/misc.o \
59     fortran/module.o fortran/openmp.o fortran/options.o fortran/parse.o \
60     fortran/primary.o fortran/resolve.o fortran/scanner.o fortran/simplify.o \
61     fortran/st.o fortran/symbol.o fortran/target-memory.o
63 F95_OBJS = $(F95_PARSER_OBJS) $(FORTRAN_TARGET_OBJS) \
64     fortran/convert.o fortran/dependency.o fortran/f95-lang.o \
65     fortran/trans.o fortran/trans-array.o fortran/trans-common.o \
66     fortran/trans-const.o fortran/trans-decl.o fortran/trans-expr.o \
67     fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-openmp.o \
68     fortran/trans-stmt.o fortran/trans-types.o fortran/frontend-passes.o
70 fortran_OBJS = $(F95_OBJS) fortran/gfortranspec.o
72 #\f
73 # Define the names for selecting gfortran in LANGUAGES.
74 fortran: f951$(exeext)
76 # Tell GNU make to ignore files by these names if they exist.
77 .PHONY: fortran
79 CFLAGS-fortran/gfortranspec.o += $(DRIVER_DEFINES)
81 # Create the compiler driver gfortran.
82 GFORTRAN_D_OBJS = $(GCC_OBJS) fortran/gfortranspec.o
83 gfortran$(exeext): $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) libcommon-target.a \
84         $(LIBDEPS)
85         +$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
86           $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) libcommon-target.a \
87           $(EXTRA_GCC_LIBS) $(LIBS)
89 # Create a version of the gfortran driver which calls the cross-compiler.
90 gfortran-cross$(exeext): gfortran$(exeext)
91         -rm -f gfortran-cross$(exeext)
92         cp gfortran$(exeext) gfortran-cross$(exeext)
94 # The compiler itself is called f951.
95 f951$(exeext): $(F95_OBJS) \
96                 $(BACKEND) $(LIBDEPS) attribs.o
97         +$(LLINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
98                 $(F95_OBJS) $(BACKEND) $(ZLIB) $(LIBS) attribs.o \
99                 $(BACKENDLIBS)
101 gt-fortran-trans.h    : s-gtype; @true
103 # Build hooks:
105 fortran.all.cross: gfortran-cross$(exeext)
107 fortran.start.encap: gfortran$(exeext)
108 fortran.rest.encap:
110 fortran.srcinfo: doc/gfortran.info
111         -cp -p $^ $(srcdir)/fortran
113 fortran.tags: force
114         cd $(srcdir)/fortran; etags -o TAGS.sub *.c *.h; \
115         etags --include TAGS.sub --include ../TAGS.sub
117 fortran.info: doc/gfortran.info doc/gfc-internals.info
118 fortran.dvi: doc/gfortran.dvi doc/gfc-internals.dvi
120 F95_HTMLFILES = $(build_htmldir)/gfortran
122 fortran.html: $(F95_HTMLFILES)/index.html
124 fortran.install-html: $(F95_HTMLFILES)
125         @$(NORMAL_INSTALL)
126         test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
127         @list='$(F95_HTMLFILES)'; for p in $$list; do \
128           if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
129           f=$(html__strip_dir) \
130           if test -d "$$d$$p"; then \
131             echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
132             $(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
133             echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
134             $(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
135           else \
136             echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
137             $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
138           fi; \
139         done
141 F95_PDFFILES = doc/gfortran.pdf
143 fortran.pdf: $(F95_PDFFILES) doc/gfc-internals.pdf
145 fortran.install-pdf: $(F95_PDFFILES)
146         @$(NORMAL_INSTALL)
147         test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
148         @list='$(F95_PDFFILES)'; for p in $$list; do \
149           if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
150           f=$(pdf__strip_dir) \
151           echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
152           $(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
153         done
155 F95_MANFILES = doc/gfortran.1
157 fortran.man: $(F95_MANFILES)
159 fortran.srcman: $(F95_MANFILES)
160         -cp -p $^ $(srcdir)/doc
162 fortran.srcextra:
164 check-f95 : check-gfortran
165 check-fortran : check-gfortran
166 check-f95-subtargets : check-gfortran-subtargets
167 check-fortran-subtargets : check-gfortran-subtargets
168 lang_checks += check-gfortran
169 lang_checks_parallelized += check-gfortran
170 # For description see comment above check_gcc_parallelize in gcc/Makefile.in.
171 check_gfortran_parallelize = 10000
173 # GFORTRAN documentation.
174 GFORTRAN_TEXI = \
175   $(srcdir)/fortran/gfortran.texi \
176   $(srcdir)/fortran/intrinsic.texi \
177   $(srcdir)/fortran/invoke.texi \
178   $(srcdir)/doc/include/fdl.texi \
179   $(srcdir)/doc/include/gpl_v3.texi \
180   $(srcdir)/doc/include/funding.texi \
181   $(srcdir)/doc/include/gcc-common.texi \
182   gcc-vers.texi
184 doc/gfortran.info: $(GFORTRAN_TEXI)
185         if [ x$(BUILD_INFO) = xinfo ]; then \
186           rm -f doc/gfortran.info-*; \
187           $(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
188             -o $@ $<; \
189         else true; fi
191 doc/gfortran.dvi: $(GFORTRAN_TEXI)
192         $(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
194 doc/gfortran.pdf: $(GFORTRAN_TEXI)
195         $(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
197 $(build_htmldir)/gfortran/index.html: $(GFORTRAN_TEXI)
198         $(mkinstalldirs) $(@D)
199         rm -f $(@D)/*
200         $(TEXI2HTML) -I $(gcc_docdir)/include -I $(srcdir)/fortran -o $(@D) $<
202 .INTERMEDIATE: gfortran.pod
204 gfortran.pod: $(GFORTRAN_TEXI)
205         -$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" \
206           < $(srcdir)/fortran/invoke.texi > $@
208 # GFORTRAN internals documentation.
209 GFC_INTERNALS_TEXI = \
210   $(srcdir)/fortran/gfc-internals.texi \
211   $(srcdir)/doc/include/fdl.texi \
212   $(srcdir)/doc/include/gcc-common.texi \
213   gcc-vers.texi
215 doc/gfc-internals.info: $(GFC_INTERNALS_TEXI)
216         if [ x$(BUILD_INFO) = xinfo ]; then \
217           rm -f doc/gfc-internals.info-*; \
218           $(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
219             -o $@ $<; \
220         else true; fi
222 doc/gfc-internals.dvi: $(GFC_INTERNALS_TEXI)
223         $(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
225 doc/gfc-internals.pdf: $(GFC_INTERNALS_TEXI)
226         $(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
228 # Create or recreate the gfortran private include file directory.
229 install-finclude-dir: installdirs
230         $(mkinstalldirs) -m 0755 $(DESTDIR)$(libsubdir)/finclude
232 # Install hooks:
233 # f951 is installed elsewhere as part of $(COMPILERS).
235 # Install the driver program as $(target)-gfortran, and also as gfortran
236 # if native.
237 fortran.install-common: install-finclude-dir installdirs
238         -if test "$(enable_as_accelerator)" != "yes" ; then \
239           if [ -f f951$(exeext) ] ; then \
240             rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
241             $(INSTALL_PROGRAM) gfortran$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
242             chmod a+x $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
243             if [ ! -f gfortran-cross$(exeext) ] ; then \
244               rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
245               $(LN) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
246             fi ; \
247           fi; \
248         fi
250 fortran.install-plugin:
252 fortran.install-info: $(DESTDIR)$(infodir)/gfortran.info
254 fortran.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
256 $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1 \
257                 installdirs
258         -rm -f $@
259         -$(INSTALL_DATA) $< $@
260         -chmod a-x $@
262 fortran.uninstall:
263         if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
264           echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info"; \
265           install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info || : ; \
266         else : ; fi; \
267         rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
268         rm -rf $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext); \
269         rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
270         rm -rf $(DESTDIR)$(infodir)/gfortran.info*
273 # Clean hooks:
274 # A lot of the ancillary files are deleted by the main makefile.
275 # We just have to delete files specific to us.
277 fortran.mostlyclean:
278         -rm -f gfortran$(exeext) gfortran-cross$(exeext) f951$(exeext)
279         -rm -f fortran/*.o
281 fortran.clean:
282 fortran.distclean:
283         -rm -f fortran/config.status fortran/Makefile
285 fortran.extraclean:
286 fortran.maintainer-clean:
287         -rm -f doc/gfortran.info* fortran/gfortran.*aux
288         -rm -f $(docobjdir)/gfortran.1
291 # Stage hooks:
292 # The toplevel makefile has already created stage?/fortran at this point.
294 fortran.stage1: stage1-start
295         -mv fortran/*$(objext) stage1/fortran
296 fortran.stage2: stage2-start
297         -mv fortran/*$(objext) stage2/fortran
298 fortran.stage3: stage3-start
299         -mv fortran/*$(objext) stage3/fortran
300 fortran.stage4: stage4-start
301         -mv fortran/*$(objext) stage4/fortran
302 fortran.stageprofile: stageprofile-start
303         -mv fortran/*$(objext) stageprofile/fortran
304 fortran.stagefeedback: stageprofile-start
305         -mv fortran/*$(objext) stagefeedback/fortran
309 CFLAGS-fortran/cpp.o += $(TARGET_SYSTEM_ROOT_DEFINE)
310 CFLAGS-fortran/module.o += $(ZLIBINC)