diff options
author | Thomas Hellstrom <thellstrom@vmware.com> | 2011-06-16 15:55:07 +0200 |
---|---|---|
committer | Thomas Hellstrom <thellstrom@vmware.com> | 2011-06-16 16:04:47 +0200 |
commit | 84166d4b457244bcc2f5ace63702d594d602d0c2 (patch) | |
tree | 892d9ee8de7a45b4d21505f9949a8424e3c81a44 /vmwgfx/Makefile.am | |
parent | 0142bb8d10edb153c9ce79a2ea3ff92a7fb15ac5 (diff) |
vmwgfx, saa: Initial import
This imports the vmwgfx driver, based on the Gallium3D Xorg state tracker,
as well as the saa library. A "Shadow Acceleration Architecture", which is
optimized for the case where transfers between system (shadow) and hw memory
is very costly.
Signed-off-by: Thomas Hellstrom <thellstrom@vmware.com>
Diffstat (limited to 'vmwgfx/Makefile.am')
-rw-r--r-- | vmwgfx/Makefile.am | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/vmwgfx/Makefile.am b/vmwgfx/Makefile.am new file mode 100644 index 0000000..5efa8cd --- /dev/null +++ b/vmwgfx/Makefile.am @@ -0,0 +1,24 @@ +vmwgfx_drv_la_LTLIBRARIES = vmwgfx_drv.la +vmwgfx_drv_la_LDFLAGS = -module -avoid-version +vmwgfx_drv_la_CFLAGS = $(CWARNFLAGS) $(XORG_CFLAGS) @LIBDRM_CFLAGS@ -I$(top_srcdir)/src -I$(top_srcdir)/saa +vmwgfx_drv_la_LIBADD = @LIBDRM_LIBS@ $(top_srcdir)/saa/.libs/libsaa.la -lxatracker +vmwgfx_drv_ladir = @moduledir@/drivers + +vmwgfx_drv_la_SOURCES = \ + vmwgfx_driver.c \ + vmwgfx_driver.h \ + vmwgfx_crtc.c \ + vmwgfx_output.c \ + vmwgfx_dri2.c \ + vmwgfx_tex_video.c \ + vmwgfx_saa.c \ + vmwgfx_saa.h \ + vmwgfx_drmi.c \ + vmwgfx_drmi.h \ + vmwgfx_bootstrap.c \ + vmwgfx_overlay.c \ + vmwgfx_ctrl.c \ + vmwgfx_ctrl.h + + + |