mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-05 09:00:54 +00:00
4261692187
Static and dynamic plugins now have the same interface. The standard --enable-static/--enable-shared toggle are sufficient.
32 lines
683 B
Makefile
32 lines
683 B
Makefile
plugin_LTLIBRARIES = libgstladspa.la
|
|
|
|
libgstladspa_la_SOURCES = \
|
|
gstladspautils.c \
|
|
gstladspafilter.c \
|
|
gstladspasource.c \
|
|
gstladspasink.c \
|
|
gstladspa.c
|
|
libgstladspa_la_CFLAGS = \
|
|
-I$(top_srcdir)/gst-libs \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(LRDF_CFLAGS) \
|
|
$(GST_PLUGINS_BAD_CFLAGS)
|
|
libgstladspa_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(LIBM) \
|
|
$(LRDF_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(GMODULE_NO_EXPORT_LIBS)
|
|
libgstladspa_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstladspautils.h \
|
|
gstladspafilter.h \
|
|
gstladspasource.h \
|
|
gstladspasink.h \
|
|
gstladspa.h
|