diff options
author | Jakob Bornecrantz <[email protected]> | 2010-05-04 12:06:37 +0100 |
---|---|---|
committer | Jakob Bornecrantz <[email protected]> | 2010-05-12 20:15:23 +0100 |
commit | 2c3fb4ecce27f4c2468892241216a06fc77143c4 (patch) | |
tree | 45f260c070edf2a7c480747077d30f8c99dcb0b4 /src/gallium/drivers/rbug/SConscript | |
parent | 92b1908db89f23ee05f8d0da5307529440bc7560 (diff) |
rbug: Break out of trace
Diffstat (limited to 'src/gallium/drivers/rbug/SConscript')
-rw-r--r-- | src/gallium/drivers/rbug/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/drivers/rbug/SConscript b/src/gallium/drivers/rbug/SConscript new file mode 100644 index 00000000000..3da6ac104a4 --- /dev/null +++ b/src/gallium/drivers/rbug/SConscript @@ -0,0 +1,14 @@ +Import('*') + +env = env.Clone() + +rbug = env.ConvenienceLibrary( + target = 'rbug', + source = [ + 'rbug_context.c', + 'rbug_core.c', + 'rbug_objects.c', + 'rbug_screen.c', + ]) + +Export('rbug') |