mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-26 02:00:33 +00:00
dc36dd9e5d
Original commit message from CVS: build as a lib rather than a plugin
24 lines
599 B
Makefile
24 lines
599 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_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|