mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-11 20:01:35 +00:00
20 lines
288 B
Makefile
20 lines
288 B
Makefile
if ENABLE_GTK_DOC
|
|
DOCS_SUBDIRS = libs
|
|
else
|
|
DOCS_SUBDIRS =
|
|
endif
|
|
|
|
SUBDIRS = $(DOCS_SUBDIRS)
|
|
DIST_SUBDIRS = libs
|
|
|
|
EXTRA_DIST = \
|
|
version.entities.in
|
|
|
|
upload:
|
|
@if test "x$(SUBDIRS)" != x; then \
|
|
for a in $(SUBDIRS); do \
|
|
cd $$a; \
|
|
make upload; \
|
|
cd ..; \
|
|
done; \
|
|
fi
|