mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-10 03:19:40 +00:00
d675816ed0
Our auto-generated documentation has been a bit neglected. This patch replaces the 'normal' gtk-doc with the one used in GStreamer, which is adapted for plugins, elements and libraries. This patch also re-enables documentation generation. Signed-off-by: Víctor Manuel Jáquez Leal <victorx.jaquez@intel.com>
19 lines
359 B
Makefile
19 lines
359 B
Makefile
if ENABLE_GTK_DOC
|
|
if ENABLE_PLUGIN_DOCS
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
else
|
|
PLUGIN_DOCS_DIRS =
|
|
endif
|
|
else
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
endif
|
|
|
|
SUBDIRS = $(PLUGIN_DOCS_DIRS)
|
|
DIST_SUBDIRS = 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
|
|
|
|
-include $(top_srcdir)/git.mk
|