mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-15 22:01:27 +00:00
e7b9201555
Original commit message from CVS: reorganize C/LIB flags add gst_info to gstcompat.h
28 lines
737 B
Makefile
28 lines
737 B
Makefile
|
|
plugin_LTLIBRARIES = libgstspider.la
|
|
AS_LIBTOOL_LIB = libgstspider
|
|
|
|
EXTRA_DIST = $(as_libtool_EXTRA_DIST)
|
|
noinst_DATA = $(as_libtool_noinst_DATA_files)
|
|
|
|
libgstspider_la_SOURCES = \
|
|
gstspider.c gstspideridentity.c \
|
|
gstsearchfuncs.c
|
|
libgstspider_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libgstspider_la_LIBADD = $(GST_OBJ_LIBS)
|
|
libgstspider_la_LDFLAGS = $(GST_PLUGIN_LDFLAGS) $(as_libtool_LDFLAGS)
|
|
|
|
noinst_HEADERS = gstspider.h gstspideridentity.h gstsearchfuncs.h
|
|
|
|
noinst_PROGRAMS = spidertest
|
|
|
|
spidertest_SOURCES = spidertest.c
|
|
spidertest_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
spidertest_LDADD = $(GST_OBJ_LIBS)
|
|
|
|
install-data-local: as-libtool-install-data-local
|
|
|
|
uninstall-local: as-libtool-uninstall-local
|
|
|
|
include $(top_srcdir)/common/as-libtool.mak
|
|
|