mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
18 lines
560 B
Makefile
18 lines
560 B
Makefile
plugin_LTLIBRARIES = libgstspeex.la
|
|
|
|
libgstspeex_la_SOURCES = gstspeex.c gstspeexdec.c gstspeexenc.c
|
|
libgstspeex_la_CFLAGS = -DGST_USE_UNSTABLE_API \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
$(SPEEX_CFLAGS)
|
|
libgstspeex_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgsttag-$(GST_API_VERSION) -lgstaudio-$(GST_API_VERSION) \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(SPEEX_LIBS)
|
|
libgstspeex_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
|
libgstspeex_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = gstspeexenc.h gstspeexdec.h
|