mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 11:29:55 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
22 lines
794 B
Makefile
22 lines
794 B
Makefile
plugin_LTLIBRARIES = libgstaudiomixer.la
|
|
|
|
ORC_SOURCE=gstaudiomixerorc
|
|
include $(top_srcdir)/common/orc.mak
|
|
|
|
|
|
libgstaudiomixer_la_SOURCES = gstaudiomixer.c gstaudiointerleave.c
|
|
nodist_libgstaudiomixer_la_SOURCES = $(ORC_NODIST_SOURCES)
|
|
libgstaudiomixer_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
-I$(top_builddir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) $(ORC_CFLAGS)
|
|
libgstaudiomixer_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstaudiomixer_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/gst/base/libgstbadbase-$(GST_API_VERSION).la \
|
|
$(top_builddir)/gst-libs/gst/audio/libgstbadaudio-$(GST_API_VERSION).la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) $(GST_LIBS) $(ORC_LIBS)
|
|
|
|
noinst_HEADERS = gstaudiomixer.h gstaudiointerleave.h
|
|
|