summaryrefslogtreecommitdiff
path: root/test/CPPFLAGS.py
diff options
context:
space:
mode:
authorSteven Knight <knight@baldmt.com>2004-07-29 13:22:43 +0000
committerSteven Knight <knight@baldmt.com>2004-07-29 13:22:43 +0000
commit39c71db4a22f03bf17a39fa84ff6abe84e4f0d51 (patch)
tree26e7f0319f29604b9c80df73009b768d1f0067a6 /test/CPPFLAGS.py
parent6a1ff461cdea7e26330ebcdce821ae5a95e415ce (diff)
downloadscons-39c71db4a22f03bf17a39fa84ff6abe84e4f0d51.tar.gz
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 357a2413..92c7d7c6 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))