]> git.sesse.net Git - vlc/blob - src/test/Makefile.am
Use var_Inherit* instead of var_CreateGet*.
[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 libvlccore`
17 AM_LDFLAGS = -no-install
18 LDADD = ../libvlccore.la
19
20 test_block_SOURCES = block_test.c ../misc/block.c
21 test_block_LDADD = $(LDADD) `$(VLC_CONFIG) -libs libvlccore`
22 test_block_DEPENDENCIES =
23
24 test_dictionary_SOURCES = dictionary.c
25 test_i18n_atof_SOURCES = i18n_atof.c
26 test_keys_SOURCES = keys.c
27 test_timer_SOURCES = timer.c
28 test_url_SOURCES = url.c
29 test_utf8_SOURCES = utf8.c
30 test_xmlent_SOURCES = xmlent.c
31 test_headers_SOURCES = headers.c