OSDN Git Service

Add new DSO versioning (SONAME changed to libva-VERSION.so.CURRENT.REVISION.AGE).
[android-x86/hardware-intel-common-libva.git] / test / Makefile.am
1 # Copyright (c) 2007 Intel Corporation. All Rights Reserved.
2 #
3 # Permission is hereby granted, free of charge, to any person obtaining a
4 # copy of this software and associated documentation files (the
5 # "Software"), to deal in the Software without restriction, including
6 # without limitation the rights to use, copy, modify, merge, publish,
7 # distribute, sub license, and/or sell copies of the Software, and to
8 # permit persons to whom the Software is furnished to do so, subject to
9 # the following conditions:
10
11 # The above copyright notice and this permission notice (including the
12 # next paragraph) shall be included in all copies or substantial portions
13 # of the Software.
14
15 # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
16 # OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
17 # MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
18 # IN NO EVENT SHALL PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR
19 # ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
20 # TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
21 # SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
22
23 check_PROGRAMS = test_01 test_02 test_03 test_04 test_05 test_06 \
24                 test_07 test_08 test_09 test_10 test_11 test_12
25
26 bin_PROGRAMS = vainfo
27
28 testdir = $(bindir)
29
30 AM_CFLAGS = -I$(top_srcdir)/../../include/external/ -I$(top_srcdir)/src -I$(top_srcdir)/src/x11 -DIN_LIBVA
31
32 TESTS = $(check_PROGRAMS)
33
34 TEST_LIBS = $(top_srcdir)/src/$(libvabackendlib)
35
36 vainfo_LDADD = $(top_srcdir)/src/$(libvabackendlib)
37 vainfo_DEPENDENCIES = $(top_srcdir)/src/$(libvabackendlib)
38 vainfo_SOURCES = vainfo.c
39
40 test_01_LDADD = $(TEST_LIBS)
41 test_01_SOURCES = test_01.c
42
43 test_02_LDADD = $(TEST_LIBS)
44 test_02_SOURCES = test_02.c
45
46 test_03_LDADD = $(TEST_LIBS)
47 test_03_SOURCES = test_03.c
48
49 test_04_LDADD = $(TEST_LIBS)
50 test_04_SOURCES = test_04.c
51
52 test_05_LDADD = $(TEST_LIBS)
53 test_05_SOURCES = test_05.c
54
55 test_06_LDADD = $(TEST_LIBS)
56 test_06_SOURCES = test_06.c
57
58 test_07_LDADD = $(TEST_LIBS)
59 test_07_SOURCES = test_07.c
60
61 test_08_LDADD = $(TEST_LIBS)
62 test_08_SOURCES = test_08.c
63
64 test_09_LDADD = $(TEST_LIBS)
65 test_09_SOURCES = test_09.c
66
67 test_10_LDADD = $(TEST_LIBS)
68 test_10_SOURCES = test_10.c
69
70 test_11_LDADD = $(TEST_LIBS)
71 test_11_SOURCES = test_11.c
72
73 test_12_LDADD = $(TEST_LIBS)
74 test_12_SOURCES = test_12.c
75
76 EXTRA_DIST = test_common.c mpeg2-I.jpg mpeg2-I.mpg
77
78 valgrind:       $(check_PROGRAMS)
79         for a in $(check_PROGRAMS); do \
80                 valgrind --leak-check=full --show-reachable=yes .libs/$$a; \
81         done