contrib: libxml2: don't use LZMA if the header is not found
[vlc.git] / test / Makefile.am
blobe47430e02ebd4531c4de2ce6cbe42bde4ac556b2
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
5 AUTOMAKE_OPTIONS = subdir-objects
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)
12 ###############################################################################
13 # Unit/regression test
14 ###############################################################################
15 check_PROGRAMS = \
16         test_libvlc_core \
17         test_libvlc_equalizer \
18         test_libvlc_media \
19         test_libvlc_media_list \
20         test_libvlc_media_player \
21         test_libvlc_media_discoverer \
22         test_libvlc_renderer_discoverer \
23         test_libvlc_slaves \
24         test_src_config_chain \
25         test_src_misc_variables \
26         test_src_crypto_update \
27         test_src_input_stream \
28         test_src_input_stream_fifo \
29         test_src_interface_dialog \
30         test_src_misc_bits \
31         test_src_misc_epg \
32         test_src_misc_keystore \
33         test_modules_packetizer_hxxx \
34         test_modules_keystore \
35         test_modules_tls \
36         $(NULL)
38 check_SCRIPTS = \
39         modules/lua/telnet.sh \
40         check_POTFILES.sh
42 # Disabled test:
43 # meta: No suitable test file
44 EXTRA_PROGRAMS = \
45         test_libvlc_meta \
46         test_libvlc_media_list_player \
47         test_src_input_stream_net \
48         $(NULL)
50 #check_DATA = samples/test.sample samples/meta.sample
51 EXTRA_DIST = samples/empty.voc samples/image.jpg samples/subitems samples/slaves $(check_SCRIPTS)
53 check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h
55 TESTS = $(check_PROGRAMS) check_POTFILES.sh
57 DISTCLEANFILES = samples/test.sample samples/meta.sample
59 # Samples server
60 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
62 samples/test.sample:
63         mkdir -p `dirname $@`
64         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
66 samples/meta.sample:
67         mkdir -p `dirname $@`
68         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
70 AM_CFLAGS = -DSRCDIR=\"$(srcdir)\"
71 AM_LDFLAGS = -no-install
72 LIBVLCCORE = -L../src/ -lvlccore
73 LIBVLC = -L../lib -lvlc
75 test_libvlc_core_SOURCES = libvlc/core.c
76 test_libvlc_core_LDADD = $(LIBVLC)
77 test_libvlc_equalizer_SOURCES = libvlc/equalizer.c
78 test_libvlc_equalizer_LDADD = $(LIBVLC)
79 test_libvlc_media_SOURCES = libvlc/media.c
80 test_libvlc_media_LDADD = $(LIBVLCCORE) $(LIBVLC)
81 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
82 test_libvlc_media_list_player_LDADD = $(LIBVLC)
83 test_libvlc_media_list_SOURCES = libvlc/media_list.c
84 test_libvlc_media_list_LDADD = $(LIBVLC)
85 test_libvlc_media_player_SOURCES = libvlc/media_player.c
86 test_libvlc_media_player_LDADD = $(LIBVLC)
87 test_libvlc_media_discoverer_SOURCES = libvlc/media_discoverer.c
88 test_libvlc_media_discoverer_LDADD = $(LIBVLC)
89 test_libvlc_renderer_discoverer_SOURCES = libvlc/renderer_discoverer.c
90 test_libvlc_renderer_discoverer_LDADD = $(LIBVLC)
91 test_libvlc_slaves_SOURCES = libvlc/slaves.c
92 test_libvlc_slaves_LDADD = $(LIBVLCCORE) $(LIBVLC)
93 test_libvlc_meta_SOURCES = libvlc/meta.c
94 test_libvlc_meta_LDADD = $(LIBVLC)
95 test_src_misc_variables_SOURCES = src/misc/variables.c
96 test_src_misc_variables_LDADD = $(LIBVLCCORE) $(LIBVLC)
97 test_src_config_chain_SOURCES = src/config/chain.c
98 test_src_config_chain_LDADD = $(LIBVLCCORE)
99 test_src_crypto_update_SOURCES = src/crypto/update.c
100 test_src_crypto_update_LDADD = $(LIBVLCCORE) $(GCRYPT_LIBS)
101 test_src_input_stream_SOURCES = src/input/stream.c
102 test_src_input_stream_LDADD = $(LIBVLCCORE) $(LIBVLC)
103 test_src_input_stream_net_SOURCES = src/input/stream.c
104 test_src_input_stream_net_CFLAGS = $(AM_CFLAGS) -DTEST_NET
105 test_src_input_stream_net_LDADD = $(LIBVLCCORE) $(LIBVLC)
106 test_src_input_stream_fifo_SOURCES = src/input/stream_fifo.c
107 test_src_input_stream_fifo_LDADD = $(LIBVLCCORE) $(LIBVLC)
108 test_src_misc_bits_SOURCES = src/misc/bits.c
109 test_src_misc_bits_LDADD = $(LIBVLC)
110 test_src_misc_epg_SOURCES = src/misc/epg.c
111 test_src_misc_epg_LDADD = $(LIBVLCCORE) $(LIBVLC)
112 test_src_misc_keystore_SOURCES = src/misc/keystore.c
113 test_src_misc_keystore_LDADD = $(LIBVLCCORE) $(LIBVLC)
114 test_src_interface_dialog_SOURCES = src/interface/dialog.c
115 test_src_interface_dialog_LDADD = $(LIBVLCCORE) $(LIBVLC)
116 test_modules_packetizer_hxxx_SOURCES = modules/packetizer/hxxx.c
117 test_modules_packetizer_hxxx_LDADD = $(LIBVLC)
118 test_modules_packetizer_hxxx_LDFLAGS = -no-install -static # WTF
119 test_modules_keystore_SOURCES = modules/keystore/test.c
120 test_modules_keystore_LDADD = $(LIBVLCCORE) $(LIBVLC)
121 test_modules_tls_SOURCES = modules/misc/tls.c
122 test_modules_tls_LDADD = $(LIBVLCCORE) $(LIBVLC)
124 checkall:
125         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
127 FORCE:
128         @echo "Generated source cannot be phony. Go away." >&2
129         @exit 1
131 .PHONY: FORCE