Fix mozilla autoconf check : AC_PATH_PROGS() was used incorrectly, and the check...
[vlc/solaris.git] / test / Makefile.am
blobdbcaba047455c38b6a89025795e32e3d96e0336b
1 ###############################################################################
2 # Automake targets and declarations
3 ###############################################################################
5 AUTOMAKE_OPTIONS = subdir-objects
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)
18 # Disabled test:
19 # meta: No suitable test file
20 EXTRA_PROGRAMS = \
21         test_libvlc_meta \
22         test_dummy \
23         $(NULL)
25 #check_DATA = samples/test.sample samples/meta.sample
26 EXTRA_DIST = samples/empty.voc
28 check_HEADERS = libvlc/test.h
30 TESTS = $(check_PROGRAMS)
32 DISTCLEANFILES = samples/test.sample samples/meta.sample
34 # Samples server
35 SAMPLES_SERVER=http://streams.videolan.org/streams-videolan/reference
37 samples/test.sample:
38         mkdir -p `dirname $@`
39         curl $(SAMPLES_SERVER)/avi/Hero-Div3.avi > $@
41 samples/meta.sample:
42         mkdir -p `dirname $@`
43         curl $(SAMPLES_SERVER)/metadata/id3tag/Wesh-Bonneville.mp3 > $@
45 CFLAGS_tests = `$(VLC_CONFIG) --cflags libvlc` -DSRCDIR=\"$(srcdir)\"
46 LDFLAGS_tests = -no-install -static
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)
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)
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)
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)
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)
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)
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)
83 checkall:
84         $(MAKE) check_PROGRAMS="$(check_PROGRAMS) $(EXTRA_PROGRAMS)" check
86 FORCE:
87         @echo "Generated source cannot be phony. Go away." >&2
88         @exit 1
90 .PHONY: FORCE