gstreamer/plugins/elements/Makefile.am
Andy Wingo 0067d17205 removal of //-style comments don't link plugins to core libs -- the versioning is done internally to the plugins with...
Original commit message from CVS:
* removal of //-style comments
* don't link plugins to core libs -- the versioning is done internally to the plugins with the plugin_info struct,
and symbol resolution is lazy, so we can always know if a plugin can be loaded by the plugin_info data. in theory.
2002-03-19 04:10:13 +00:00

39 lines
784 B
Makefile

plugindir = $(libdir)/gst
plugin_LTLIBRARIES = libgstelements.la
libgstelements_la_DEPENDENCIES = ../libgstreamer.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 \
gstmd5sink.c
libgstelements_la_CFLAGS = $(GST_CFLAGS)
libgstelements_la_LIBADD =
libgstelements_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) @GST_LT_LDFLAGS@
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 \
gstmd5sink.h