]> git.sesse.net Git - vlc/blob - src/test/Makefile.am
test_block: rename to bloc_test.c because all test_ files are ignored by git.
[vlc] / src / test / Makefile.am
1 # Unit/regression tests
2 #
3 check_PROGRAMS = \
4         test_block \
5         test_dictionary \
6         test_i18n_atof \
7         test_keys \
8         test_timer \
9         test_url \
10         test_utf8 \
11         test_xmlent \
12         test_headers
13
14 TESTS = $(check_PROGRAMS)
15
16 AM_CFLAGS = `$(VLC_CONFIG) --cflags libvlc`
17 AM_LDFLAGS = -no-install
18 LDADD = ../libvlccore.la
19
20 test_block_SOURCES = block_test.c ../misc/block.c
21 test_dictionary_SOURCES = dictionary.c
22 test_i18n_atof_SOURCES = i18n_atof.c
23 test_keys_SOURCES = keys.c
24 test_timer_SOURCES = timer.c
25 test_url_SOURCES = url.c
26 test_utf8_SOURCES = utf8.c
27 test_xmlent_SOURCES = xmlent.c
28 test_headers_SOURCES = headers.c