X-Git-Url: https://git.sesse.net/?a=blobdiff_plain;f=src%2Ftest%2FMakefile.am;h=25e5d5090f8f22cdeb871fb2a99a20c0d1a12021;hb=1bde880702e7a8913205ed0f491e9a223dfaae48;hp=679b2125dd7f3fab1ca79c1fe7a37a5e4cdecd0c;hpb=152b1687c0ec112f3ab1360006d048d6b9cf7258;p=vlc diff --git a/src/test/Makefile.am b/src/test/Makefile.am index 679b2125dd..25e5d5090f 100644 --- a/src/test/Makefile.am +++ b/src/test/Makefile.am @@ -4,7 +4,8 @@ check_PROGRAMS = \ test_block \ test_dictionary \ test_i18n_atof \ - test_keys \ + test_md5 \ + test_timer \ test_url \ test_utf8 \ test_xmlent \ @@ -12,14 +13,19 @@ check_PROGRAMS = \ TESTS = $(check_PROGRAMS) -AM_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` +AM_CFLAGS = $(CFLAGS_libvlccore) AM_LDFLAGS = -no-install -LDADD = ../libvlccore.la +LDADD = ../libvlccore.la \ + ../../compat/libcompat.la + +test_block_SOURCES = block_test.c ../misc/block.c +test_block_LDADD = $(LDADD) $(LIBS_libvlccore) +test_block_DEPENDENCIES = -test_block_SOURCES = test_block.c ../misc/block.c test_dictionary_SOURCES = dictionary.c test_i18n_atof_SOURCES = i18n_atof.c -test_keys_SOURCES = keys.c +test_md5_SOURCES = md5.c +test_timer_SOURCES = timer.c test_url_SOURCES = url.c test_utf8_SOURCES = utf8.c test_xmlent_SOURCES = xmlent.c