mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
7407326abb
Original commit message from CVS: * docs/Makefile.am: * docs/gst/gstreamer-docs.sgml: * docs/gst/gstreamer-sections.txt: * docs/gst/running.xml: * docs/libs/gstreamer-libs-docs.sgml: Change to xinclude based build - its faster and easier to maintain.
28 lines
598 B
Makefile
28 lines
598 B
Makefile
if ENABLE_DOCBOOK
|
|
SUBDIRS_DOCBOOK = faq manual pwg
|
|
else
|
|
SUBDIRS_DOCBOOK =
|
|
endif
|
|
|
|
if ENABLE_GTK_DOC
|
|
if ENABLE_PLUGIN_DOCS
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
else
|
|
PLUGIN_DOCS_DIRS =
|
|
endif
|
|
else
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
endif
|
|
|
|
BUILT_SOURCES = version.entities
|
|
|
|
SUBDIRS = design gst libs $(PLUGIN_DOCS_DIRS) $(SUBDIRS_DOCBOOK)
|
|
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
|
|
|