~ubuntu-branches/ubuntu/raring/freerdp/raring-proposed

« back to all changes in this revision

Viewing changes to channels/rdpsnd/Makefile.am

  • Committer: Bazaar Package Importer
  • Author(s): Otavio Salvador
  • Date: 2010-06-23 21:39:09 UTC
  • Revision ID: james.westby@ubuntu.com-20100623213909-bb9pvvv03913tdv6
Tags: upstream-0.7.1
ImportĀ upstreamĀ versionĀ 0.7.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Process this file with automake to produce Makefile.in
 
2
 
 
3
if WITH_RDPSND
 
4
 
 
5
# rdpsnd
 
6
rdpsnddir = $(PLUGIN_PATH)
 
7
 
 
8
rdpsnd_LTLIBRARIES = rdpsnd.la
 
9
 
 
10
rdpsnd_la_SOURCES = \
 
11
        rdpsnd_dsp.h rdpsnd.h \
 
12
        rdpsnd_main.c
 
13
 
 
14
rdpsnd_la_CFLAGS = -I../../include -I../common \
 
15
        -DPLUGIN_PATH=\"$(PLUGIN_PATH)\"
 
16
 
 
17
rdpsnd_la_LDFLAGS = -avoid-version -module
 
18
 
 
19
rdpsnd_la_LIBADD = ../common/libcommon.la
 
20
 
 
21
if RDPSND_ALSA
 
22
rdpsnd_la_SOURCES += rdpsnd_alsa.c
 
23
rdpsnd_la_CFLAGS += @ALSA_CFLAGS@
 
24
rdpsnd_la_LIBADD += @ALSA_LIBS@
 
25
endif
 
26
 
 
27
#       rdpsnd_pulse.c
 
28
 
 
29
# extra
 
30
EXTRA_DIST =
 
31
 
 
32
DISTCLEANFILES = 
 
33
 
 
34
endif
 
35