summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-24 11:59:22 +0000
committerTim-Philipp Müller <tim.muller@collabora.co.uk>2011-01-24 11:59:22 +0000
commit1c300d92e012f7298fd2ef8e84a7a023eea2f318 (patch)
tree39a41d1b764746110085cbda3f2009f1b553de95 /docs
parentaa312eec8dafa85924321316b88bf684a0f99ed2 (diff)
docs: recursive into sub-directories on 'make upload'
Diffstat (limited to 'docs')
-rw-r--r--docs/Makefile.am9
1 files changed, 9 insertions, 0 deletions
diff --git a/docs/Makefile.am b/docs/Makefile.am
index f782512c1a..9f9f150bb3 100644
--- a/docs/Makefile.am
+++ b/docs/Makefile.am
@@ -9,3 +9,12 @@ 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