st/xvmc: consolidate C sources list into Makefile.sources

Signed-off-by: Emil Velikov <emil.l.velikov@gmail.com>
Reviewed-by: Tom Stellard <thomas.stellard@amd.com>
Reviewed-by: Christian König <christian.koenig@amd.com>
This commit is contained in:
Emil Velikov 2013-09-22 20:52:11 +01:00 committed by Tom Stellard
parent 10bd3a3f71
commit 56dfbbd24a
2 changed files with 8 additions and 6 deletions

View file

@ -20,6 +20,7 @@
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
# DEALINGS IN THE SOFTWARE.
include Makefile.sources
include $(top_srcdir)/src/gallium/Automake.inc
AM_CFLAGS = \
@ -28,12 +29,7 @@ AM_CFLAGS = \
noinst_LTLIBRARIES = libxvmctracker.la
libxvmctracker_la_SOURCES = \
block.c \
surface.c \
context.c \
subpicture.c \
attributes.c
libxvmctracker_la_SOURCES = $(C_SOURCES)
check_PROGRAMS = \
tests/test_context \

View file

@ -0,0 +1,6 @@
C_SOURCES := \
block.c \
surface.c \
context.c \
subpicture.c \
attributes.c