mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
9b94e38300
Original commit message from CVS: add Sun Audio plugin. Verified that nothing breaks and that make check works. Don't think the docs gets properly built yet, but I don't understand exactly how to enable that.
21 lines
730 B
Makefile
21 lines
730 B
Makefile
plugin_LTLIBRARIES = libgstsunaudio.la
|
|
|
|
libgstsunaudio_la_SOURCES = gstsunaudio.c \
|
|
gstsunaudiosink.c \
|
|
gstsunaudiomixerctrl.c \
|
|
gstsunaudiomixer.c \
|
|
gstsunaudiomixertrack.c
|
|
|
|
libgstsunaudio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstsunaudio_la_LIBADD = \
|
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
-lgstaudio-@GST_MAJORMINOR@ \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstsunaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstsunaudiosink.h \
|
|
gstsunaudiomixer.h \
|
|
gstsunaudiomixerctrl.h \
|
|
gstsunaudiomixertrack.h
|
|
|