1*4c3eb207Smrg# Copyright (C) 2004-2020 Free Software Foundation, Inc. 2627f7eb2Smrg# 3627f7eb2Smrg# This file is part of GCC. 4627f7eb2Smrg# 5627f7eb2Smrg# GCC is free software; you can redistribute it and/or modify 6627f7eb2Smrg# it under the terms of the GNU General Public License as published by 7627f7eb2Smrg# the Free Software Foundation; either version 3, or (at your option) 8627f7eb2Smrg# any later version. 9627f7eb2Smrg# 10627f7eb2Smrg# GCC is distributed in the hope that it will be useful, 11627f7eb2Smrg# but WITHOUT ANY WARRANTY; without even the implied warranty of 12627f7eb2Smrg# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 13627f7eb2Smrg# GNU General Public License for more details. 14627f7eb2Smrg# 15627f7eb2Smrg# You should have received a copy of the GNU General Public License 16627f7eb2Smrg# along with GCC; see the file COPYING3. If not see 17627f7eb2Smrg# <http://www.gnu.org/licenses/>. 18627f7eb2Smrg 19627f7eb2Smrg# Configure looks for the existence of this file to auto-config each language. 20627f7eb2Smrg# We define several parameters used by configure: 21627f7eb2Smrg# 22627f7eb2Smrg# language - name of language as it would appear in $(LANGUAGES) 23627f7eb2Smrg# compilers - value to add to $(COMPILERS) 24627f7eb2Smrg# diff_excludes - files to ignore when building diffs between two versions. 25627f7eb2Smrg 26627f7eb2Smrglanguage="fortran" 27627f7eb2Smrg 28627f7eb2Smrgcompilers="f951\$(exeext)" 29627f7eb2Smrg 30627f7eb2Smrgtarget_libs="target-libgfortran target-libbacktrace" 31627f7eb2Smrg 32627f7eb2Smrggtfiles="\$(srcdir)/fortran/f95-lang.c \$(srcdir)/fortran/trans-decl.c \$(srcdir)/fortran/trans-intrinsic.c \$(srcdir)/fortran/trans-io.c \$(srcdir)/fortran/trans-stmt.c \$(srcdir)/fortran/trans-types.c \$(srcdir)/fortran/trans-types.h \$(srcdir)/fortran/trans.h \$(srcdir)/fortran/trans-const.h" 33627f7eb2Smrg 34