mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-01-09 17:05:52 +00:00
bdec475970
Original commit message from CVS: Fix automake badness
25 lines
760 B
Makefile
25 lines
760 B
Makefile
GST_PLUGIN_PATH=$(shell cd $(top_builddir) && pwd)
|
|
TESTS_ENVIRONMENT = GST_PLUGIN_PATH=$(GST_PLUGIN_PATH) GST_REGISTRY=$(GST_PLUGIN_PATH)/testsuite/test-registry.xml
|
|
|
|
# FIXME : tests need fixing
|
|
testprogs = # static dynamic linked loading registry static2
|
|
|
|
AM_CFLAGS = $(GST_CFLAGS)
|
|
LIBS = $(GST_LIBS)
|
|
|
|
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)
|