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