mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2024-11-03 16:09:39 +00:00
c6c769aa8a
Remove the local copy of upload.mak in favour of using the shared upload-doc.make in common/
15 lines
313 B
Makefile
15 lines
313 B
Makefile
if ENABLE_PLUGIN_DOCS
|
|
PLUGIN_DOCS_DIRS = plugins
|
|
else
|
|
PLUGIN_DOCS_DIRS =
|
|
endif
|
|
|
|
SUBDIRS = $(PLUGIN_DOCS_DIRS)
|
|
DIST_SUBDIRS = 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
|