diff options
author | José Fonseca <jfonseca@vmware.com> | 2009-12-31 22:18:17 +0000 |
---|---|---|
committer | José Fonseca <jfonseca@vmware.com> | 2010-01-01 12:16:19 +0000 |
commit | f8f4757d46627fb453f08dc63fde3d7f458eafe2 (patch) | |
tree | 372bb0bd2c09712f7fef58d66aa7ef493da6bbcc /src/gallium/auxiliary/indices/SConscript | |
parent | fc8e0b97e53fc94b9bafa038cd4420a9588e62f7 (diff) |
scons: Aggregate all tiny libraries in a single library.
Makes integration of gallium into out of tree components much easier. No
pratical change for components in this tree,
Diffstat (limited to 'src/gallium/auxiliary/indices/SConscript')
-rw-r--r-- | src/gallium/auxiliary/indices/SConscript | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/src/gallium/auxiliary/indices/SConscript b/src/gallium/auxiliary/indices/SConscript deleted file mode 100644 index 712e215534..0000000000 --- a/src/gallium/auxiliary/indices/SConscript +++ /dev/null @@ -1,28 +0,0 @@ -Import('*') - -from sys import executable as python_cmd - -env.CodeGenerate( - target = 'u_indices_gen.c', - script = 'u_indices_gen.py', - source = [], - command = python_cmd + ' $SCRIPT > $TARGET' -) - -env.CodeGenerate( - target = 'u_unfilled_gen.c', - script = 'u_unfilled_gen.py', - source = [], - command = python_cmd + ' $SCRIPT > $TARGET' -) - -indices = env.ConvenienceLibrary( - target = 'indices', - source = [ -# 'u_indices.c', -# 'u_unfilled_indices.c', - 'u_indices_gen.c', - 'u_unfilled_gen.c', - ]) - -auxiliaries.insert(0, indices) |