gstreamer/sys/tinyalsa/Makefile.am
Arun Raghavan c8bd74fa9a tinyalsa: Add a new sink plugin using tinyalsa
This uses the tinyalsa library to playback to an ALSA device. Future
work can include using the mmap interface.

https://bugzilla.gnome.org/show_bug.cgi?id=761230
2016-02-02 08:30:59 +05:30

19 lines
590 B
Makefile

plugin_LTLIBRARIES = libgsttinyalsa.la
libgsttinyalsa_la_SOURCES = tinyalsasink.c \
tinyalsa.c
libgsttinyalsa_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS) \
-Wno-deprecated-declarations
libgsttinyalsa_la_LIBADD = \
-ltinyalsa \
-lgstaudio-@GST_API_VERSION@ \
$(GST_PLUGINS_BASE_LIBS) \
$(GST_BASE_LIBS) \
$(GST_LIBS)
libgsttinyalsa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
libgsttinyalsa_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
noinst_HEADERS = tinyalsasink.h