diff options
author | Corbin Simpson <[email protected]> | 2010-06-22 21:58:56 -0700 |
---|---|---|
committer | Corbin Simpson <[email protected]> | 2010-06-22 22:49:13 -0700 |
commit | d3ad6fa579d89d8c3ee27882d5baf8f8d2ecb3ea (patch) | |
tree | ca26907c6433d7519077e51989c7201c538b5407 /src/gallium/drivers/galahad/SConscript | |
parent | 61ec20581696004acad516b14ca4a8a5ae9e6f1d (diff) |
gallium/drivers: Create Galahad from identity.
Galahad is a sanity-checking layer meant to replace the crufty and
scattered sanity checks inside drivers with a robust, non-silenceable,
useful set of warnings and errors that can be used to keep misbehaving
state trackers from going unnoticed.
Diffstat (limited to 'src/gallium/drivers/galahad/SConscript')
-rw-r--r-- | src/gallium/drivers/galahad/SConscript | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/src/gallium/drivers/galahad/SConscript b/src/gallium/drivers/galahad/SConscript new file mode 100644 index 00000000000..fc668facaf5 --- /dev/null +++ b/src/gallium/drivers/galahad/SConscript @@ -0,0 +1,14 @@ +Import('*') + +env = env.Clone() + +identity = env.ConvenienceLibrary( + target = 'identity', + source = [ + 'glhd_context.c', + 'glhd_drm.c', + 'glhd_objects.c', + 'glhd_screen.c', + ]) + +Export('identity') |