mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-12 12:21:30 +00:00
828252e0f2
Original commit message from CVS: * common/as-libtool.mak: Fine-tune DLL building. * configure.ac: Link plugins against libgstreamer. Define plugindir (like gst-plugins) * examples/plugins/Makefile.am: remove plugindir * gst/autoplug/Makefile.am: DLL building fixes * gst/elements/Makefile.am: DLL building fixes. Disable pipefilter on Windows. * gst/elements/gstelements.c: Conditionally disable pipefilter. * gst/indexers/Makefile.am: DLL building fixes * gst/schedulers/Makefile.am: DLL building fixes. * libs/gst/bytestream/Makefile.am: DLL building fixes. * libs/gst/control/Makefile.am: same * libs/gst/getbits/Makefile.am: same * testsuite/Makefile.am: New dlopen directory * testsuite/dlopen/Makefile.am: Tests to check if libgstreamer works when dlopened. * testsuite/dlopen/dlopen_gst.c: (main): same * testsuite/dlopen/loadgst.c: (do_test): same
31 lines
619 B
Makefile
31 lines
619 B
Makefile
include Rules
|
|
|
|
|
|
if GST_DISABLE_PARSE
|
|
GST_PARSE_DIRS =
|
|
else
|
|
GST_PARSE_DIRS = parse
|
|
endif
|
|
|
|
if GST_DISABLE_GST_DEBUG
|
|
GST_DEBUG_DIRS =
|
|
else
|
|
GST_DEBUG_DIRS = debug
|
|
endif
|
|
|
|
SUBDIRS = bins bytestream cleanup dynparams ghostpads \
|
|
caps plugin elements clock refcounting tags threads \
|
|
indexers debug $(GST_PARSE_DIRS) $(GST_DEBUG_DIRS) \
|
|
dlopen
|
|
|
|
DIST_SUBDIRS = bins bytestream caps cleanup clock dynparams elements indexers \
|
|
plugin refcounting tags threads parse debug ghostpads \
|
|
dlopen
|
|
|
|
tests_pass = test_gst_init
|
|
tests_fail =
|
|
tests_ignore =
|
|
|
|
# we makes them, we gots to clean them
|
|
CLEANFILES += test-registry.xml
|
|
|