mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-01 22:21:13 +00:00
e4056aa180
Original commit message from CVS: gstcontrol is now just a normal lib, not a plugin
24 lines
573 B
Makefile
24 lines
573 B
Makefile
librarydir = $(libdir)
|
|
|
|
library_LTLIBRARIES = libgstcontrol.la
|
|
|
|
libgstcontrolincludedir = $(includedir)/gstreamer-@VERSION@/gst/control
|
|
libgstcontrolinclude_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparam_smooth.h \
|
|
unitconvert.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dparam_smooth.c \
|
|
unitconvert.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
|
libgstcontrol_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|