~ubuntu-branches/ubuntu/gutsy/blender/gutsy-security

« back to all changes in this revision

Viewing changes to intern/opennl/SConscript

  • Committer: Bazaar Package Importer
  • Author(s): Florian Ernst
  • Date: 2005-11-06 12:40:03 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20051106124003-3pgs7tcg5rox96xg
Tags: 2.37a-1.1
* Non-maintainer upload.
* Split out parts of 01_SConstruct_debian.dpatch again: root_build_dir
  really needs to get adjusted before the clean target runs - closes: #333958,
  see #288882 for reference

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
Import ('user_options_dict')
 
2
Import ('library_env')
 
3
 
 
4
opennl_env = library_env.Copy ()
 
5
 
 
6
source_files = ['intern/opennl.c',
 
7
                'superlu/colamd.c',
 
8
                'superlu/get_perm_c.c',
 
9
                'superlu/heap_relax_snode.c',
 
10
                'superlu/lsame.c',
 
11
                'superlu/memory.c',
 
12
                'superlu/mmd.c',
 
13
                'superlu/relax_snode.c',
 
14
                'superlu/scolumn_bmod.c',
 
15
                'superlu/scolumn_dfs.c',
 
16
                'superlu/scopy_to_ucol.c',
 
17
                'superlu/sgssv.c',
 
18
                'superlu/sgstrf.c',
 
19
                'superlu/sgstrs.c',
 
20
                'superlu/smemory.c',
 
21
                'superlu/smyblas2.c',
 
22
                'superlu/sp_coletree.c',
 
23
                'superlu/sp_ienv.c',
 
24
                'superlu/sp_preorder.c',
 
25
                'superlu/spanel_bmod.c',
 
26
                'superlu/spanel_dfs.c',
 
27
                'superlu/spivotL.c',
 
28
                'superlu/spruneL.c',
 
29
                'superlu/ssnode_bmod.c',
 
30
                'superlu/ssnode_dfs.c',
 
31
                'superlu/ssp_blas2.c',
 
32
                'superlu/ssp_blas3.c',
 
33
                'superlu/strsv.c',
 
34
                'superlu/superlu_timer.c',
 
35
                'superlu/sutil.c',
 
36
                'superlu/util.c',
 
37
                'superlu/xerbla.c']
 
38
 
 
39
opennl_env.Append (CPPPATH = ['extern',
 
40
                              'superlu'])
 
41
 
 
42
opennl_env.Library (target='#'+user_options_dict['BUILD_DIR']+'/lib/blender_ONL', source=source_files)
 
43