initial import of the spider autoplugger - not to self: Makefile changes must be committed, too

Original commit message from CVS:
initial import of the spider autoplugger - not to self: Makefile changes must be committed, too
This commit is contained in:
Benjamin Otte 2002-01-28 01:48:34 +00:00
parent 475a7acaa3
commit b0e9344c56

View file

@ -4,7 +4,8 @@ plugin_LTLIBRARIES = \
libgststaticautoplug.la \
libgststaticautoplugrender.la \
libgstautoplugcache.la \
libgstautoplugger.la
libgstautoplugger.la \
libgstspider.la
libgststaticautoplug_la_SOURCES = gststaticautoplug.c
libgststaticautoplug_la_CFLAGS = $(GST_CFLAGS)
@ -26,9 +27,20 @@ libgstautoplugger_la_CFLAGS = $(GST_CFLAGS)
libgstautoplugger_la_LIBADD = $(GST_LIBS)
libgstautoplugger_la_LDFLAGS = -version-info $(GST_LIBVERSION)
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h
libgstspider_la_SOURCES = gstspider.c gstspideridentity.c gstsearchfuncs.c
libgstspider_la_CFLAGS = $(GST_CFLAGS)
libgstspider_la_LIBADD = $(GST_LIBS)
libgstspider_la_LDFLAGS = -version-info $(GST_LIBVERSION)
noinst_PROGRAMS = autoplugtest
noinst_HEADERS = gststaticautoplug.h gststaticautoplugrender.h \
gstspider.h gstspideridentity.h gstsearchfuncs.h
noinst_PROGRAMS = autoplugtest spidertest
autoplugtest_CFLAGS = $(GST_CFLAGS)
autoplugtest_LDADD = $(GST_LIBS)
spidertest_SOURCES = spidertest.c
spidertest_CFLAGS = $(GST_CFLAGS)
spidertest_LDADD = $(GST_LIBS)