gstreamer/sys/oss4/Makefile.am
Nicolas Dufresne b68d936ae0 Remove plugin specific static build option
Static and dynamic plugins now have the same interface. The standard
--enable-static/--enable-shared toggle are sufficient.
2017-05-16 14:41:19 -04:00

22 lines
499 B
Makefile

plugin_LTLIBRARIES = libgstoss4.la
libgstoss4_la_SOURCES = \
oss4-audio.c \
oss4-property-probe.c \
oss4-sink.c \
oss4-source.c
libgstoss4_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_CFLAGS)
libgstoss4_la_LIBADD = \
$(GST_PLUGINS_BASE_LIBS) \
-lgstaudio-$(GST_API_VERSION) \
$(GST_LIBS)
libgstoss4_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
noinst_HEADERS = \
oss4-audio.h \
oss4-property-probe.h \
oss4-sink.h \
oss4-soundcard.h \
oss4-source.h