mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-09 19:09:41 +00:00
699452ef31
This is not needed any longer.
24 lines
569 B
Makefile
24 lines
569 B
Makefile
|
|
plugin_LTLIBRARIES = libgstrawparse.la
|
|
|
|
libgstrawparse_la_SOURCES = \
|
|
gstrawparse.c \
|
|
gstaudioparse.c \
|
|
gstvideoparse.c \
|
|
plugin.c
|
|
libgstrawparse_la_CFLAGS = \
|
|
$(GST_PLUGINS_BASE_CFLAGS) \
|
|
$(GST_BASE_CFLAGS) \
|
|
$(GST_CFLAGS)
|
|
libgstrawparse_la_LIBADD = \
|
|
$(GST_PLUGINS_BASE_LIBS) \
|
|
-lgstvideo-@GST_API_VERSION@ -lgstaudio-@GST_API_VERSION@ \
|
|
$(GST_BASE_LIBS) \
|
|
$(GST_LIBS)
|
|
libgstrawparse_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
libgstrawparse_la_LIBTOOLFLAGS = $(GST_PLUGIN_LIBTOOLFLAGS)
|
|
|
|
noinst_HEADERS = \
|
|
gstaudioparse.h \
|
|
gstrawparse.h \
|
|
gstvideoparse.h
|