mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
23 lines
585 B
Makefile
23 lines
585 B
Makefile
plugin_LTLIBRARIES = libgstoss4audio.la
|
|
|
|
libgstoss4audio_la_SOURCES = \
|
|
oss4-audio.c \
|
|
oss4-property-probe.c \
|
|
oss4-sink.c \
|
|
oss4-source.c
|
|
|
|
libgstoss4audio_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstoss4audio_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_LIBS)
|
|
libgstoss4audio_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstoss4audio_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
oss4-audio.h \
|
|
oss4-property-probe.h \
|
|
oss4-sink.h \
|
|
oss4-soundcard.h \
|
|
oss4-source.h
|
|
|