mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-02-19 02:29:37 -05:00
Since Microsoft has abandonded this I think it is time for us to do the same for OpenVPN 2.8. Leaves a stub ntlm_support in to make cross-branch t_client.rc easier to maintain. Change-Id: I1f5724476862935284f620c54afa510eea03e3f9 Signed-off-by: Frank Lichtenheld <frank@lichtenheld.com> Acked-by: Gert Doering <gert@greenie.muc.de> Gerrit URL: https://gerrit.openvpn.net/c/openvpn/+/1453 Message-Id: <20260216145205.14958-1-gert@greenie.muc.de> URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg35650.html Signed-off-by: Gert Doering <gert@greenie.muc.de>
52 lines
1.5 KiB
Makefile
52 lines
1.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-2026 OpenVPN Inc <sales@openvpn.net>
|
|
# Copyright (C) 2006-2012 Alon Bar-Lev <alon.barlev@gmail.com>
|
|
#
|
|
|
|
MAINTAINERCLEANFILES = \
|
|
$(srcdir)/Makefile.in
|
|
|
|
SUBDIRS = unit_tests
|
|
|
|
AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING) System Tests'
|
|
SH_LOG_DRIVER = $(SHELL) $(top_srcdir)/forked-test-driver
|
|
|
|
if !WIN32
|
|
test_scripts = t_client.sh t_lpback.sh t_cltsrv.sh t_server_null.sh
|
|
|
|
check_PROGRAMS = ntlm_support
|
|
if HAVE_SITNL
|
|
test_scripts += t_net.sh
|
|
endif
|
|
endif
|
|
|
|
TESTS_ENVIRONMENT = top_srcdir="$(top_srcdir)"
|
|
TEST_EXTENSIONS = .sh
|
|
TESTS = $(test_scripts)
|
|
|
|
dist_noinst_SCRIPTS = \
|
|
t_cltsrv.sh \
|
|
t_cltsrv-down.sh \
|
|
t_lpback.sh \
|
|
t_net.sh \
|
|
t_server_null.sh \
|
|
t_server_null_client.sh \
|
|
t_server_null_server.sh \
|
|
t_server_null_default.rc \
|
|
update_t_client_ips.sh
|
|
|
|
t_client.log: t_server_null.log
|
|
|
|
dist_noinst_DATA = \
|
|
t_client.rc-sample
|
|
|
|
ntlm_support_CFLAGS = -I$(top_srcdir)/src/openvpn -I$(top_srcdir)/src/compat -I$(top_srcdir)/tests/unit_tests/openvpn -DNO_CMOCKA @TEST_CFLAGS@
|
|
ntlm_support_LDFLAGS = @TEST_LDFLAGS@ -L$(top_srcdir)/src/openvpn $(OPTIONAL_CRYPTO_LIBS)
|
|
ntlm_support_SOURCES = ntlm_support.c \
|
|
unit_tests/openvpn/mock_msg.c unit_tests/openvpn/mock_msg.h
|