~ubuntu-branches/ubuntu/maverick/vlc/maverick

« back to all changes in this revision

Viewing changes to test/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2008-09-17 21:56:14 UTC
  • mfrom: (1.1.17 upstream)
  • Revision ID: james.westby@ubuntu.com-20080917215614-tj0vx8xzd57e52t8
Tags: 0.9.2-1ubuntu1
* New Upstream Release, exception granted by
    - dktrkranz, norsetto, Hobbsee (via irc). LP: #270404

Changes done in ubuntu:

* add libxul-dev to build-depends
* make sure that vlc is build against libxul in configure. This doesn't
  change anything in the package, but makes it more robust if building
  in an 'unclean' chroot or when modifying the package.
* debian/control: make Vcs-* fields point to the motumedia branch
* add libx264-dev and libass-dev to build-depends
  LP: #210354, #199870
* actually enable libass support by passing --enable-libass to configure
* enable libdca: add libdca-dev to build depends and --enable-libdca
* install the x264 plugin.

Changes already in the pkg-multimedia branch in debian:

* don't install usr/share/vlc/mozilla in debian/mozilla-plugin-vlc.install  
* new upstream .desktop file now registers flash video mimetype LP: #261567
* add Xb-Npp-Applications to mozilla-plugin-vlc
* remove duplicate entries in debian/vlc-nox.install

Show diffs side-by-side

added added

removed removed

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