From: Pierre d'Herbemont Date: Fri, 15 Feb 2008 22:21:04 +0000 (+0000) Subject: Makefile.am: Add test/dictionary.c to the list of test program. X-Git-Tag: 0.9.0-test0~2645 X-Git-Url: https://git.sesse.net/?a=commitdiff_plain;h=6b70022f0b51799f66dd02995d0b328a35438ed1;p=vlc Makefile.am: Add test/dictionary.c to the list of test program. --- diff --git a/src/Makefile.am b/src/Makefile.am index b167dba886..60a40a9f9a 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -376,6 +376,7 @@ misc/revision.c: # Unit/regression test ############################################################################### check_PROGRAMS = \ + test_dictionary \ test_i18n_atof \ test_url \ test_utf8 \ @@ -388,6 +389,10 @@ TESTS = $(check_PROGRAMS) $(dist_check_SCRIPTS) CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` +test_dictionary_SOURCES = test/dictionary.c +test_dictionary_LDADD = libvlc.la +test_dictionary_CFLAGS = $(CFLAGS_tests) + test_i18n_atof_SOURCES = test/i18n_atof.c text/charset.c test_i18n_atof_LDADD = libvlc.la test_i18n_atof_CFLAGS = $(CFLAGS_tests)