diff options
Diffstat (limited to 'SCons/Tool/gfortran.py')
-rw-r--r-- | SCons/Tool/gfortran.py | 29 |
1 files changed, 15 insertions, 14 deletions
diff --git a/SCons/Tool/gfortran.py b/SCons/Tool/gfortran.py index 45750d6..c0c100b 100644 --- a/SCons/Tool/gfortran.py +++ b/SCons/Tool/gfortran.py @@ -1,16 +1,6 @@ -"""SCons.Tool.gfortran - -Tool-specific initialization for gfortran, the GNU Fortran 95/Fortran -2003 compiler. - -There normally shouldn't be any need to import this module directly. -It will usually be imported through the generic SCons.Tool.Tool() -selection method. - -""" - +# MIT License # -# __COPYRIGHT__ +# Copyright The SCons Foundation # # Permission is hereby granted, free of charge, to any person obtaining # a copy of this software and associated documentation files (the @@ -30,14 +20,24 @@ selection method. # LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION # OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION # WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. -# -__revision__ = "__FILE__ __REVISION__ __DATE__ __DEVELOPER__" +"""SCons.Tool.gfortran + +Tool-specific initialization for gfortran, the GNU Fortran 95/Fortran +2003 compiler. + +There normally shouldn't be any need to import this module directly. +It will usually be imported through the generic SCons.Tool.Tool() +selection method. + +""" + import SCons.Util from . import fortran + def generate(env): """Add Builders and construction variables for gfortran to an Environment.""" @@ -56,6 +56,7 @@ def generate(env): env['FORTRANMODDIRPREFIX'] = "-J" + def exists(env): return env.Detect('gfortran') |