aboutsummaryrefslogtreecommitdiffstats
path: root/src/gallium/winsys/g3dvl
diff options
context:
space:
mode:
authorCooper Yuan <[email protected]>2010-01-29 21:42:09 +0800
committerCooper Yuan <[email protected]>2010-01-29 21:42:09 +0800
commit6783672a974d73b9900f596fc71fb9c17d2c2ecc (patch)
treee06f7cb1e8121257da6b6c5e4390b6d0ab4acf3a /src/gallium/winsys/g3dvl
parent447dddb93d8dc2551ef7a9c43004237c7a8dd2dd (diff)
r300g/g3dvl: port xvmc video stuff to mesa/pipe-video branch
Diffstat (limited to 'src/gallium/winsys/g3dvl')
-rw-r--r--src/gallium/winsys/g3dvl/drm/radeon/Makefile19
1 files changed, 19 insertions, 0 deletions
diff --git a/src/gallium/winsys/g3dvl/drm/radeon/Makefile b/src/gallium/winsys/g3dvl/drm/radeon/Makefile
new file mode 100644
index 00000000000..6768119c2f4
--- /dev/null
+++ b/src/gallium/winsys/g3dvl/drm/radeon/Makefile
@@ -0,0 +1,19 @@
+# This makefile produces a libXvMCg3dvl.so which is
+# based on DRM/DRI
+
+TOP = ../../../../../..
+include $(TOP)/configs/current
+
+C_SOURCES =
+
+DRIVER_INCLUDES = $(shell pkg-config libdrm libdrm_radeon --cflags-only-I) \
+ -I$(TOP)/src/gallium/winsys/drm/nouveau \
+DRIVER_DEFINES = $(shell pkg-config libdrm libdrm_nouveau --cflags-only-other)
+
+PIPE_DRIVERS = \
+ $(TOP)/src/gallium/winsys/drm/radeon/drm/libradeondrm.a \
+ $(TOP)/src/gallium/drivers/radeon/libradeon.a \
+
+DRIVER_LIB_DEPS += $(shell pkg-config libdrm_radeon --libs)
+
+include ../Makefile.template