mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 10:59:39 +00:00
16 lines
412 B
Makefile
16 lines
412 B
Makefile
|
plugin_LTLIBRARIES = libgstcelt.la
|
||
|
|
||
|
libgstcelt_la_SOURCES = gstcelt.c gstceltdec.c gstceltenc.c
|
||
|
libgstcelt_la_CFLAGS = \
|
||
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
||
|
$(GST_CFLAGS) \
|
||
|
$(CELT_CFLAGS)
|
||
|
libgstcelt_la_LIBADD = \
|
||
|
$(GST_PLUGINS_BASE_LIBS) -lgsttag-$(GST_MAJORMINOR) \
|
||
|
$(GST_BASE_LIBS) \
|
||
|
$(GST_LIBS) \
|
||
|
$(CELT_LIBS)
|
||
|
libgstcelt_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(LIBM)
|
||
|
|
||
|
noinst_HEADERS = gstceltenc.h gstceltdec.h
|