mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
bd9d834bd8
Original commit message from CVS: * docs/Makefile.am: Install docs even when --disable-gtk-doc is disabled. This matches the behavior of gtk+. Fixes #349099.
15 lines
331 B
Makefile
15 lines
331 B
Makefile
if ENABLE_PLUGIN_DOCS
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
else
|
|
PLUGIN_DOCS_DIRS =
|
|
endif
|
|
|
|
SUBDIRS = design libs $(PLUGIN_DOCS_DIRS)
|
|
DIST_SUBDIRS = design libs plugins
|
|
|
|
EXTRA_DIST = \
|
|
design-audiosinks.txt \
|
|
version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|