mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-18 07:47:17 +00:00
56135ebeb0
Original commit message from CVS: * autogen.sh: * configure.ac: * docs/Makefile.am: Use GST_PLUGIN_DOCS macro in configure.ac, add --enable-plugin-docs default to autogen.sh and use ENABLE_PLUGIN_DOCS conditional in Makefile.am (#344039).
20 lines
368 B
Makefile
20 lines
368 B
Makefile
if ENABLE_GTK_DOC
|
|
GTK_DOC_DIRS = libs
|
|
else
|
|
GTK_DOC_DIRS =
|
|
endif
|
|
|
|
if ENABLE_PLUGIN_DOCS
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
else
|
|
PLUGIN_DOCS_DIRS =
|
|
endif
|
|
|
|
SUBDIRS = $(GTK_DOC_DIRS) $(PLUGIN_DOCS_DIRS)
|
|
DIST_SUBDIRS = libs plugins
|
|
|
|
EXTRA_DIST = \
|
|
version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|