mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 18:20:44 +00:00
b976e88c29
Original commit message from CVS: 2005-08-23 Andy Wingo <wingo@pobox.com> * sys/oss/gstossmixerelement.h: * sys/oss/gstossmixerelement.c: Added mixer element like alsamixer. * sys/oss/Makefile.am: * sys/oss/gstossaudio.c: Register the ossmixer element.
32 lines
860 B
Makefile
32 lines
860 B
Makefile
plugin_LTLIBRARIES = libgstossaudio.la
|
|
|
|
libgstossaudio_la_SOURCES = gstossaudio.c \
|
|
gstosshelper.c \
|
|
gstossmixer.c \
|
|
gstossmixerelement.c \
|
|
gstossmixertrack.c \
|
|
gstosssink.c \
|
|
gstosssrc.c
|
|
|
|
# gstossdmabuffer.c
|
|
|
|
libgstossaudio_la_CFLAGS = $(GST_CFLAGS) $(GST_PLUGINS_BASE_CFLAGS)
|
|
libgstossaudio_la_LIBADD = $(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstinterfaces-@GST_MAJORMINOR@ \
|
|
-lgstaudio-@GST_MAJORMINOR@
|
|
libgstossaudio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstosssink.h \
|
|
gstosssrc.h \
|
|
gstosshelper.h \
|
|
gstossdmabuffer.h \
|
|
gstossmixer.h \
|
|
gstossmixerelement.h \
|
|
gstossmixertrack.h
|
|
|
|
# noinst_PROGRAMS = #oss_probe
|
|
|
|
# oss_probe_SOURCES = oss_probe.c
|
|
# oss_probe_CFLAGS = $(GST_CFLAGS)
|
|
# oss_probe_LDADD = $(GLIB_LIBS)
|
|
|