]> git.sesse.net Git - vlc/blob - test/Makefile.am
Fix warning
[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_list \
19         test_libvlc_media_player \
20         test_src_misc_variables \
21         $(NULL)
22
23 # Disabled test:
24 # meta: No suitable test file
25 EXTRA_PROGRAMS = \
26         test_libvlc_meta \
27         test_libvlc_media_list_player \
28         $(NULL)
29
30 #check_DATA = samples/test.sample samples/meta.sample
31 EXTRA_DIST = samples/empty.voc
32
33 check_HEADERS = libvlc/test.h libvlc/libvlc_additions.h
34
35 TESTS = $(check_PROGRAMS)
36
37 DISTCLEANFILES = samples/test.sample samples/meta.sample
38
39 # Samples server
40 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
41
42 samples/test.sample:
43         mkdir -p `dirname $@`
44         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
45
46 samples/meta.sample:
47         mkdir -p `dirname $@`
48         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
49
50 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\"
51 LDFLAGS_tests = -no-install -static
52
53 test_libvlc_core_SOURCES = libvlc/core.c
54 test_libvlc_core_LDADD = $(top_builddir)/src/libvlc.la
55 test_libvlc_core_CFLAGS = $(CFLAGS_tests)
56 test_libvlc_core_LDFLAGS = $(LDFLAGS_tests)
57
58 test_libvlc_events_SOURCES = libvlc/events.c
59 test_libvlc_events_LDADD = $(top_builddir)/src/libvlc.la
60 test_libvlc_events_CFLAGS = $(CFLAGS_tests)
61 test_libvlc_events_LDFLAGS = $(LDFLAGS_tests)
62
63 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
64 test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc.la
65 test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
66 test_libvlc_media_list_player_LDFLAGS = $(LDFLAGS_tests)
67
68 test_libvlc_media_list_SOURCES = libvlc/media_list.c
69 test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc.la
70 test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
71 test_libvlc_media_list_LDFLAGS = $(LDFLAGS_tests)
72
73 test_libvlc_media_player_SOURCES = libvlc/media_player.c
74 test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc.la
75 test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
76 test_libvlc_media_player_LDFLAGS = $(LDFLAGS_tests)
77
78 test_libvlc_meta_SOURCES = libvlc/meta.c
79 test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la
80 test_libvlc_meta_CFLAGS = $(CFLAGS_tests)
81 test_libvlc_meta_LDFLAGS = $(LDFLAGS_tests)
82
83 test_src_misc_variables_SOURCES = src/misc/variables.c
84 test_src_misc_variables_LDADD = $(top_builddir)/src/libvlc.la
85 test_src_misc_variables_CFLAGS = $(CFLAGS_tests)
86 test_src_misc_variables_LDFLAGS = $(LDFLAGS_tests)
87
88 checkall:
89         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
90
91 FORCE:
92         @echo "Generated source cannot be phony. Go away." >&2
93         @exit 1
94
95 .PHONY: FORCE