diff options
author | Chris Wilson <chris@chris-wilson.co.uk> | 2013-07-26 09:35:06 +0100 |
---|---|---|
committer | Chris Wilson <chris@chris-wilson.co.uk> | 2013-07-28 14:49:07 +0100 |
commit | 45d4e8dcf9aee37015b1ee026997ed4dabdf112e (patch) | |
tree | c140efa6a28d80266849d08d5ea368419e95c977 /xvmc/Makefile.am | |
parent | ab28526ea43728fb675448515e1519a970fb5f56 (diff) |
uxa: Clear up the common intel directory
Move all the UXA backend specifc files into their own subdirectory.
Signed-off-by: Chris Wilson <chris@chris-wilson.co.uk>
Diffstat (limited to 'xvmc/Makefile.am')
-rw-r--r-- | xvmc/Makefile.am | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/xvmc/Makefile.am b/xvmc/Makefile.am new file mode 100644 index 00000000..dd884a51 --- /dev/null +++ b/xvmc/Makefile.am @@ -0,0 +1,32 @@ +if XVMC +lib_LTLIBRARIES=libIntelXvMC.la +endif + +SUBDIRS = shader + +libIntelXvMC_la_SOURCES = \ + intel_xvmc.c \ + intel_xvmc.h \ + intel_xvmc_private.h \ + intel_xvmc_dump.c \ + i830_reg.h \ + i915_reg.h \ + i915_structs.h \ + i915_program.h \ + i915_xvmc.c \ + i915_xvmc.h \ + brw_defines.h \ + brw_structs.h \ + i965_reg.h \ + i965_xvmc.c \ + xvmc_vld.c \ + intel_batchbuffer.c \ + intel_batchbuffer.h \ + $(NULL) + +AM_CFLAGS = @XORG_CFLAGS@ @DRM_CFLAGS@ @DRI_CFLAGS@ \ + @XVMCLIB_CFLAGS@ @XCB_CFLAGS@ \ + -I$(top_srcdir)/src -DTRUE=1 -DFALSE=0 + +libIntelXvMC_la_LDFLAGS = -version-number 1:0:0 +libIntelXvMC_la_LIBADD = @DRI_LIBS@ @DRM_LIBS@ @XVMCLIB_LIBS@ @XCB_LIBS@ @DRMINTEL_LIBS@ -lpthread |