mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-06 01:19:38 +00:00
cc62cef6fa
Original commit message from CVS: fold enumcaps into caps/; clean up Makefile.am files
41 lines
1.2 KiB
Makefile
41 lines
1.2 KiB
Makefile
# ../Rules is not included because we specifically don't want the normal
|
|
# AM_CFLAGS, etc.
|
|
|
|
plugin_LTLIBRARIES = libloadgst.la
|
|
|
|
tests_pass = dlopen_gst
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
libloadgst_la_SOURCES = loadgst.c
|
|
libloadgst_la_CFLAGS = $(GST_OBJ_CFLAGS)
|
|
libloadgst_la_LDFLAGS = -module -avoid-version $(GST_OBJ_LIBS)
|
|
|
|
dlopen_gst_CFLAGS = $(GLIB_CFLAGS)
|
|
dlopen_gst_LDFLAGS = $(GLIB_LIBS)
|
|
|
|
TESTS_ENVIRONMENT= \
|
|
G_DEBUG=fatal_warnings \
|
|
GST_PLUGIN_PATH=$(top_builddir)/gst:. \
|
|
GST_REGISTRY=$(top_builddir)/testsuite/test-registry.xml
|
|
|
|
check_PROGRAMS = $(tests_pass) $(tests_fail) $(tests_ignore)
|
|
|
|
# make all tests depend on the versioned gst-register
|
|
$(tests_pass) $(tests_fail): $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@
|
|
|
|
# rebuild gst-register-@GST_MAJORMINOR@ if needed
|
|
# the EXEEXT is because am 1.6 complained about overrides
|
|
$(top_builddir)/tools/gst-register-@GST_MAJORMINOR@$(EXEEXT):
|
|
cd $(top_builddir)/tools && make
|
|
|
|
TESTS = $(top_builddir)/tools/gst-register-@GST_MAJORMINOR@ \
|
|
$(tests_pass) $(tests_fail)
|
|
XFAIL_TESTS = $(tests_fail)
|
|
|
|
# override to _not_ install the test plugins
|
|
install-pluginLTLIBRARIES:
|
|
|
|
# This rule is here so make distcheck works on machines where core
|
|
# dumps have PIDs appended
|
|
CLEANFILES = core.*
|