mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-14 13:21:28 +00:00
d1c169e6ad
Original commit message from CVS: Lets try something different (and then, the whole world collapsed - oops ;) )
34 lines
1.1 KiB
Makefile
34 lines
1.1 KiB
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = libgstffmpeg.la libgstffmpegall.la
|
|
|
|
libgstffmpeg_la_SOURCES = gstffmpeg.c \
|
|
gstffmpegcodecmap.c \
|
|
gstffmpegdec.c \
|
|
gstffmpegdemux.c \
|
|
gstffmpegenc.c \
|
|
gstffmpegmux.c \
|
|
gstffmpegprotocol.c \
|
|
gstffmpegtypes.c
|
|
|
|
libgstffmpeg_la_CFLAGS = $(GST_CFLAGS) \
|
|
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec \
|
|
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat
|
|
libgstffmpeg_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec/libavcodec.a \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat/libavformat.a
|
|
|
|
libgstffmpeg_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
libgstffmpegall_la_SOURCES = gstffmpegall.c \
|
|
gstffmpegallcodecmap.c
|
|
|
|
libgstffmpegall_la_CFLAGS = $(GST_CFLAGS) \
|
|
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec \
|
|
-I $(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavformat
|
|
libgstffmpegall_la_LIBADD = \
|
|
$(top_builddir)/gst-libs/ext/ffmpeg/ffmpeg/libavcodec/libavcodec.a
|
|
|
|
libgstffmpegall_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstffmpegallcodecmap.h
|