diff options
author | Ben McGinnes <[email protected]> | 2018-09-15 18:04:13 +0000 |
---|---|---|
committer | Ben McGinnes <[email protected]> | 2018-09-15 18:04:13 +0000 |
commit | b19faa26e01df4d78286e013313e5ab25f517d49 (patch) | |
tree | f0ec11b92250543b13d18d4a3b392722c7fb3ae4 /doc/Makefile.am | |
parent | Python bindings: docs (diff) | |
download | gpgme-b19faa26e01df4d78286e013313e5ab25f517d49.tar.gz gpgme-b19faa26e01df4d78286e013313e5ab25f517d49.zip |
Docs: Python bindings HOWTO
* Added doc/gpgme-python-howto.texi: generated from
GPGMEpythonHOWTOen.org and then slightly modified so the generated
Info file doesn't use camelCase.
* doc/Makefile.am: Updated makefile to include the Python HOWTO with
gpgme_TEXINFOS and to export the generated files to the webserver
along with the main GPGME one.
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index a592f795..a944be62 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -30,7 +30,7 @@ BUILT_SOURCES = defsincdate defs.inc info_TEXINFOS = gpgme.texi -gpgme_TEXINFOS = uiserver.texi lesser.texi gpl.texi +gpgme_TEXINFOS = uiserver.texi gpgme-python-howto.texi lesser.texi gpl.texi gpgme.texi : defs.inc @@ -53,11 +53,14 @@ defs.inc: defsincdate Makefile mkdefsinc $(info_TEXINFOS) $(gpgme_TEXINFOS) >$@ -online: gpgme.html gpgme.pdf +online: gpgme.html gpgme.pdf gpgme-python-howto.html gpgme-python-howto.pdf set -e; \ echo "Uploading current manuals to www.gnupg.org ..."; \ user=werner ; \ (cd gpgme.html && rsync -vr --exclude='.svn' . \ $${user}@ftp.gnupg.org:webspace/manuals/gpgme/ ); \ rsync -v gpgme.pdf $${user}@ftp.gnupg.org:webspace/manuals/ + (cd gpgme-python-howto.html && rsync -vr --exclude='.svn' . \ + $${user}@ftp.gnupg.org:webspace/manuals/gpgme/ ); \ + rsync -v gpgme-python-howto.pdf $${user}@ftp.gnupg.org:webspace/manuals/ |