diff options
author | Werner Koch <[email protected]> | 2007-06-29 14:41:35 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2007-06-29 14:41:35 +0000 |
commit | 4daa6aa2c976e74e931e8869fa71668c0d2764e2 (patch) | |
tree | 81bd82d9d63d0063042095a9248219522a0bb00c /doc | |
parent | 2007-06-05 Marcus Brinkmann <[email protected]> (diff) | |
download | gpgme-4daa6aa2c976e74e931e8869fa71668c0d2764e2.tar.gz gpgme-4daa6aa2c976e74e931e8869fa71668c0d2764e2.zip |
Added target "online".
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ChangeLog | 4 | ||||
-rw-r--r-- | doc/Makefile.am | 9 |
2 files changed, 13 insertions, 0 deletions
diff --git a/doc/ChangeLog b/doc/ChangeLog index 94625148..2b5f5001 100644 --- a/doc/ChangeLog +++ b/doc/ChangeLog @@ -2,6 +2,10 @@ * gpgme.texi (Advanced Key Editing): New section. +2007-05-21 Werner Koch <[email protected]> + + * Makefile.am (online): New target. + 2007-05-18 Marcus Brinkmann <[email protected]> * gpgme.texi (Error Strings): Fix documentation of diff --git a/doc/Makefile.am b/doc/Makefile.am index c5aeb2f4..5d2d54c5 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -23,3 +23,12 @@ DISTCLEANFILES = gpgme.tmp info_TEXINFOS = gpgme.texi gpgme_TEXINFOS = lesser.texi + +online: gpgme.html gpgme.pdf + set -e; \ + echo "Uploading current manuals to www.gnupg.org ..."; \ + user=werner ; \ + (cd gpgme.html && rsync -vr --exclude='.svn' . \ + $${user}@cvs.gnupg.org:webspace/manuals/gpgme/ ); \ + rsync -v gpgme.pdf $${user}@cvs.gnupg.org:webspace/manuals/ + |