mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
9aff2de625
Based on previous work by Marc-André Lureau
19 lines
549 B
Makefile
19 lines
549 B
Makefile
plugindir = $(GST_PLUGINS_DIR)
|
|
|
|
plugin_LTLIBRARIES = libgstfragmented.la
|
|
|
|
libgstfragmented_la_SOURCES = \
|
|
m3u8.c \
|
|
gsthlsdemux.c \
|
|
gstfragmentedplugin.c
|
|
|
|
libgstfragmented_la_CFLAGS = $(GST_CFLAGS) $(GST_BASE_CFLAGS) $(SOUP_CFLAGS)
|
|
libgstfragmented_la_LIBADD = $(GST_LIBS) $(GST_BASE_LIBS) $(SOUP_LIBS)
|
|
libgstfragmented_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) -no-undefined
|
|
libgstfragmented_la_LIBTOOLFLAGS = --tag=disable-static
|
|
|
|
# headers we need but don't want installed
|
|
noinst_HEADERS = \
|
|
gstfragmented.h \
|
|
gsthlsdemux.h \
|
|
m3u8.h
|