mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-24 01:00:37 +00:00
57fcf33e5e
Original commit message from CVS: Remove old autoplug code
20 lines
463 B
Makefile
20 lines
463 B
Makefile
plugindir = $(libdir)/gstreamer-@GST_MAJORMINOR@
|
|
|
|
plugin_LTLIBRARIES = \
|
|
libgstspider.la
|
|
|
|
libgstspider_la_SOURCES = \
|
|
gstspider.c gstspideridentity.c \
|
|
gstsearchfuncs.c
|
|
libgstspider_la_CFLAGS = $(GST_CFLAGS)
|
|
libgstspider_la_LIBADD =
|
|
libgstspider_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstspider.h gstsearchfuncs.h
|
|
|
|
noinst_PROGRAMS = spidertest
|
|
|
|
spidertest_SOURCES = spidertest.c
|
|
spidertest_CFLAGS = $(GST_CFLAGS)
|
|
spidertest_LDADD = $(GST_LIBS)
|
|
|