1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40
|
#
# 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) 2017-2026 Sentyron B.V. <openvpn@sentyron.com>
#
MAINTAINERCLEANFILES = \
$(srcdir)/Makefile.in
DISTCLEANFILES = openvpn.doxyfile
DOXYGEN_EXTRA_FILES = \
doc_compression.h \
doc_control_processor.h \
doc_control_tls.h \
doc_data_control.h \
doc_data_crypto.h \
doc_eventloop.h \
doc_external_multiplexer.h \
doc_fragmentation.h \
doc_internal_multiplexer.h \
doc_key_generation.h \
doc_mainpage.h \
doc_memory_management.h \
doc_protocol_overview.h \
doc_reliable.h \
doc_tunnel_state.h
EXTRA_DIST = $(DOXYGEN_EXTRA_FILES)
.PHONY: doxygen
doxygen: openvpn.doxyfile $(DOXYGEN_EXTRA_FILES)
doxygen openvpn.doxyfile
clean-local:
-rm -rf html latex
|