mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-13 21:01:14 +00:00
ffcc7dc992
Original commit message from CVS: * docs/Makefile.am: the gtk-doc makefile snippet correctly handles the case when ENABLE_GTK_DOC is false, and installs the prebuilt documentation. So gtk-doc subdirs are unconditionally enabled. Fixes: #349099.
17 lines
449 B
Makefile
17 lines
449 B
Makefile
if ENABLE_DOCBOOK
|
|
SUBDIRS_DOCBOOK = faq manual pwg
|
|
else
|
|
SUBDIRS_DOCBOOK =
|
|
endif
|
|
|
|
BUILT_SOURCES = version.entities
|
|
|
|
SUBDIRS = design gst libs plugins $(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
|