Commit c6859751 authored by Diego Biurrun's avatar Diego Biurrun Committed by Rémi Denis-Courmont

src: remove one level of makefile recursion

Signed-off-by: default avatarRémi Denis-Courmont <remi@remlab.net>
parent 9c7198ea
......@@ -3,7 +3,6 @@
###############################################################################
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS = . test
NULL =
EXTRA_DIST = \
......@@ -478,6 +477,38 @@ SOURCES_libvlc = \
$(SOURCES_libvlc_common) \
$(NULL)
# Unit/regression tests
#
check_PROGRAMS = \
test_block \
test_dictionary \
test_i18n_atof \
test_md5 \
test_timer \
test_url \
test_utf8 \
test_xmlent \
test_headers
TESTS = $(check_PROGRAMS)
test_block_SOURCES = test/block_test.c
test_block_LDADD = $(LDADD) $(LIBS_libvlccore)
test_block_DEPENDENCIES =
test_dictionary_SOURCES = test/dictionary.c
test_i18n_atof_SOURCES = test/i18n_atof.c
test_md5_SOURCES = test/md5.c
test_timer_SOURCES = test/timer.c
test_url_SOURCES = test/url.c
test_utf8_SOURCES = test/utf8.c
test_xmlent_SOURCES = test/xmlent.c
test_headers_SOURCES = test/headers.c
AM_LDFLAGS = -no-install
LDADD = libvlccore.la \
../compat/libcompat.la
###############################################################################
# GIT revision
###############################################################################
......
# Unit/regression tests
#
check_PROGRAMS = \
test_block \
test_dictionary \
test_i18n_atof \
test_md5 \
test_timer \
test_url \
test_utf8 \
test_xmlent \
test_headers
TESTS = $(check_PROGRAMS)
AM_CFLAGS = $(CFLAGS_libvlccore)
AM_LDFLAGS = -no-install
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_dictionary_SOURCES = dictionary.c
test_i18n_atof_SOURCES = i18n_atof.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
test_headers_SOURCES = headers.c
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment