Ignore:
Timestamp:
Sep 7, 2006, 3:21:16 PM (19 years ago)
Author:
jack
Message:

The install target should now be complete.

Location:
anuga_core/source/anuga
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • anuga_core/source/anuga/mesh_engine/SConscript

    r3545 r3546  
     1import os
    12Import('env')
    23env2 = env.Copy()
    34env2.Append(CPPDEFINES=[('TRILIBRARY', 1), ('NO_TIMER', 1)])
    45
    5 env2.SharedLibrary('triang', ['triangle.c', 'triang.c'])
    6 env2.SharedLibrary('triangle', ['triangle.c'])
     6instdir = os.path.join(env['PREFIX'], 'anuga', 'mesh_engine')
     7env.Install(instdir, env2.SharedLibrary('triang', ['triangle.c', 'triang.c']))
     8env.Install(instdir, env2.SharedLibrary('triangle', ['triangle.c']))
  • anuga_core/source/anuga/pyvolution/SConscript

    r3523 r3546  
     1import os
    12Import('env')
    23env2 = env.Copy()
    34env2.Append(CPPPATH=['#anuga_core/source/anuga/utilities'])
    45
    5 env2.SharedLibrary('quantity_ext', ['quantity_ext.c'])
    6 env2.SharedLibrary('shallow_water_ext', ['shallow_water_ext.c'])
    7 env2.SharedLibrary('shallow_water_kinetic', ['shallow_water_kinetic_ext.c'])
     6instdir = os.path.join(env['PREFIX'], 'anuga', 'pyvolution')
     7env.Install(instdir, env2.SharedLibrary('quantity_ext', ['quantity_ext.c']))
     8env.Install(instdir, env2.SharedLibrary('shallow_water_ext', ['shallow_water_ext.c']))
     9env.Install(instdir, env2.SharedLibrary('shallow_water_kinetic', ['shallow_water_kinetic_ext.c']))
  • anuga_core/source/anuga/utilities/SConscript

    r3282 r3546  
     1import os
    12Import('env')
    2 env.SharedLibrary('polygon_ext', ['polygon_ext.c'])
    3 env.SharedLibrary('util_ext', ['util_ext.c'])
    4 env.SharedLibrary('sparse_ext', ['sparse_ext.c'])
     3instdir = os.path.join(env['PREFIX'], 'anuga', 'utilities')
     4env.Install(instdir, env.SharedLibrary('polygon_ext', ['polygon_ext.c']))
     5env.Install(instdir, env.SharedLibrary('util_ext', ['util_ext.c']))
     6env.Install(instdir, env.SharedLibrary('sparse_ext', ['sparse_ext.c']))
Note: See TracChangeset for help on using the changeset viewer.