mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
21 lines
402 B
Makefile
21 lines
402 B
Makefile
if ENABLE_PLUGIN_DOCS
|
|
PLUGINS_DOCS_DIRS = plugins
|
|
else
|
|
PLUGINS_DOCS_DIRS =
|
|
endif
|
|
|
|
if ENABLE_GTK_DOC
|
|
GTK_DOC_DIRS = $(PLUGINS_DOCS_DIRS)
|
|
else
|
|
GTK_DOC_DIRS =
|
|
endif
|
|
|
|
SUBDIRS = libs $(GTK_DOC_DIRS)
|
|
DIST_SUBDIRS = libs plugins
|
|
|
|
EXTRA_DIST = \
|
|
random/ChangeLog-0.8 \
|
|
version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|