mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-27 04:01:08 +00:00
8da28910bc
Original commit message from CVS: * s/filter/plugin/ * add $(GST_LIBS) to all plugins * move Makefile.am things around to a mostly standard layout * remove HTTP flags/libs from elements since http element moved
36 lines
749 B
Makefile
36 lines
749 B
Makefile
plugindir = $(libdir)/gst
|
|
|
|
plugin_LTLIBRARIES = libgstelements.la
|
|
|
|
libgstelements_la_DEPENDENCIES = ../libgst.la
|
|
libgstelements_la_SOURCES = \
|
|
gstelements.c \
|
|
gstfakesrc.c \
|
|
gstidentity.c \
|
|
gstfakesink.c \
|
|
gstfilesrc.c \
|
|
gstdisksink.c \
|
|
gstfdsrc.c \
|
|
gstfdsink.c \
|
|
gstmultidisksrc.c \
|
|
gstpipefilter.c \
|
|
gsttee.c \
|
|
gstaggregator.c \
|
|
gststatistics.c
|
|
libgstelements_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstelements_la_LIBADD = $(GST_LIBS)
|
|
libgstelements_la_LDFLAGS = -version-info $(GST_LIBVERSION)
|
|
|
|
noinst_HEADERS = \
|
|
gstfakesrc.h \
|
|
gstidentity.h \
|
|
gstfakesink.h \
|
|
gstdisksink.h \
|
|
gstfdsrc.h \
|
|
gstmultidisksrc.h \
|
|
gstfdsink.h \
|
|
gstpipefilter.h \
|
|
gsttee.h \
|
|
gstaggregator.h \
|
|
gststatistics.h \
|
|
gstfilesrc.h
|