/[ascend]/trunk/solvers/dopri5/SConscript
ViewVC logotype

Contents of /trunk/solvers/dopri5/SConscript

Parent Directory Parent Directory | Revision Log Revision Log


Revision 1734 - (show annotations) (download)
Wed Feb 6 01:22:28 2008 UTC (17 years, 1 month ago) by jpye
File size: 531 byte(s)
Fixing up DOPRI5 as standard integrator.
Fixed bug 357 preventing repeated registration of integrators (in integrator.c).
Cleaned up SConstruct file use of WITH_SOLVERS a little bit.
1 Import('env')
2
3 if env.get('WITH_DOPRI5'):
4
5 # To run the test, type
6 # ascdev test/dopri5/dopri5.a4c
7
8 dopri5obj = env.SharedObject("dopri5.c")
9
10 lib = env.SharedLibrary("dopri5",["asc_dopri5.c",dopri5obj]
11 ,LIBS = ['ascend']
12 ,LIBPATH = ['#']
13 ,SHLIBSUFFIX = env['EXTLIB_SUFFIX']
14 ,SHLIBPREFIX = env['EXTLIB_PREFIX']
15 )
16
17 env.Depends(lib,env['libascend'])
18
19 env['extfns'] += lib
20
21 if env.get('CAN_INSTALL'):
22 dir = Dir(env.subst("$INSTALL_ROOT$INSTALL_SOLVERS"))
23 env.InstallShared(dir,lib)
24
25 # vim: set syntax=python:

john.pye@anu.edu.au
ViewVC Help
Powered by ViewVC 1.1.22