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 23noinst_PROGRAMS = \ 24 test_01 \ 25 test_02 \ 26 test_03 \ 27 test_04 \ 28 test_05 \ 29 test_06 \ 30 test_07 \ 31 test_08 \ 32 test_09 \ 33 test_10 \ 34 test_11 \ 35 $(NULL) 36 37AM_CFLAGS = \ 38 -DIN_LIBVA \ 39 -I$(top_srcdir) \ 40 $(X11_CFLAGS) \ 41 $(NULL) 42 43TEST_LIBS = \ 44 $(top_builddir)/va/libva.la \ 45 $(top_builddir)/va/libva-x11.la \ 46 $(X11_LIBS) \ 47 $(NULL) 48 49test_01_LDADD = $(TEST_LIBS) 50test_01_SOURCES = test_01.c 51 52test_02_LDADD = $(TEST_LIBS) 53test_02_SOURCES = test_02.c 54 55test_03_LDADD = $(TEST_LIBS) 56test_03_SOURCES = test_03.c 57 58test_04_LDADD = $(TEST_LIBS) 59test_04_SOURCES = test_04.c 60 61test_05_LDADD = $(TEST_LIBS) 62test_05_SOURCES = test_05.c 63 64test_06_LDADD = $(TEST_LIBS) 65test_06_SOURCES = test_06.c 66 67test_07_LDADD = $(TEST_LIBS) 68test_07_SOURCES = test_07.c 69 70test_08_LDADD = $(TEST_LIBS) 71test_08_SOURCES = test_08.c 72 73test_09_LDADD = $(TEST_LIBS) 74test_09_SOURCES = test_09.c 75 76test_10_LDADD = $(TEST_LIBS) 77test_10_SOURCES = test_10.c 78 79test_11_LDADD = $(TEST_LIBS) 80test_11_SOURCES = test_11.c 81 82EXTRA_DIST = test_common.c test_x11.c 83 84valgrind: $(noinst_PROGRAMS) 85 for a in $(noinst_PROGRAMS); do \ 86 valgrind --leak-check=full --show-reachable=yes .libs/$$a; \ 87 done 88