mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
18 lines
424 B
Makefile
18 lines
424 B
Makefile
|
plugin_LTLIBRARIES = libgstflite.la
|
||
|
|
||
|
libgstflite_la_SOURCES = gstflite.c gstflitetestsrc.c
|
||
|
libgstflite_la_CFLAGS = \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS) \
|
||
|
$(FLITE_CFLAGS)
|
||
|
libgstflite_la_LIBADD = \
|
||
|
$(GST_PLUGINS_BASE_LIBS) \
|
||
|
-lgstaudio-@GST_MAJORMINOR@ \
|
||
|
$(GST_BASE_LIBS) \
|
||
|
$(GST_LIBS) \
|
||
|
$(FLITE_LIBS)
|
||
|
libgstflite_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||
|
libgstflite_la_LIBTOOLFLAGS = --tag=disable-static
|
||
|
|
||
|
|