mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 10:31:05 +00:00
fa5953d31c
Original commit message from CVS: * autogen.sh: Add default for new --enable-plugin-docs switch. * configure.ac: Use new GST_PLUGIN_DOCS macro to check for pyxml etc. Fixes #344039. * docs/Makefile.am: Use new ENABLE_PLUGIN_DOCS conditional.
29 lines
635 B
Makefile
29 lines
635 B
Makefile
if ENABLE_GTK_DOC
|
|
SUBDIRS_GTK_DOC = gst libs
|
|
else
|
|
SUBDIRS_GTK_DOC =
|
|
endif
|
|
|
|
if ENABLE_PLUGIN_DOCS
|
|
SUBDIRS_PLUGIN_DOCS = plugins
|
|
else
|
|
SUBDIRS_PLUGIN_DOCS =
|
|
endif
|
|
|
|
if ENABLE_DOCBOOK
|
|
SUBDIRS_DOCBOOK = faq manual pwg
|
|
else
|
|
SUBDIRS_DOCBOOK =
|
|
endif
|
|
|
|
BUILT_SOURCES = version.entities
|
|
|
|
SUBDIRS = design $(SUBDIRS_DOCBOOK) $(SUBDIRS_GTK_DOC) $(SUBDIRS_PLUGIN_DOCS)
|
|
DIST_SUBDIRS = design gst libs plugins faq manual pwg slides xsl
|
|
|
|
EXTRA_DIST = \
|
|
manuals.mak htmlinstall.mak \
|
|
image-png image-pdf image-eps url.entities version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|