summaryrefslogtreecommitdiffstats
path: root/src/Makefile.am
blob: 82311594641bef3d223892dfe0f0710ce575c25c (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
# $Id$
#
# This file is part of gst-pulse.
#
# gst-pulse is free software; you can redistribute it and/or modify
# it under the terms of the GNU Lesser General Public License as published by
# the Free Software Foundation; either version 2 of the License, or
# (at your option) any later version.
#
# gst-pulse is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public License
# along with gst-pulse; if not, write to the Free Software
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
# USA.

modlibexecdir=$(GST_MODDIR)

modlibexec_LTLIBRARIES = libgstpulse.la

libgstpulse_la_SOURCES = \
	plugin.c \
	pulsesink.c pulsesink.h \
	pulsesrc.c pulsesrc.h \
	pulseutil.c pulseutil.h \
	pulsemixer.c pulsemixer.h \
	pulsemixerctrl.c pulsemixerctrl.h \
	pulsemixertrack.c pulsemixertrack.h \
	pulseprobe.c pulseprobe.h 

libgstpulse_la_CFLAGS = $(GST_CFLAGS) $(PULSE_CFLAGS)
libgstpulse_la_LIBADD = $(PULSE_LIBS) $(GST_LIBS) -lgstaudio-0.10
libgstpulse_la_LDFLAGS = -avoid-version -module -export-dynamic

inspect:
	gst-inspect-0.10 pulsesink
	gst-inspect-0.10 pulsesrc
	gst-inspect-0.10 pulsemixer

.PHONY: inspect