mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
22 lines
572 B
Makefile
22 lines
572 B
Makefile
plugin_LTLIBRARIES = libgstpulse.la
|
|
|
|
libgstpulse_la_SOURCES = \
|
|
plugin.c \
|
|
pulseprobe.c \
|
|
pulsesink.c \
|
|
pulsesrc.c \
|
|
pulseutil.c
|
|
|
|
libgstpulse_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS) $(PULSE_CFLAGS)
|
|
libgstpulse_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) -lgstaudio-$(GST_API_VERSION) \
|
|
-lgstpbutils-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(PULSE_LIBS)
|
|
libgstpulse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstpulse_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
pulseprobe.h \
|
|
pulsesink.h \
|
|
pulsesrc.h \
|
|
pulseutil.h
|
|
|