]> git.sesse.net Git - vlc/blob - test/Makefile.am
media_list_player test now works
[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         $(NULL)
16 EXTRA_PROGRAMS = \
17         test_libvlc_media_player \
18         test_libvlc_meta \
19         $(NULL)
20 #check_DATA = samples/test.sample samples/meta.sample
21 EXTRA_DIST = samples/empty.voc
22
23 check_HEADERS = libvlc/test.h
24
25 TESTS = $(check_PROGRAMS)
26
27 DISTCLEANFILES = samples/test.sample samples/meta.sample
28
29 # Samples server
30 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
31
32 samples/test.sample:
33         mkdir -p `dirname $@`
34         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
35
36 samples/meta.sample:
37         mkdir -p `dirname $@`
38         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
39
40 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\"
41
42 test_libvlc_core_SOURCES = libvlc/core.c
43 test_libvlc_core_LDADD = $(top_builddir)/src/libvlc.la
44 test_libvlc_core_CFLAGS = $(CFLAGS_tests)
45
46 test_libvlc_events_SOURCES = libvlc/events.c
47 test_libvlc_events_LDADD = $(top_builddir)/src/libvlc.la
48 test_libvlc_events_CFLAGS = $(CFLAGS_tests)
49
50 test_libvlc_media_list_player_SOURCES = libvlc/media_list_player.c
51 test_libvlc_media_list_player_LDADD = $(top_builddir)/src/libvlc.la
52 test_libvlc_media_list_player_CFLAGS = $(CFLAGS_tests)
53
54 test_libvlc_media_list_SOURCES = libvlc/media_list.c
55 test_libvlc_media_list_LDADD = $(top_builddir)/src/libvlc.la
56 test_libvlc_media_list_CFLAGS = $(CFLAGS_tests)
57
58 test_libvlc_media_player_SOURCES = libvlc/media_player.c
59 test_libvlc_media_player_LDADD = $(top_builddir)/src/libvlc.la
60 test_libvlc_media_player_CFLAGS = $(CFLAGS_tests)
61
62 test_libvlc_meta_SOURCES = libvlc/meta.c
63 test_libvlc_meta_LDADD = $(top_builddir)/src/libvlc.la
64 test_libvlc_meta_CFLAGS = $(CFLAGS_tests)
65
66
67 FORCE:
68         @echo "Generated source cannot be phony. Go away." >&2
69         @exit 1
70
71 .PHONY: FORCE