mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
9fe4587856
Original commit message from CVS: more changes
22 lines
468 B
Makefile
22 lines
468 B
Makefile
librarydir = $(libdir)/gst
|
|
|
|
library_LTLIBRARIES = libgstcontrol.la
|
|
|
|
libgstcontrol_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dplinearinterp.c
|
|
|
|
|
|
libgstcontrolincludedir = $(includedir)/gst/control
|
|
libgstcontrolinclude_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_la_LIBADD = $(GST_LIBS)
|
|
libgstcontrol_la_CFLAGS = $(GST_CFLAGS) -finline-functions -ffast-math
|
|
|