gstreamer/ext/flite/Makefile.am
David Schleef 43147671c1 flite: Add flitetestsrc
Flite is a speech synthesizer library (BSD-ish license).  This element
negotiates a (possibly) multichannel audio stream, and then continually
outputs buffers naming the number and position of the channel.  It's
kinda crappy, but I needed it for testing purposes.
2010-01-16 13:03:24 -08:00

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