]> git.sesse.net Git - vlc/blob - src/test/Makefile.am
52f55df2baa10253c7c2445c579976cb9d97b517
[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_url \
8         test_utf8 \
9         test_headers
10
11 TESTS = $(check_PROGRAMS)
12
13 AM_CFLAGS = `$(VLC_CONFIG) --cflags libvlc`
14 AM_LDFLAGS = -no-install
15 LDADD = ../libvlccore.la
16
17 test_block_SOURCES = test_block.c ../misc/block.c
18 test_dictionary_SOURCES = dictionary.c
19 test_i18n_atof_SOURCES = i18n_atof.c
20 test_url_SOURCES = url.c
21 test_utf8_SOURCES = utf8.c
22 test_headers_SOURCES = headers.c
23