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/Makefile | |
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/Makefile')
-rw-r--r-- | src/gallium/drivers/galahad/Makefile | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/gallium/drivers/galahad/Makefile b/src/gallium/drivers/galahad/Makefile new file mode 100644 index 00000000000..d5df84b71b8 --- /dev/null +++ b/src/gallium/drivers/galahad/Makefile @@ -0,0 +1,12 @@ +TOP = ../../../.. +include $(TOP)/configs/current + +LIBNAME = identity + +C_SOURCES = \ + glhd_objects.c \ + glhd_context.c \ + glhd_screen.c \ + glhd_drm.c + +include ../../Makefile.template |