0
0
mirror of https://github.com/OpenVPN/openvpn.git synced 2024-09-20 12:02:28 +02:00
openvpn/doc/Makefile.am
Arne Schwabe 0c5380e906 Move examples into openvpn-examples(5) man page
Signed-off-by: Arne Schwabe <arne@rfc2549.org>
Acked-by: David Sommerseth <davids@openvpn.net>
Message-Id: <20210520150932.2565217-1-arne@rfc2549.org>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg22414.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
2021-07-02 11:50:11 +02:00

95 lines
2.5 KiB
Makefile

#
# OpenVPN -- An application to securely tunnel IP networks
# over a single UDP port, with support for SSL/TLS-based
# session authentication and key exchange,
# packet encryption, packet authentication, and
# packet compression.
#
# Copyright (C) 2002-2021 OpenVPN Inc <sales@openvpn.net>
# Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
#
MAINTAINERCLEANFILES = \
$(srcdir)/Makefile.in
SUBDIRS = doxygen
dist_doc_DATA = \
management-notes.txt gui-notes.txt
dist_noinst_DATA = \
README.plugins interactive-service-notes.rst \
openvpn.8.rst \
openvpn-examples.5.rst \
man-sections/advanced-options.rst \
man-sections/client-options.rst \
man-sections/connection-profiles.rst \
man-sections/encryption-options.rst \
man-sections/examples.rst \
man-sections/generic-options.rst \
man-sections/inline-files.rst \
man-sections/link-options.rst \
man-sections/log-options.rst \
man-sections/management-options.rst \
man-sections/network-config.rst \
man-sections/pkcs11-options.rst \
man-sections/plugin-options.rst \
man-sections/protocol-options.rst \
man-sections/proxy-options.rst \
man-sections/renegotiation.rst \
man-sections/signals.rst \
man-sections/script-options.rst \
man-sections/server-options.rst \
man-sections/tls-options.rst \
man-sections/unsupported-options.rst \
man-sections/virtual-routing-and-forwarding.rst \
man-sections/vpn-network-options.rst \
man-sections/windows-options.rst
openvpn.8 :
if HAVE_PYDOCUTILS
$(RST2MAN) $(srcdir)/$@.rst > $@
else
@echo "Missing python-docutils - skipping man page generation"
endif
openvpn-examples.5 :
if HAVE_PYDOCUTILS
$(RST2MAN) $(srcdir)/$@.rst > $@
else
@echo "Missing python-docutils - skipping man page generation"
endif
openvpn.8.html:
if HAVE_PYDOCUTILS
$(RST2HTML) $(srcdir)/openvpn.8.rst > $@
else
@echo "Missing python-docutils - skipping man/html page generation"
endif
openvpn-examples.5.html:
if HAVE_PYDOCUTILS
$(RST2HTML) $(srcdir)/openvpn-examples.5.rst > $@
else
@echo "Missing python-docutils - skipping man/html page generation"
endif
if HAVE_PYDOCUTILS
dist_noinst_DATA += openvpn.8 openvpn-examples.5
dist_html_DATA = openvpn.8.html openvpn-examples.5.html
# Failsafe - do not delete these files unless we can recreate them
CLEANFILES = \
openvpn.8 openvpn.8.html openvpn-examples.5 openvpn-examples.5.html
endif
if WIN32
else
dist_man_MANS = openvpn.8 openvpn-examples.5
endif
dist-hook : openvpn.8 openvpn.8.html openvpn-examples.5 openvpn-examples.5.html