summaryrefslogtreecommitdiffstats
path: root/test/CPPFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-07-29 13:22:43 (GMT)
committerSteven Knight <knight@baldmt.com>2004-07-29 13:22:43 (GMT)
commit12a4d3a69e3d175804bbcffcb31f57dddb77b0bb (patch)
tree26e7f0319f29604b9c80df73009b768d1f0067a6 /test/CPPFLAGS.py
parentd3d871ea2d2e4b0730cb56c66ac0f77e259ae671 (diff)
downloadSCons-12a4d3a69e3d175804bbcffcb31f57dddb77b0bb.zip
SCons-12a4d3a69e3d175804bbcffcb31f57dddb77b0bb.tar.gz
SCons-12a4d3a69e3d175804bbcffcb31f57dddb77b0bb.tar.bz2
Add Fortran 90/95 support. (Chris Murray)
Diffstat (limited to 'test/CPPFLAGS.py')
-rw-r--r--test/CPPFLAGS.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/test/CPPFLAGS.py b/test/CPPFLAGS.py
index 357a241..92c7d7c 100644
--- a/test/CPPFLAGS.py
+++ b/test/CPPFLAGS.py
@@ -107,7 +107,7 @@ env = Environment(CPPFLAGS = '-x',
CC = r'%s mygcc.py cc',
CXX = r'%s mygcc.py c++',
CXXFLAGS = [],
- F77 = r'%s mygcc.py g77')
+ FORTRAN = r'%s mygcc.py g77')
env.Program(target = 'foo', source = Split('test1.c test2.cpp test3.F'))
""" % (python, python, python, python))
@@ -144,7 +144,7 @@ env = Environment(CPPFLAGS = '-x',
CC = r'%s mygcc.py cc',
CXX = r'%s mygcc.py c++',
CXXFLAGS = [],
- F77 = r'%s mygcc.py g77')
+ FORTRAN = r'%s mygcc.py g77')
env.SharedLibrary(target = File('foo.bar'),
source = Split('test1.c test2.cpp test3.F'))
""" % (python, python, python, python))