mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-12-19 06:46:38 +00:00
15 lines
266 B
Makefile
15 lines
266 B
Makefile
|
if ENABLE_GTK_DOC
|
||
|
GTK_DOC_DIRS = plugins
|
||
|
else
|
||
|
GTK_DOC_DIRS =
|
||
|
endif
|
||
|
|
||
|
SUBDIRS = $(GTK_DOC_DIRS)
|
||
|
DIST_SUBDIRS = plugins
|
||
|
|
||
|
EXTRA_DIST = \
|
||
|
version.entities.in
|
||
|
|
||
|
upload:
|
||
|
@if test "x$(SUBDIRS)" != x; then for a in $(SUBDIRS); do cd $$a; make upload; cd ..; done; fi
|