]> git.sesse.net Git - vlc/blob - test/Makefile.am
distribute the telnet auto test script.
[vlc] / test / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 extra_check_verbose = $(extra_check_verbose_$(V))
8 extra_check_verbose_ = $(extra_check_flags__$(AM_DEFAULT_VERBOSITY))
9 extra_check_verbose_0 = @echo TEST $@
10 extra_check_verbose__0 = $(extra_check_verbose_0)
11
12 ###############################################################################
13 # Unit/regression test
14 ###############################################################################
15 check_PROGRAMS = \
16         test_libvlc_core \
17         test_libvlc_events \
18         test_libvlc_media \
19         test_libvlc_media_list \
20         test_libvlc_media_player \
21         test_src_config_chain \
22         test_src_misc_variables \
23         $(NULL)
24
25 check_SCRIPTS = \
26     modules/misc/lua/telnet.sh
27
28 # Disabled test:
29 # meta: No suitable test file
30 EXTRA_PROGRAMS = \
31         test_libvlc_meta \
32         test_libvlc_media_list_player \
33         $(NULL)
34
35 #check_DATA = samples/test.sample samples/meta.sample
36 EXTRA_DIST = samples/empty.voc samples/image.jpg $(check_SCRIPTS)
37
38 check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h
39
40 TESTS = $(check_PROGRAMS)
41
42 DISTCLEANFILES = samples/test.sample samples/meta.sample
43
44 # Samples server
45 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
46
47 samples/test.sample:
48         mkdir -p `dirname $@`
49         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
50
51 samples/meta.sample:
52         mkdir -p `dirname $@`
53         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
54
55 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\"
56 LDFLAGS_tests = -no-install -static
57
58 test_libvlc_core_SOURCES = libvlc/core.c
59 test_libvlc_core_LDADD = $(top_builddir)/src/libvlc.la
60 test_libvlc_core_CFLAGS = $(CFLAGS_tests)
61 test_libvlc_core_LDFLAGS = $(LDFLAGS_tests)
62
63 test_libvlc_events_SOURCES = libvlc/events.c
64 test_libvlc_events_LDADD = $(top_builddir)/src/libvlc.la
65 test_libvlc_events_CFLAGS = $(CFLAGS_tests)
66 test_libvlc_events_LDFLAGS = $(LDFLAGS_tests)
67
68 test_libvlc_media_SOURCES = libvlc/media.c
69 test_libvlc_media_LDADD = $(top_builddir)/src/libvlc.la
70 test_libvlc_media_CFLAGS = $(CFLAGS_tests)
71 test_libvlc_media_LDFLAGS = $(LDFLAGS_tests)
72
73 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
74 test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc.la
75 test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
76 test_libvlc_media_list_player_LDFLAGS = $(LDFLAGS_tests)
77
78 test_libvlc_media_list_SOURCES = libvlc/media_list.c
79 test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc.la
80 test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
81 test_libvlc_media_list_LDFLAGS = $(LDFLAGS_tests)
82
83 test_libvlc_media_player_SOURCES = libvlc/media_player.c
84 test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc.la
85 test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
86 test_libvlc_media_player_LDFLAGS = $(LDFLAGS_tests)
87
88 test_libvlc_meta_SOURCES = libvlc/meta.c
89 test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la
90 test_libvlc_meta_CFLAGS = $(CFLAGS_tests)
91 test_libvlc_meta_LDFLAGS = $(LDFLAGS_tests)
92
93 test_src_misc_variables_SOURCES = src/misc/variables.c
94 test_src_misc_variables_LDADD = $(top_builddir)/src/libvlc.la
95 test_src_misc_variables_CFLAGS = $(CFLAGS_tests)
96 test_src_misc_variables_LDFLAGS = $(LDFLAGS_tests)
97
98 test_src_config_chain_SOURCES = src/config/chain.c
99 test_src_config_chain_LDADD = $(top_builddir)/src/libvlc.la
100 test_src_config_chain_CFLAGS = $(CFLAGS_tests)
101 test_src_config_chain_LDFLAGS = $(LDFLAGS_tests)
102
103 checkall:
104         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
105
106 FORCE:
107         @echo "Generated source cannot be phony. Go away." >&2
108         @exit 1
109
110 .PHONY: FORCE