| 1 |
285 |
jeremybenn |
# -*- makefile -*-
|
| 2 |
|
|
# Top level makefile fragment for GNU gfortran, the GNU Fortran 95 compiler.
|
| 3 |
|
|
# Copyright (C) 2002, 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010
|
| 4 |
|
|
# Free Software Foundation, Inc.
|
| 5 |
|
|
# Contributed by Paul Brook
|
| 6 |
|
|
# and Steven Bosscher
|
| 7 |
|
|
|
| 8 |
|
|
#This file is part of GCC.
|
| 9 |
|
|
|
| 10 |
|
|
#GCC is free software; you can redistribute it and/or modify
|
| 11 |
|
|
#it under the terms of the GNU General Public License as published by
|
| 12 |
|
|
#the Free Software Foundation; either version 3, or (at your option)
|
| 13 |
|
|
#any later version.
|
| 14 |
|
|
|
| 15 |
|
|
#GCC is distributed in the hope that it will be useful,
|
| 16 |
|
|
#but WITHOUT ANY WARRANTY; without even the implied warranty of
|
| 17 |
|
|
#MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
| 18 |
|
|
#GNU General Public License for more details.
|
| 19 |
|
|
|
| 20 |
|
|
#You should have received a copy of the GNU General Public License
|
| 21 |
|
|
#along with GCC; see the file COPYING3. If not see
|
| 22 |
|
|
#.
|
| 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.install-common, foo.install-man, foo.install-info, foo.install-pdf,
|
| 29 |
|
|
# foo.install-html, foo.info, foo.dvi, foo.pdf, foo.html, foo.uninstall,
|
| 30 |
|
|
# foo.mostlyclean, foo.clean, foo.distclean,
|
| 31 |
|
|
# foo.maintainer-clean, foo.stage1, foo.stage2, foo.stage3, foo.stage4
|
| 32 |
|
|
#
|
| 33 |
|
|
# where `foo' is the name of the language.
|
| 34 |
|
|
#
|
| 35 |
|
|
# It should also provide rules for:
|
| 36 |
|
|
#
|
| 37 |
|
|
# - making any compiler driver (eg: gfortran)
|
| 38 |
|
|
# - the compiler proper (eg: f951)
|
| 39 |
|
|
# - define the names for selecting the language in LANGUAGES.
|
| 40 |
|
|
# $(srcdir) must be set to the gcc/ source directory (*not* gcc/fortran/).
|
| 41 |
|
|
|
| 42 |
|
|
# Actual name to use when installing a native compiler.
|
| 43 |
|
|
GFORTRAN_INSTALL_NAME := $(shell echo gfortran|sed '$(program_transform_name)')
|
| 44 |
|
|
GFORTRAN_TARGET_INSTALL_NAME := $(target_noncanonical)-$(shell echo gfortran|sed '$(program_transform_name)')
|
| 45 |
|
|
|
| 46 |
|
|
#^L
|
| 47 |
|
|
|
| 48 |
|
|
# Use strict warnings for this front end.
|
| 49 |
|
|
fortran-warn = $(STRICT_WARN)
|
| 50 |
|
|
|
| 51 |
|
|
# These are the groups of object files we have. The F95_PARSER_OBJS are
|
| 52 |
|
|
# all the front end files, the F95_OBJS are the files for the translation
|
| 53 |
|
|
# from the parse tree to GENERIC
|
| 54 |
|
|
|
| 55 |
|
|
F95_PARSER_OBJS = fortran/arith.o fortran/array.o fortran/bbt.o \
|
| 56 |
|
|
fortran/check.o fortran/cpp.o fortran/data.o fortran/decl.o \
|
| 57 |
|
|
fortran/dump-parse-tree.o fortran/error.o fortran/expr.o \
|
| 58 |
|
|
fortran/interface.o fortran/intrinsic.o fortran/io.o fortran/iresolve.o \
|
| 59 |
|
|
fortran/match.o fortran/matchexp.o fortran/misc.o fortran/module.o \
|
| 60 |
|
|
fortran/openmp.o fortran/options.o fortran/parse.o fortran/primary.o \
|
| 61 |
|
|
fortran/resolve.o fortran/scanner.o fortran/simplify.o fortran/st.o \
|
| 62 |
|
|
fortran/symbol.o fortran/target-memory.o
|
| 63 |
|
|
|
| 64 |
|
|
F95_OBJS = $(F95_PARSER_OBJS) $(FORTRAN_TARGET_OBJS) \
|
| 65 |
|
|
fortran/convert.o fortran/dependency.o fortran/f95-lang.o \
|
| 66 |
|
|
fortran/trans.o fortran/trans-array.o fortran/trans-common.o \
|
| 67 |
|
|
fortran/trans-const.o fortran/trans-decl.o fortran/trans-expr.o \
|
| 68 |
|
|
fortran/trans-intrinsic.o fortran/trans-io.o fortran/trans-openmp.o \
|
| 69 |
|
|
fortran/trans-stmt.o fortran/trans-types.o
|
| 70 |
|
|
|
| 71 |
|
|
fortran_OBJS = $(F95_OBJS) gfortranspec.o
|
| 72 |
|
|
|
| 73 |
|
|
#
|
| 74 |
|
|
# Define the names for selecting gfortran in LANGUAGES.
|
| 75 |
|
|
fortran: f951$(exeext)
|
| 76 |
|
|
|
| 77 |
|
|
# Tell GNU make to ignore files by these names if they exist.
|
| 78 |
|
|
.PHONY: fortran
|
| 79 |
|
|
|
| 80 |
|
|
gfortranspec.o: $(srcdir)/fortran/gfortranspec.c $(SYSTEM_H) $(TM_H) $(GCC_H) \
|
| 81 |
|
|
$(CONFIG_H) coretypes.h intl.h
|
| 82 |
|
|
(SHLIB_LINK='$(SHLIB_LINK)'; \
|
| 83 |
|
|
$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) $(DRIVER_DEFINES) \
|
| 84 |
|
|
$(INCLUDES) $(srcdir)/fortran/gfortranspec.c)
|
| 85 |
|
|
|
| 86 |
|
|
# Create the compiler driver gfortran.
|
| 87 |
|
|
GFORTRAN_D_OBJS = $(GCC_OBJS) gfortranspec.o version.o prefix.o intl.o
|
| 88 |
|
|
gfortran$(exeext): $(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBDEPS)
|
| 89 |
|
|
$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
|
| 90 |
|
|
$(GFORTRAN_D_OBJS) $(EXTRA_GCC_OBJS) $(LIBS)
|
| 91 |
|
|
|
| 92 |
|
|
# Create a version of the gfortran driver which calls the cross-compiler.
|
| 93 |
|
|
gfortran-cross$(exeext): gfortran$(exeext)
|
| 94 |
|
|
-rm -f gfortran-cross$(exeext)
|
| 95 |
|
|
cp gfortran$(exeext) gfortran-cross$(exeext)
|
| 96 |
|
|
|
| 97 |
|
|
# The compiler itself is called f951.
|
| 98 |
|
|
f951$(exeext): $(F95_OBJS) \
|
| 99 |
|
|
$(BACKEND) $(LIBDEPS) attribs.o
|
| 100 |
|
|
$(LINKER) $(ALL_LINKERFLAGS) $(LDFLAGS) -o $@ \
|
| 101 |
|
|
$(F95_OBJS) $(BACKEND) $(LIBS) attribs.o $(BACKENDLIBS)
|
| 102 |
|
|
|
| 103 |
|
|
gt-fortran-trans.h : s-gtype; @true
|
| 104 |
|
|
#
|
| 105 |
|
|
# Build hooks:
|
| 106 |
|
|
|
| 107 |
|
|
fortran.all.cross: gfortran-cross$(exeext)
|
| 108 |
|
|
|
| 109 |
|
|
fortran.start.encap: gfortran$(exeext)
|
| 110 |
|
|
fortran.rest.encap:
|
| 111 |
|
|
|
| 112 |
|
|
fortran.srcinfo: doc/gfortran.info
|
| 113 |
|
|
-cp -p $^ $(srcdir)/fortran
|
| 114 |
|
|
|
| 115 |
|
|
fortran.tags: force
|
| 116 |
|
|
cd $(srcdir)/fortran; etags -o TAGS.sub *.c *.h; \
|
| 117 |
|
|
etags --include TAGS.sub --include ../TAGS.sub
|
| 118 |
|
|
|
| 119 |
|
|
fortran.info: doc/gfortran.info doc/gfc-internals.info
|
| 120 |
|
|
fortran.dvi: doc/gfortran.dvi doc/gfc-internals.dvi
|
| 121 |
|
|
|
| 122 |
|
|
F95_HTMLFILES = $(build_htmldir)/gfortran
|
| 123 |
|
|
|
| 124 |
|
|
fortran.html: $(F95_HTMLFILES)/index.html
|
| 125 |
|
|
|
| 126 |
|
|
fortran.install-html: $(F95_HTMLFILES)
|
| 127 |
|
|
@$(NORMAL_INSTALL)
|
| 128 |
|
|
test -z "$(htmldir)" || $(mkinstalldirs) "$(DESTDIR)$(htmldir)"
|
| 129 |
|
|
@list='$(F95_HTMLFILES)'; for p in $$list; do \
|
| 130 |
|
|
if test -f "$$p" || test -d "$$p"; then d=""; else d="$(srcdir)/"; fi; \
|
| 131 |
|
|
f=$(html__strip_dir) \
|
| 132 |
|
|
if test -d "$$d$$p"; then \
|
| 133 |
|
|
echo " $(mkinstalldirs) '$(DESTDIR)$(htmldir)/$$f'"; \
|
| 134 |
|
|
$(mkinstalldirs) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
|
| 135 |
|
|
echo " $(INSTALL_DATA) '$$d$$p'/* '$(DESTDIR)$(htmldir)/$$f'"; \
|
| 136 |
|
|
$(INSTALL_DATA) "$$d$$p"/* "$(DESTDIR)$(htmldir)/$$f"; \
|
| 137 |
|
|
else \
|
| 138 |
|
|
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(htmldir)/$$f'"; \
|
| 139 |
|
|
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(htmldir)/$$f"; \
|
| 140 |
|
|
fi; \
|
| 141 |
|
|
done
|
| 142 |
|
|
|
| 143 |
|
|
F95_PDFFILES = doc/gfortran.pdf
|
| 144 |
|
|
|
| 145 |
|
|
fortran.pdf: $(F95_PDFFILES) doc/gfc-internals.pdf
|
| 146 |
|
|
|
| 147 |
|
|
fortran.install-pdf: $(F95_PDFFILES)
|
| 148 |
|
|
@$(NORMAL_INSTALL)
|
| 149 |
|
|
test -z "$(pdfdir)/gcc" || $(mkinstalldirs) "$(DESTDIR)$(pdfdir)/gcc"
|
| 150 |
|
|
@list='$(F95_PDFFILES)'; for p in $$list; do \
|
| 151 |
|
|
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
|
| 152 |
|
|
f=$(pdf__strip_dir) \
|
| 153 |
|
|
echo " $(INSTALL_DATA) '$$d$$p' '$(DESTDIR)$(pdfdir)/gcc/$$f'"; \
|
| 154 |
|
|
$(INSTALL_DATA) "$$d$$p" "$(DESTDIR)$(pdfdir)/gcc/$$f"; \
|
| 155 |
|
|
done
|
| 156 |
|
|
|
| 157 |
|
|
F95_MANFILES = doc/gfortran.1
|
| 158 |
|
|
|
| 159 |
|
|
fortran.man: $(F95_MANFILES)
|
| 160 |
|
|
|
| 161 |
|
|
fortran.srcman: $(F95_MANFILES)
|
| 162 |
|
|
-cp -p $^ $(srcdir)/doc
|
| 163 |
|
|
|
| 164 |
|
|
fortran.srcextra:
|
| 165 |
|
|
|
| 166 |
|
|
check-f95 : check-gfortran
|
| 167 |
|
|
check-fortran : check-gfortran
|
| 168 |
|
|
check-f95-subtargets : check-gfortran-subtargets
|
| 169 |
|
|
check-fortran-subtargets : check-gfortran-subtargets
|
| 170 |
|
|
lang_checks += check-gfortran
|
| 171 |
|
|
lang_checks_parallelized += check-gfortran
|
| 172 |
|
|
# For description see comment above check_gcc_parallelize in gcc/Makefile.in.
|
| 173 |
|
|
check_gfortran_parallelize = dg.exp=gfortran.dg/\[a-cA-C\]* \
|
| 174 |
|
|
dg.exp=gfortran.dg/\[d-mD-M\]* \
|
| 175 |
|
|
dg.exp=gfortran.dg/\[n-zN-Z0-9\]*
|
| 176 |
|
|
|
| 177 |
|
|
# GFORTRAN documentation.
|
| 178 |
|
|
GFORTRAN_TEXI = \
|
| 179 |
|
|
$(srcdir)/fortran/gfortran.texi \
|
| 180 |
|
|
$(srcdir)/fortran/intrinsic.texi \
|
| 181 |
|
|
$(srcdir)/fortran/invoke.texi \
|
| 182 |
|
|
$(srcdir)/doc/include/fdl.texi \
|
| 183 |
|
|
$(srcdir)/doc/include/gpl_v3.texi \
|
| 184 |
|
|
$(srcdir)/doc/include/funding.texi \
|
| 185 |
|
|
$(srcdir)/doc/include/gcc-common.texi \
|
| 186 |
|
|
gcc-vers.texi
|
| 187 |
|
|
|
| 188 |
|
|
doc/gfortran.info: $(GFORTRAN_TEXI)
|
| 189 |
|
|
if [ x$(BUILD_INFO) = xinfo ]; then \
|
| 190 |
|
|
rm -f doc/gfortran.info-*; \
|
| 191 |
|
|
$(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
|
| 192 |
|
|
-o $@ $<; \
|
| 193 |
|
|
else true; fi
|
| 194 |
|
|
|
| 195 |
|
|
doc/gfortran.dvi: $(GFORTRAN_TEXI)
|
| 196 |
|
|
$(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
|
| 197 |
|
|
|
| 198 |
|
|
doc/gfortran.pdf: $(GFORTRAN_TEXI)
|
| 199 |
|
|
$(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
|
| 200 |
|
|
|
| 201 |
|
|
$(build_htmldir)/gfortran/index.html: $(GFORTRAN_TEXI)
|
| 202 |
|
|
$(mkinstalldirs) $(@D)
|
| 203 |
|
|
rm -f $(@D)/*
|
| 204 |
|
|
$(TEXI2HTML) -I $(gcc_docdir)/include -I $(srcdir)/fortran -o $(@D) $<
|
| 205 |
|
|
|
| 206 |
|
|
.INTERMEDIATE: gfortran.pod
|
| 207 |
|
|
|
| 208 |
|
|
gfortran.pod: $(GFORTRAN_TEXI)
|
| 209 |
|
|
-$(TEXI2POD) -DBUGURL="$(BUGURL_TEXI)" \
|
| 210 |
|
|
< $(srcdir)/fortran/invoke.texi > $@
|
| 211 |
|
|
|
| 212 |
|
|
# GFORTRAN internals documentation.
|
| 213 |
|
|
GFC_INTERNALS_TEXI = \
|
| 214 |
|
|
$(srcdir)/fortran/gfc-internals.texi \
|
| 215 |
|
|
$(srcdir)/doc/include/fdl.texi \
|
| 216 |
|
|
$(srcdir)/doc/include/gcc-common.texi \
|
| 217 |
|
|
gcc-vers.texi
|
| 218 |
|
|
|
| 219 |
|
|
doc/gfc-internals.info: $(GFC_INTERNALS_TEXI)
|
| 220 |
|
|
if [ x$(BUILD_INFO) = xinfo ]; then \
|
| 221 |
|
|
rm -f doc/gfc-internals.info-*; \
|
| 222 |
|
|
$(MAKEINFO) -I $(srcdir)/doc/include -I $(srcdir)/fortran \
|
| 223 |
|
|
-o $@ $<; \
|
| 224 |
|
|
else true; fi
|
| 225 |
|
|
|
| 226 |
|
|
doc/gfc-internals.dvi: $(GFC_INTERNALS_TEXI)
|
| 227 |
|
|
$(TEXI2DVI) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
|
| 228 |
|
|
|
| 229 |
|
|
doc/gfc-internals.pdf: $(GFC_INTERNALS_TEXI)
|
| 230 |
|
|
$(TEXI2PDF) -I $(srcdir)/fortran -I $(abs_docdir)/include -o $@ $<
|
| 231 |
|
|
|
| 232 |
|
|
# Create or recreate the gfortran private include file directory.
|
| 233 |
|
|
install-finclude-dir: installdirs
|
| 234 |
|
|
$(mkinstalldirs) -m 0755 $(DESTDIR)$(libsubdir)/finclude
|
| 235 |
|
|
#
|
| 236 |
|
|
# Install hooks:
|
| 237 |
|
|
# f951 is installed elsewhere as part of $(COMPILERS).
|
| 238 |
|
|
|
| 239 |
|
|
# Install the driver program as $(target)-gfortran
|
| 240 |
|
|
# and also as either gfortran (if native) or $(tooldir)/bin/gfortran.
|
| 241 |
|
|
fortran.install-common: install-finclude-dir installdirs
|
| 242 |
|
|
-if [ -f f951$(exeext) ] ; then \
|
| 243 |
|
|
rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
|
| 244 |
|
|
$(INSTALL_PROGRAM) gfortran$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
|
| 245 |
|
|
chmod a+x $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
|
| 246 |
|
|
if [ -f gfortran-cross$(exeext) ] ; then \
|
| 247 |
|
|
if [ -d $(DESTDIR)$(gcc_tooldir)/bin/. ] ; then \
|
| 248 |
|
|
rm -f $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
|
| 249 |
|
|
$(INSTALL_PROGRAM) gfortran-cross$(exeext) $(DESTDIR)$(gcc_tooldir)/bin/gfortran$(exeext); \
|
| 250 |
|
|
else true; fi; \
|
| 251 |
|
|
else \
|
| 252 |
|
|
rm -f $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
|
| 253 |
|
|
$(LN) $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext) $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
|
| 254 |
|
|
fi ; \
|
| 255 |
|
|
fi
|
| 256 |
|
|
|
| 257 |
|
|
fortran.install-plugin:
|
| 258 |
|
|
|
| 259 |
|
|
fortran.install-info: $(DESTDIR)$(infodir)/gfortran.info
|
| 260 |
|
|
|
| 261 |
|
|
fortran.install-man: $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext)
|
| 262 |
|
|
|
| 263 |
|
|
$(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext): doc/gfortran.1 \
|
| 264 |
|
|
installdirs
|
| 265 |
|
|
-rm -f $@
|
| 266 |
|
|
-$(INSTALL_DATA) $< $@
|
| 267 |
|
|
-chmod a-x $@
|
| 268 |
|
|
|
| 269 |
|
|
fortran.uninstall:
|
| 270 |
|
|
if $(SHELL) -c 'install-info --version | sed 1q | fgrep -s -v -i debian' >/dev/null 2>&1; then \
|
| 271 |
|
|
echo " install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info"; \
|
| 272 |
|
|
install-info --delete --info-dir=$(DESTDIR)$(infodir) $(DESTDIR)$(infodir)/gfortran.info || : ; \
|
| 273 |
|
|
else : ; fi; \
|
| 274 |
|
|
rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_INSTALL_NAME)$(exeext); \
|
| 275 |
|
|
rm -rf $(DESTDIR)$(man1dir)/$(GFORTRAN_INSTALL_NAME)$(man1ext); \
|
| 276 |
|
|
rm -rf $(DESTDIR)$(bindir)/$(GFORTRAN_TARGET_INSTALL_NAME)$(exeext); \
|
| 277 |
|
|
rm -rf $(DESTDIR)$(infodir)/gfortran.info*
|
| 278 |
|
|
|
| 279 |
|
|
#
|
| 280 |
|
|
# Clean hooks:
|
| 281 |
|
|
# A lot of the ancillary files are deleted by the main makefile.
|
| 282 |
|
|
# We just have to delete files specific to us.
|
| 283 |
|
|
|
| 284 |
|
|
fortran.mostlyclean:
|
| 285 |
|
|
-rm -f f951$(exeext)
|
| 286 |
|
|
-rm -f fortran/*.o
|
| 287 |
|
|
|
| 288 |
|
|
fortran.clean:
|
| 289 |
|
|
fortran.distclean:
|
| 290 |
|
|
-rm -f fortran/config.status fortran/Makefile
|
| 291 |
|
|
|
| 292 |
|
|
fortran.extraclean:
|
| 293 |
|
|
fortran.maintainer-clean:
|
| 294 |
|
|
-rm -f doc/gfortran.info* fortran/gfortran.*aux
|
| 295 |
|
|
-rm -f $(docobjdir)/gfortran.1
|
| 296 |
|
|
|
| 297 |
|
|
#
|
| 298 |
|
|
# Stage hooks:
|
| 299 |
|
|
# The toplevel makefile has already created stage?/fortran at this point.
|
| 300 |
|
|
|
| 301 |
|
|
fortran.stage1: stage1-start
|
| 302 |
|
|
-mv fortran/*$(objext) stage1/fortran
|
| 303 |
|
|
fortran.stage2: stage2-start
|
| 304 |
|
|
-mv fortran/*$(objext) stage2/fortran
|
| 305 |
|
|
fortran.stage3: stage3-start
|
| 306 |
|
|
-mv fortran/*$(objext) stage3/fortran
|
| 307 |
|
|
fortran.stage4: stage4-start
|
| 308 |
|
|
-mv fortran/*$(objext) stage4/fortran
|
| 309 |
|
|
fortran.stageprofile: stageprofile-start
|
| 310 |
|
|
-mv fortran/*$(objext) stageprofile/fortran
|
| 311 |
|
|
fortran.stagefeedback: stageprofile-start
|
| 312 |
|
|
-mv fortran/*$(objext) stagefeedback/fortran
|
| 313 |
|
|
|
| 314 |
|
|
#
|
| 315 |
|
|
# .o: .h dependencies.
|
| 316 |
|
|
|
| 317 |
|
|
# Everything depends on gfortran.h, but only a few files depend on
|
| 318 |
|
|
# the other headers. So at some point we'll have to split out
|
| 319 |
|
|
# which objects depend on what. FIXME
|
| 320 |
|
|
# TODO: Add dependencies on the backend/tree header files
|
| 321 |
|
|
|
| 322 |
|
|
$(F95_PARSER_OBJS): fortran/gfortran.h fortran/libgfortran.h \
|
| 323 |
|
|
fortran/intrinsic.h fortran/match.h \
|
| 324 |
|
|
fortran/parse.h fortran/arith.h fortran/target-memory.h \
|
| 325 |
|
|
$(CONFIG_H) $(SYSTEM_H) $(TM_H) $(TM_P_H) coretypes.h \
|
| 326 |
|
|
$(RTL_H) $(TREE_H) $(TREE_DUMP_H) $(GGC_H) $(EXPR_H) \
|
| 327 |
|
|
$(FLAGS_H) output.h $(DIAGNOSTIC_H) errors.h $(FUNCTION_H)
|
| 328 |
|
|
fortran/openmp.o: pointer-set.h $(TARGET_H) toplev.h
|
| 329 |
|
|
|
| 330 |
|
|
GFORTRAN_TRANS_DEPS = fortran/gfortran.h fortran/libgfortran.h \
|
| 331 |
|
|
fortran/intrinsic.h fortran/trans-array.h \
|
| 332 |
|
|
fortran/trans-const.h fortran/trans-const.h fortran/trans.h \
|
| 333 |
|
|
fortran/trans-stmt.h fortran/trans-types.h \
|
| 334 |
|
|
$(CONFIG_H) $(SYSTEM_H) $(TREE_H) $(TM_H) coretypes.h $(GGC_H)
|
| 335 |
|
|
|
| 336 |
|
|
fortran/f95-lang.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
|
| 337 |
|
|
gt-fortran-f95-lang.h gtype-fortran.h $(CGRAPH_H) $(TARGET_H) fortran/cpp.h \
|
| 338 |
|
|
$(BUILTINS_DEF) fortran/types.def \
|
| 339 |
|
|
libfuncs.h expr.h except.h
|
| 340 |
|
|
fortran/scanner.o: toplev.h fortran/cpp.h
|
| 341 |
|
|
fortran/convert.o: $(GFORTRAN_TRANS_DEPS)
|
| 342 |
|
|
fortran/trans.o: $(GFORTRAN_TRANS_DEPS) tree-iterator.h
|
| 343 |
|
|
fortran/trans-decl.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-decl.h \
|
| 344 |
|
|
$(CGRAPH_H) $(TARGET_H) $(FUNCTION_H) $(FLAGS_H) $(RTL_H) $(GIMPLE_H) \
|
| 345 |
|
|
$(TREE_DUMP_H) debug.h pointer-set.h
|
| 346 |
|
|
fortran/trans-types.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-types.h \
|
| 347 |
|
|
$(REAL_H) toplev.h $(TARGET_H) $(FLAGS_H) dwarf2out.h
|
| 348 |
|
|
fortran/trans-const.o: $(GFORTRAN_TRANS_DEPS)
|
| 349 |
|
|
fortran/trans-expr.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
|
| 350 |
|
|
fortran/trans-stmt.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
|
| 351 |
|
|
fortran/trans-openmp.o: $(GFORTRAN_TRANS_DEPS)
|
| 352 |
|
|
fortran/trans-io.o: $(GFORTRAN_TRANS_DEPS) gt-fortran-trans-io.h \
|
| 353 |
|
|
fortran/ioparm.def
|
| 354 |
|
|
fortran/trans-array.o: $(GFORTRAN_TRANS_DEPS)
|
| 355 |
|
|
fortran/trans-intrinsic.o: $(GFORTRAN_TRANS_DEPS) fortran/mathbuiltins.def \
|
| 356 |
|
|
gt-fortran-trans-intrinsic.h
|
| 357 |
|
|
fortran/dependency.o: $(GFORTRAN_TRANS_DEPS) fortran/dependency.h
|
| 358 |
|
|
fortran/trans-common.o: $(GFORTRAN_TRANS_DEPS) $(TARGET_H) $(RTL_H)
|
| 359 |
|
|
fortran/resolve.o: fortran/dependency.h fortran/data.h fortran/target-memory.h
|
| 360 |
|
|
fortran/data.o: fortran/data.h
|
| 361 |
|
|
fortran/options.o: $(PARAMS_H) $(TARGET_H) fortran/cpp.h
|
| 362 |
|
|
fortran/cpp.o: fortran/cpp.c $(BASEVER) incpath.h incpath.o
|
| 363 |
|
|
$(COMPILER) -c $(ALL_COMPILERFLAGS) $(ALL_CPPFLAGS) \
|
| 364 |
|
|
-DBASEVER=$(BASEVER_s) $< $(OUTPUT_OPTION)
|