Makefile.am 903 B

12345678910111213141516171819202122232425262728293031323334
  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. EXTRA_DIST = \
  14. sample-plugins \
  15. sample-config-files \
  16. sample-windows \
  17. sample-keys \
  18. sample-scripts
  19. if WIN32
  20. sample_DATA = \
  21. client.ovpn \
  22. server.ovpn \
  23. sample-windows/sample.ovpn
  24. client.ovpn: sample-config-files/client.conf
  25. -rm -f client.ovpn
  26. cp "$(srcdir)/sample-config-files/client.conf" client.ovpn
  27. server.ovpn: sample-config-files/server.conf
  28. -rm -f server.ovpn
  29. cp "$(srcdir)/sample-config-files/server.conf" server.ovpn
  30. endif