mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-20 16:51:10 +00:00
65e8564343
Add -base libs includes to CFLAGS, fix order of LIBS.
19 lines
569 B
Makefile
19 lines
569 B
Makefile
plugin_LTLIBRARIES = libgstmpegtsmux.la
|
|
|
|
SUBDIRS = tsmux
|
|
|
|
libgstmpegtsmux_la_SOURCES = \
|
|
mpegtsmux.c \
|
|
mpegtsmux_h264.c \
|
|
mpegtsmux_aac.c
|
|
|
|
libgstmpegtsmux_la_CFLAGS = $(GST_PLUGINS_BASE_CFLAGS) $(GST_BASE_CFLAGS) $(GST_CFLAGS)
|
|
libgstmpegtsmux_la_LIBADD = $(top_builddir)/gst/mpegtsmux/tsmux/libtsmux.la \
|
|
$(GST_PLUGINS_BASE_LIBS) -lgstvideo-@GST_MAJORMINOR@ $(GST_BASE_LIBS) $(GST_LIBS)
|
|
libgstmpegtsmux_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstmpegtsmux_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
noinst_HEADERS = \
|
|
mpegtsmux.h \
|
|
mpegtsmux_h264.h \
|
|
mpegtsmux_aac.h
|