mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-17 05:46:36 +00:00
4f14ff0d1b
Original commit message from CVS: this isn't going to go away is it ?
20 lines
574 B
Makefile
20 lines
574 B
Makefile
# FIXME : tests need fixing
|
|
testprogs = dynamic linked static # loading registry static2
|
|
## filterdir = $(libdir)/gst
|
|
|
|
noinst_LTLIBRARIES = libtestplugin.la libtestplugin2.la
|
|
|
|
libtestplugin_la_SOURCES = testplugin.c
|
|
libtestplugin_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin_la_LIBS = $(GST_LIBS)
|
|
libtestplugin2_la_SOURCES = testplugin2.c
|
|
libtestplugin2_la_CFLAGS = $(GST_CFLAGS)
|
|
libtestplugin2_la_LIBS = $(GST_LIBS)
|
|
|
|
# linked_LDFLAGS = -L. -ltestplugin -ltestplugin2
|
|
|
|
static_SOURCES = static.c testplugin_s.c testplugin2_s.c
|
|
|
|
TESTS = $(testprogs)
|
|
|
|
check_PROGRAMS = $(testprogs)
|