Makefile.am 794 B

12345678910111213141516171819202122232425262728293031
  1. #
  2. # OpenVPN -- An application to securely tunnel IP networks
  3. # over a single UDP port, with support for SSL/TLS-based
  4. # session authentication and key exchange,
  5. # packet encryption, packet authentication, and
  6. # packet compression.
  7. #
  8. # Copyright (C) 2002-2018 OpenVPN Inc <sales@openvpn.net>
  9. # Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
  10. #
  11. MAINTAINERCLEANFILES = \
  12. $(srcdir)/Makefile.in
  13. CLEANFILES = openvpn.8.html
  14. dist_doc_DATA = \
  15. management-notes.txt
  16. dist_noinst_DATA = \
  17. README.plugins interactive-service-notes.rst
  18. if WIN32
  19. dist_noinst_DATA += openvpn.8
  20. nodist_html_DATA = openvpn.8.html
  21. openvpn.8.html: $(srcdir)/openvpn.8
  22. $(MAN2HTML) < $(srcdir)/openvpn.8 > openvpn.8.html
  23. else
  24. dist_man_MANS = openvpn.8
  25. endif