1plugin_LTLIBRARIES = libgstpulseaudio.la
2
3libgstpulseaudio_la_SOURCES = \
4	plugin.c \
5	pulsesink.c \
6	pulsesrc.c \
7	pulsedeviceprovider.c \
8	pulseutil.c
9
10libgstpulseaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(PULSE_CFLAGS)
11libgstpulseaudio_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
12	-lgstpbutils-$(GST_API_VERSION) \
13	$(GST_BASE_LIBS) $(GST_LIBS) $(PULSE_LIBS)
14libgstpulseaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
15
16noinst_HEADERS = \
17	pulsesink.h \
18	pulsesrc.h \
19	pulsedeviceprovider.h \
20	pulseutil.h
21
22