summaryrefslogtreecommitdiff
path: root/src/gallium/winsys/drm/i965/gem/Makefile
diff options
context:
space:
mode:
authorKeith Whitwell <keithw@vmware.com>2009-10-23 23:36:02 +0100
committerKeith Whitwell <keithw@vmware.com>2009-10-23 23:36:02 +0100
commitb7efe646b66e617ff968cb69bad33308c3a2c06a (patch)
treeac1b055fa78caa16c438002858355b7cd9fa751c /src/gallium/winsys/drm/i965/gem/Makefile
parent22906f730141a233341f3ec124bbb9dd2e8904e2 (diff)
ws/i965: clone the i915 winsys
I'll want to rework this, not sure trying to share this code is a very good idea at least until the interfaces from the two drivers calm down.
Diffstat (limited to 'src/gallium/winsys/drm/i965/gem/Makefile')
-rw-r--r--src/gallium/winsys/drm/i965/gem/Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/gallium/winsys/drm/i965/gem/Makefile b/src/gallium/winsys/drm/i965/gem/Makefile
new file mode 100644
index 0000000000..0d6d4e37db
--- /dev/null
+++ b/src/gallium/winsys/drm/i965/gem/Makefile
@@ -0,0 +1,16 @@
+TOP = ../../../../../..
+include $(TOP)/configs/current
+
+LIBNAME = inteldrm
+
+C_SOURCES = \
+ intel_drm_batchbuffer.c \
+ intel_drm_buffer.c \
+ intel_drm_fence.c \
+ intel_drm_api.c
+
+LIBRARY_INCLUDES = $(shell pkg-config libdrm --cflags-only-I)
+
+LIBRARY_DEFINES = $(shell pkg-config libdrm --cflags-only-other)
+
+include ../../../../Makefile.template