~ubuntu-branches/ubuntu/trusty/linphone/trusty

« back to all changes in this revision

Viewing changes to mediastreamer2/tests/Makefile.am

  • Committer: Package Import Robot
  • Author(s): Luk Claes
  • Date: 2013-09-11 19:08:43 UTC
  • mfrom: (1.1.19) (16.1.12 sid)
  • Revision ID: package-import@ubuntu.com-20130911190843-fkydjxsdvy1fmx24
Tags: 3.6.1-2.1
* Non-maintainer upload.
* Apply Sebastian Ramacher's patch to fix FTBFS (Closes: #720668).

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
if ENABLE_TESTS
2
 
 
3
 
noinst_PROGRAMS=echo ring mtudiscover bench tones
4
 
 
5
 
if BUILD_VIDEO
6
 
noinst_PROGRAMS+=videodisplay test_x11window
7
 
endif
8
 
 
9
 
 
10
 
 
11
 
echo_SOURCES=echo.c
12
 
ring_SOURCES=ring.c
13
 
videodisplay_SOURCES=videodisplay.c
14
 
mtudiscover_SOURCES=mtudiscover.c
15
 
bench_SOURCES=bench.c
16
 
test_x11window_SOURCES=test_x11window.c
17
 
tones_SOURCES=tones.c
18
 
 
19
 
 
20
 
bin_PROGRAMS=mediastream
21
 
 
22
 
if BUILD_MACOSX
23
 
mediastream_SOURCES=mediastream.c mediastream_cocoa.m
24
 
else
25
 
mediastream_SOURCES=mediastream.c
26
 
endif
27
 
 
28
 
#libquickstream.la would be enough, but to workaround a bug of libtool when 
29
 
#cross compiling we need to add all the dependencies.
30
 
LDADD=  $(top_builddir)/src/libmediastreamer.la \
31
 
        $(ORTP_LIBS) \
32
 
        $(ALSA_LIBS) \
33
 
        $(ARTS_LIBS) \
34
 
        $(SPEEX_LIBS) \
35
 
        $(GSM_LIBS) \
36
 
        $(THEORA_LIBS) \
37
 
        $(VP8_LIBS) \
38
 
        $(VIDEO_LIBS)
39
 
 
40
 
 
41
 
 
42
 
INCLUDES=-I$(top_srcdir)/include/
43
 
 
44
 
AM_CFLAGS=$(ORTP_CFLAGS) $(STRICT_OPTIONS) $(VIDEO_CFLAGS)
45
 
AM_LDFLAGS=-export-dynamic
46
 
 
47
 
endif