mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-08 18:39:54 +00:00
75d05dc499
Original commit message from CVS: * docs/Makefile.am: Fix installing plugin documentation when gtk-doc is disabled.
19 lines
387 B
Makefile
19 lines
387 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 = 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
|