diff options
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 649b4e191..1072b00df 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -125,3 +125,12 @@ $(myman_pages) : yat2m-stamp fi; \ fi + +online: gnupg.html gnupg.pdf + set -e; \ + echo "Uploading current manuals to www.gnupg.org ..."; \ + user=werner ; \ + (cd gnupg.html && rsync -vr --exclude='.svn' . \ + $${user}@cvs.gnupg.org:webspace/manuals/gnupg/ ); \ + rsync -v gnupg.pdf $${user}@cvs.gnupg.org:webspace/manuals/ + |