X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftest%2FMakefile.am;h=b09c1a6163a0e9872a96819028d504d7280fbba2;hb=12ade3e3bc975d5426ba4af155b7372c31093b31;hp=679b2125dd7f3fab1ca79c1fe7a37a5e4cdecd0c;hpb=52c18c4dec68158eedd655e0502820b7d7b6128f;p=vlc diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 679b2125dd..b09c1a6163 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -5,6 +5,7 @@ check_PROGRAMS = \ test_dictionary \ test_i18n_atof \ test_keys \ + test_timer \ test_url \ test_utf8 \ test_xmlent \ @@ -12,14 +13,18 @@ check_PROGRAMS = \ TESTS = $(check_PROGRAMS) -AM_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` +AM_CFLAGS = `$(VLC_CONFIG) --cflags libvlccore` AM_LDFLAGS = -no-install LDADD = ../libvlccore.la -test_block_SOURCES = test_block.c ../misc/block.c +test_block_SOURCES = block_test.c ../misc/block.c +test_block_LDADD = $(LDADD) `$(VLC_CONFIG) -libs libvlccore` +test_block_DEPENDENCIES = + test_dictionary_SOURCES = dictionary.c test_i18n_atof_SOURCES = i18n_atof.c test_keys_SOURCES = keys.c +test_timer_SOURCES = timer.c test_url_SOURCES = url.c test_utf8_SOURCES = utf8.c test_xmlent_SOURCES = xmlent.c