d3d11va: use the picture from the decoder pool directly
[vlc.git] / test / Makefile.am
blob9f33aa6c4c72cb4a786b1595ad9a1d4ef125f8c3
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_input_stream \
27         test_src_input_stream_fifo \
28         test_src_interface_dialog \
29         test_src_misc_bits \
30         test_src_misc_epg \
31         test_src_misc_keystore \
32         test_modules_packetizer_hxxx \
33         test_modules_keystore \
34         test_modules_tls
35 if UPDATE_CHECK
36 check_PROGRAMS += test_src_crypto_update
37 endif
39 check_SCRIPTS = \
40         modules/lua/telnet.sh \
41         check_POTFILES.sh
43 # Disabled test:
44 # meta: No suitable test file
45 EXTRA_PROGRAMS = \
46         test_libvlc_meta \
47         test_libvlc_media_list_player \
48         test_src_input_stream_net \
49         $(NULL)
51 #check_DATA = samples/test.sample samples/meta.sample
52 EXTRA_DIST = samples/empty.voc samples/image.jpg samples/subitems samples/slaves $(check_SCRIPTS)
54 check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h
56 TESTS = $(check_PROGRAMS) check_POTFILES.sh
58 DISTCLEANFILES = samples/test.sample samples/meta.sample
60 # Samples server
61 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
63 samples/test.sample:
64         mkdir -p `dirname $@`
65         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
67 samples/meta.sample:
68         mkdir -p `dirname $@`
69         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
71 AM_CFLAGS = -DSRCDIR=\"$(srcdir)\"
72 AM_LDFLAGS = -no-install
73 LIBVLCCORE = -L../src/ -lvlccore
74 LIBVLC = -L../lib -lvlc
76 test_libvlc_core_SOURCES = libvlc/core.c
77 test_libvlc_core_LDADD = $(LIBVLC)
78 test_libvlc_equalizer_SOURCES = libvlc/equalizer.c
79 test_libvlc_equalizer_LDADD = $(LIBVLC)
80 test_libvlc_media_SOURCES = libvlc/media.c
81 test_libvlc_media_LDADD = $(LIBVLCCORE) $(LIBVLC)
82 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
83 test_libvlc_media_list_player_LDADD = $(LIBVLC)
84 test_libvlc_media_list_SOURCES = libvlc/media_list.c
85 test_libvlc_media_list_LDADD = $(LIBVLC)
86 test_libvlc_media_player_SOURCES = libvlc/media_player.c
87 test_libvlc_media_player_LDADD = $(LIBVLC)
88 test_libvlc_media_discoverer_SOURCES = libvlc/media_discoverer.c
89 test_libvlc_media_discoverer_LDADD = $(LIBVLC)
90 test_libvlc_renderer_discoverer_SOURCES = libvlc/renderer_discoverer.c
91 test_libvlc_renderer_discoverer_LDADD = $(LIBVLC)
92 test_libvlc_slaves_SOURCES = libvlc/slaves.c
93 test_libvlc_slaves_LDADD = $(LIBVLCCORE) $(LIBVLC)
94 test_libvlc_meta_SOURCES = libvlc/meta.c
95 test_libvlc_meta_LDADD = $(LIBVLC)
96 test_src_misc_variables_SOURCES = src/misc/variables.c
97 test_src_misc_variables_LDADD = $(LIBVLCCORE) $(LIBVLC)
98 test_src_config_chain_SOURCES = src/config/chain.c
99 test_src_config_chain_LDADD = $(LIBVLCCORE)
100 test_src_crypto_update_SOURCES = src/crypto/update.c
101 test_src_crypto_update_LDADD = $(LIBVLCCORE) $(GCRYPT_LIBS)
102 test_src_input_stream_SOURCES = src/input/stream.c
103 test_src_input_stream_LDADD = $(LIBVLCCORE) $(LIBVLC)
104 test_src_input_stream_net_SOURCES = src/input/stream.c
105 test_src_input_stream_net_CFLAGS = $(AM_CFLAGS) -DTEST_NET
106 test_src_input_stream_net_LDADD = $(LIBVLCCORE) $(LIBVLC)
107 test_src_input_stream_fifo_SOURCES = src/input/stream_fifo.c
108 test_src_input_stream_fifo_LDADD = $(LIBVLCCORE) $(LIBVLC)
109 test_src_misc_bits_SOURCES = src/misc/bits.c
110 test_src_misc_bits_LDADD = $(LIBVLC)
111 test_src_misc_epg_SOURCES = src/misc/epg.c
112 test_src_misc_epg_LDADD = $(LIBVLCCORE) $(LIBVLC)
113 test_src_misc_keystore_SOURCES = src/misc/keystore.c
114 test_src_misc_keystore_LDADD = $(LIBVLCCORE) $(LIBVLC)
115 test_src_interface_dialog_SOURCES = src/interface/dialog.c
116 test_src_interface_dialog_LDADD = $(LIBVLCCORE) $(LIBVLC)
117 test_modules_packetizer_hxxx_SOURCES = modules/packetizer/hxxx.c
118 test_modules_packetizer_hxxx_LDADD = $(LIBVLC)
119 test_modules_packetizer_hxxx_LDFLAGS = -no-install -static # WTF
120 test_modules_keystore_SOURCES = modules/keystore/test.c
121 test_modules_keystore_LDADD = $(LIBVLCCORE) $(LIBVLC)
122 test_modules_tls_SOURCES = modules/misc/tls.c
123 test_modules_tls_LDADD = $(LIBVLCCORE) $(LIBVLC)
125 checkall:
126         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
128 FORCE:
129         @echo "Generated source cannot be phony. Go away." >&2
130         @exit 1
132 .PHONY: FORCE