~ubuntu-branches/ubuntu/saucy/sflphone/saucy

« back to all changes in this revision

Viewing changes to sflphone-common/src/audio/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Francois Marier
  • Date: 2010-12-24 16:33:55 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20101224163355-tkvvikqxbrbav6up
Tags: 0.9.11-1
* New upstream release
* Add new build dependencies on libwebkit-dev and libyaml-dev

* Bump Standards-Version up to 3.9.1
* Bump debhelper compatibility to 8
* Patch another typo in the upstream code (lintian notice)

Show diffs side-by-side

added added

removed removed

Lines of Context:
4
4
 
5
5
SUBDIRS = codecs audiortp sound alsa pulseaudio 
6
6
 
 
7
# if ENABLE_SPEEXDSP
 
8
# SPEEXDSP=-DHAVE_SPEEXDSP_LIB
 
9
# endif
 
10
 
7
11
libaudio_la_SOURCES = \
8
12
                audioloop.cpp \
9
13
                ringbuffer.cpp \
10
14
                mainbuffer.cpp \
 
15
                audiorecord.cpp \
 
16
                audiorecorder.cpp \
11
17
                recordable.cpp \
12
18
                audiolayer.cpp \
13
19
                audiodevice.cpp \
14
20
                samplerateconverter.cpp \
 
21
                delaydetection.cpp \
15
22
                echocancel.cpp \
 
23
                speexechocancel.cpp \
 
24
                noisesuppress.cpp \
16
25
                audioprocessing.cpp \
17
26
                dcblocker.cpp \
18
27
                $(SPEEX_SOURCES_CPP)
21
30
                audioloop.h \
22
31
                common.h \
23
32
                ringbuffer.h \
 
33
                mainbuffer.h \
 
34
                audiorecord.h \
 
35
                audiorecorder.h \
24
36
                audiolayer.h \
25
37
                audiodevice.h \
26
 
                mainbuffer.h \
27
38
                recordable.h \
28
39
                algorithm.h \
 
40
                delaydetection.h \
29
41
                echocancel.h \
 
42
                speexechocancel.h \
 
43
                noisesuppress.h \
30
44
                audioprocessing.h \
31
45
                dcblocker.h \
32
46
                samplerateconverter.h
33
47
 
 
48
libaudio_la_LIBADD = \
 
49
        ./audiortp/libaudiortp.la \
 
50
        ./codecs/libcodecdescriptor.la \
 
51
        ./alsa/libalsalayer.la \
 
52
        ./pulseaudio/libpulselayer.la \
 
53
        ./sound/libsound.la 
 
54
 
 
55
 
34
56