diff options
author | José Fonseca <[email protected]> | 2008-02-18 10:52:44 +0000 |
---|---|---|
committer | José Fonseca <[email protected]> | 2008-02-18 10:52:44 +0000 |
commit | 33ceb6716a2166db75659fa66d85fb4cfb9633c7 (patch) | |
tree | edc306739c44982bd932caf16d9622755b36e0e7 /src/gallium/auxiliary/pipebuffer/SConscript | |
parent | 9df478d2f8269a439024fadf82170814d24acd19 (diff) |
Update scons build for new code layout.
Diffstat (limited to 'src/gallium/auxiliary/pipebuffer/SConscript')
-rw-r--r-- | src/gallium/auxiliary/pipebuffer/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/auxiliary/pipebuffer/SConscript b/src/gallium/auxiliary/pipebuffer/SConscript new file mode 100644 index 00000000000..3d41fd84a6c --- /dev/null +++ b/src/gallium/auxiliary/pipebuffer/SConscript @@ -0,0 +1,14 @@ +Import('*') + +pipebuffer = env.ConvenienceLibrary( + target = 'pipebuffer', + source = [ + 'pb_buffer_fenced.c', + 'pb_buffer_malloc.c', + 'pb_bufmgr_fenced.c', + 'pb_bufmgr_mm.c', + 'pb_bufmgr_pool.c', + 'pb_winsys.c', + ]) + +auxiliaries.insert(0, pipebuffer) |