~ubuntu-branches/ubuntu/quantal/linphone/quantal

« back to all changes in this revision

Viewing changes to media_api/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Mark Purcell
  • Date: 2009-03-18 07:29:23 UTC
  • mfrom: (4.1.1 sid)
  • Revision ID: james.westby@ubuntu.com-20090318072923-tcioxk5hqw2h3h0p
Tags: 3.0.0-3
Fix "spurious gnome-applets" Removed Build-Depends: (Closes: #520133)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
## Process this file with automake to produce Makefile.in
2
 
if BUILD_MEDIA_API
3
 
 
4
 
#the media_api library is the only one we have to build here
5
 
lib_LTLIBRARIES=libmedia_api.la
6
 
 
7
 
#definition of the sources of libmedia_api
8
 
libmedia_api_la_SOURCES=        basiccall.c callmember.c mediaflow.c
9
 
 
10
 
# libmedia_api  needs libmediastreamer
11
 
libmedia_api_la_LIBADD=$(top_srcdir)/mediastreamer/libmediastreamer.la
12
 
 
13
 
#the media_api test program
14
 
bin_PROGRAMS=apitest
15
 
 
16
 
apitest_SOURCES= apitest.c
17
 
# the test program links to libmedia_api
18
 
apitest_LDADD=libmedia_api.la
19
 
 
20
 
endif
21
 
 
22
 
DEFS=@DEFS@ @SOUNDDEFS@ -DDEBUG -DG_LOG_DOMAIN=\"MediaApi\" 
23
 
 
24
 
INCLUDES=-I$(top_srcdir)/mediastreamer \
25
 
                -I$(top_srcdir)/speex \
26
 
                -I$(top_srcdir)/gsmlib \
27
 
                $(ORTP_CFLAGS) \
28
 
                -I$(top_srcdir)/lpc10-1.5 \
29
 
                -I$(top_srcdir)/ffmpeg 
30
 
 
31