diff options
Diffstat (limited to 'src/legacy/i810/Makefile.am')
-rw-r--r-- | src/legacy/i810/Makefile.am | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/src/legacy/i810/Makefile.am b/src/legacy/i810/Makefile.am new file mode 100644 index 00000000..aab7f512 --- /dev/null +++ b/src/legacy/i810/Makefile.am @@ -0,0 +1,33 @@ +SUBDIRS = xvmc + +noinst_LTLIBRARIES = liblegacy-i810.la + +AM_CFLAGS = @CWARNFLAGS@ @XORG_CFLAGS@ @DRM_CFLAGS@ @DRI_CFLAGS@ @PCIACCESS_CFLAGS@ -I$(top_srcdir)/src + +liblegacy_i810_la_SOURCES = \ + i810_accel.c \ + i810_common.h \ + i810_cursor.c \ + i810_dga.c \ + i810_driver.c \ + i810.h \ + i810_io.c \ + i810_memory.c \ + i810_reg.h \ + i810_ring.h \ + i810_video.c \ + i810_wmark.c + +if DRI +liblegacy_i810_la_SOURCES +=\ + i810_dri.c \ + i810_dri.h \ + $(NULL) +endif + +if XVMC +liblegacy_i810_la_SOURCES += \ + i810_hwmc.h \ + i810_hwmc.c \ + $(NULL) +endif |