| 312 |
|
|
| 313 |
# Import the outside environment |
# Import the outside environment |
| 314 |
|
|
| 315 |
if os.environ.has_key('OSTYPE') and os.environ['OSTYPE']=='msys': |
if os.environ.get('OSTYPE')=='msys': |
| 316 |
env = Environment( |
env = Environment( |
| 317 |
ENV=os.environ |
ENV=os.environ |
| 318 |
, tools=['mingw','lex','yacc','fortran','swig','disttar'] |
, tools=['mingw','lex','yacc','fortran','swig','disttar'] |
| 1210 |
env.SConscript(['lsod/SConscript'],'env') |
env.SConscript(['lsod/SConscript'],'env') |
| 1211 |
|
|
| 1212 |
env.SConscript(['linpack/SConscript'],'env') |
env.SConscript(['linpack/SConscript'],'env') |
| 1213 |
env.SConscript(['tcltk98/generic/interface/SConscript'],'env') |
env.SConscript(['tcltk/generic/interface/SConscript'],'env') |
| 1214 |
else: |
else: |
| 1215 |
print "Skipping... Tcl/Tk GUI isn't being built:",without_tcltk_reason |
print "Skipping... Tcl/Tk GUI isn't being built:",without_tcltk_reason |
| 1216 |
|
|
| 1296 |
#------------------------------------------------------ |
#------------------------------------------------------ |
| 1297 |
# DEFAULT TARGETS |
# DEFAULT TARGETS |
| 1298 |
|
|
| 1299 |
env.Default(['pygtk','tcltk98']) |
env.Default(['pygtk','tcltk']) |
| 1300 |
|
|