Parent Directory
|
Revision Log
Added vim 'syntax=python' comments to many SConscript files.
Lots more work on the datareader extfn.
The testtmy.a4c file requires the file obtained here ('gzip -d' before use)
http://rredc.nrel.gov/solar/old_data/nsrdb/tmy2/unix/23161.tm2.Z
| 1 | # This SConscript builds out static packages -- the ones that |
| 2 | # don't need to be loaded, becuase they're built in. |
| 3 | # It would be a good idea to staticly link ALL packages |
| 4 | # on those platforms that don't support dlopening. |
| 5 | |
| 6 | Import('libascend_env') |
| 7 | |
| 8 | srcs = Split(""" |
| 9 | |
| 10 | sensitivity.c ascFreeAllVars.c bisect.c kvalues.c |
| 11 | |
| 12 | """) |
| 13 | |
| 14 | objs = [] |
| 15 | for s in srcs: |
| 16 | objs += libascend_env.SharedObject(s) |
| 17 | |
| 18 | Return('objs') |
| 19 | |
| 20 | # vim: set syntax=python: |
| 21 |
| john.pye@anu.edu.au | ViewVC Help |
| Powered by ViewVC 1.1.22 |