mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-23 10:11:08 +00:00
10cdc0c90c
Original commit message from CVS: don't include optimizations directly in Makefiles
26 lines
735 B
Makefile
26 lines
735 B
Makefile
librarydir = $(libdir)
|
|
|
|
library_LTLIBRARIES = libgstcontrol-@GST_MAJORMINOR@.la
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_includedir = $(includedir)/gstreamer-@GST_MAJORMINOR@/gst/control
|
|
libgstcontrol_@GST_MAJORMINOR@_include_HEADERS = \
|
|
control.h \
|
|
dparammanager.h \
|
|
dparam.h \
|
|
dparam_smooth.h \
|
|
unitconvert.h \
|
|
dparamcommon.h \
|
|
dplinearinterp.h
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_SOURCES = \
|
|
control.c \
|
|
dparammanager.c \
|
|
dparam.c \
|
|
dparam_smooth.c \
|
|
unitconvert.c \
|
|
dplinearinterp.c
|
|
|
|
libgstcontrol_@GST_MAJORMINOR@_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LDFLAGS = @GST_LT_LDFLAGS@ -version-info @GST_LIBVERSION@
|
|
libgstcontrol_@GST_MAJORMINOR@_la_LIBADD = $(GST_LIBS)
|
|
|