summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/null/Makefile
diff options
context:
space:
mode:
authorJosé Fonseca <jfonseca@vmware.com>2010-03-09 19:47:30 +0000
committerJosé Fonseca <jfonseca@vmware.com>2010-03-09 19:47:56 +0000
commit02716cf7d16543d5dedc6e550895d77139ad2432 (patch)
tree714c83682b7c9bd17baa756f4fa8fb73f397edfe /src/gallium/winsys/null/Makefile
parent9cdaadc92f7ca91d01daf5573bff2c75416ad274 (diff)
null: Add a null software winsys.
One where framebuffer data will be read via texture transfers. Useful for e.g., python state tracker.
Diffstat (limited to 'src/gallium/winsys/null/Makefile')
-rw-r--r--src/gallium/winsys/null/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/winsys/null/Makefile b/src/gallium/winsys/null/Makefile
new file mode 100644
index 0000000000..3a3fb75ab3
--- /dev/null
+++ b/src/gallium/winsys/null/Makefile
@@ -0,0 +1,16 @@
+TOP = ../../../..
+include $(TOP)/configs/current
+
+LIBNAME = ws_null
+
+LIBRARY_INCLUDES = \
+ -I$(TOP)/src/gallium/include \
+ -I$(TOP)/src/gallium/drivers \
+ -I$(TOP)/src/gallium/auxiliary
+
+C_SOURCES = \
+ null_sw_winsys.c
+
+include ../../Makefile.template
+
+