mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-28 20:51:13 +00:00
a236a2df36
Original commit message from CVS: * gst/interleave/Makefile.am: * gst/matroska/Makefile.am: Fix build flags order. * tests/check/elements/audioamplify.c: (GST_START_TEST): * tests/check/elements/audiodynamic.c: (GST_START_TEST): * tests/check/elements/audioinvert.c: (GST_START_TEST): * tests/check/elements/audiopanorama.c: (GST_START_TEST): Format fixes. * tests/check/elements/multifile.c: Pull in unistd.h
35 lines
672 B
Makefile
35 lines
672 B
Makefile
plugin_LTLIBRARIES = libgstmatroska.la
|
|
|
|
libgstmatroska_la_SOURCES = \
|
|
ebml-read.c \
|
|
ebml-write.c \
|
|
matroska.c \
|
|
matroska-demux.c \
|
|
matroska-ids.c \
|
|
matroska-mux.c \
|
|
lzo.c
|
|
|
|
noinst_HEADERS = \
|
|
ebml-ids.h \
|
|
ebml-read.h \
|
|
ebml-write.h \
|
|
matroska-demux.h \
|
|
matroska-ids.h \
|
|
matroska-mux.h \
|
|
lzo.h
|
|
|
|
libgstmatroska_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS) \
|
|
-I$(top_srcdir)/gst-libs
|
|
libgstmatroska_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstriff-@GST_MAJORMINOR@ \
|
|
-lgsttag-@GST_MAJORMINOR@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS) \
|
|
$(ZLIB_LIBS) \
|
|
$(BZ2_LIBS) \
|
|
$(LIBM)
|
|
libgstmatroska_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|