]> git.sesse.net Git - vlc/blob - test/Makefile.am
test: Fix make distcheck by including libvlc/test.h in check_HEADERS.
[vlc] / test / Makefile.am
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
4
5 AUTOMAKE_OPTIONS = subdir-objects
6
7 ###############################################################################
8 # Unit/regression test
9 ###############################################################################
10 check_PROGRAMS = \
11     test_libvlc_core \
12         test_libvlc_events \
13         test_libvlc_media_list \
14         test_libvlc_media_list_player \
15         test_libvlc_media_player \
16         test_libvlc_meta \
17         $(NULL)
18 check_DATA = samples/test.sample samples/meta.sample
19
20 check_HEADERS = libvlc/test.h
21
22 TESTS = $(check_PROGRAMS)
23
24 DISTCLEANFILES = samples/test.sample samples/meta.sample
25
26 # Samples server
27 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
28
29 samples/test.sample:
30         mkdir -p `dirname $@`
31         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
32
33 samples/meta.sample:
34         mkdir -p `dirname $@`
35         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
36
37 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc`
38
39 test_libvlc_core_SOURCES = libvlc/core.c
40 test_libvlc_core_LDADD = $(top_builddir)/src/libvlc-control.la
41 test_libvlc_core_CFLAGS = $(CFLAGS_tests)
42
43 test_libvlc_events_SOURCES = libvlc/events.c
44 test_libvlc_events_LDADD = $(top_builddir)/src/libvlc-control.la
45 test_libvlc_events_CFLAGS = $(CFLAGS_tests)
46
47 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
48 test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc-control.la
49 test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
50
51 test_libvlc_media_list_SOURCES = libvlc/media_list.c
52 test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc-control.la
53 test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
54
55 test_libvlc_media_player_SOURCES = libvlc/media_player.c
56 test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc-control.la
57 test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
58
59 test_libvlc_meta_SOURCES = libvlc/meta.c
60 test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc-control.la
61 test_libvlc_meta_CFLAGS = $(CFLAGS_tests)
62
63
64 FORCE:
65         @echo "Generated source cannot be phony. Go away." >&2
66         @exit 1
67
68 .PHONY: FORCE