mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-22 08:17:01 +00:00
b1be00e651
Original commit message from CVS: - plugins are built without versioning info /Uraeus claims: plugins/; if not plugins why this is built as lib*.so.0.0.0?
21 lines
510 B
Makefile
21 lines
510 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstcontrol.la
|
|
|
|
libgstcontrolincludedir = $(includedir)/gst/control
|
|
libgstcontrolinclude_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
|
libgstcontrol_la_LIBADD = $(GST_LIBS)
|
|
libgstcontrol_la_LDFLAGS = @GST_PLUGIN_LDFLAGS@
|