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 c806232..2294f89 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -23,3 +23,12 @@ info_TEXINFOS = assuan.texi assuan_TEXINFOS = lgpl.texi gpl.texi + +online: assuan.html assuan.pdf + set -e; \ + echo "Uploading current manuals to www.gnupg.org ..."; \ + user=werner ; \ + (cd assuan.html && rsync -vr --exclude='.svn' . \ + $${user}@cvs.gnupg.org:webspace/manuals/assuan/ ); \ + rsync -v assuan.pdf $${user}@cvs.gnupg.org:webspace/manuals/ + |