mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
a0e8e56d8d
Original commit message from CVS: fix docs build fix make distcheck
20 lines
483 B
Makefile
20 lines
483 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 gstspideridentity.h gstsearchfuncs.h
|
|
|
|
noinst_PROGRAMS = spidertest
|
|
|
|
spidertest_SOURCES = spidertest.c
|
|
spidertest_CFLAGS = $(GST_CFLAGS)
|
|
spidertest_LDADD = $(GST_LIBS)
|
|
|