2008-11-21 15:00:18 +00:00
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/src -I$(top_srcdir)/include -I$(top_builddir)/src
|
2007-01-09 09:49:15 +00:00
|
|
|
LDADD = ../src/libssh2.la
|
|
|
|
|
2008-11-21 15:00:18 +00:00
|
|
|
if SSHD
|
|
|
|
noinst_PROGRAMS = ssh2
|
|
|
|
ssh2_SOURCES = ssh2.c
|
|
|
|
endif
|
|
|
|
|
2009-08-11 02:46:45 +02:00
|
|
|
ctests = simple$(EXEEXT)
|
2011-09-10 15:57:12 +02:00
|
|
|
TESTS = $(ctests) mansyntax.sh
|
2008-11-21 15:00:18 +00:00
|
|
|
if SSHD
|
|
|
|
TESTS += ssh2.sh
|
|
|
|
endif
|
2007-01-09 09:49:15 +00:00
|
|
|
check_PROGRAMS = $(ctests)
|
2008-11-21 15:00:18 +00:00
|
|
|
|
2008-11-27 16:00:07 +00:00
|
|
|
TESTS_ENVIRONMENT = SSHD=$(SSHD) EXEEXT=$(EXEEXT)
|
2015-07-02 12:08:03 +02:00
|
|
|
TESTS_ENVIRONMENT += srcdir=$(top_srcdir)/tests builddir=$(top_builddir)/tests
|
2008-11-21 15:00:18 +00:00
|
|
|
|
2011-09-10 15:57:12 +02:00
|
|
|
EXTRA_DIST = ssh2.sh mansyntax.sh
|
2008-11-21 15:00:18 +00:00
|
|
|
EXTRA_DIST += etc/host etc/host.pub etc/user etc/user.pub
|
2015-07-02 12:50:29 +02:00
|
|
|
EXTRA_DIST += CMakeLists.txt libssh2_config_cmake.h.in sshd_fixture.sh.in
|
2016-08-14 16:03:25 +01:00
|
|
|
EXTRA_DIST += key_dsa key_dsa.pub key_dsa_wrong key_dsa_wrong.pub key_rsa key_rsa.pub
|
|
|
|
EXTRA_DIST += openssh_server/authorized_keys openssh_server/Dockerfile openssh_server/ssh_host_rsa_key
|
|
|
|
EXTRA_DIST += openssh_fixture.c openssh_fixture.h runner.c session_fixture.c session_fixture.h
|
|
|
|
EXTRA_DIST += test_hostkey.c test_hostkey_hash.c
|
|
|
|
EXTRA_DIST += test_keyboard_interactive_auth_fails_with_wrong_response.c
|
|
|
|
EXTRA_DIST += test_keyboard_interactive_auth_succeeds_with_correct_response.c
|
|
|
|
EXTRA_DIST += test_password_auth_fails_with_wrong_password.c
|
|
|
|
EXTRA_DIST += test_password_auth_fails_with_wrong_username.c
|
|
|
|
EXTRA_DIST += test_password_auth_succeeds_with_correct_credentials.c
|
|
|
|
EXTRA_DIST += test_public_key_auth_fails_with_wrong_key.c
|
|
|
|
EXTRA_DIST += test_public_key_auth_succeeds_with_correct_dsa_key.c
|
|
|
|
EXTRA_DIST += test_public_key_auth_succeeds_with_correct_rsa_key.c
|
2017-03-02 00:34:06 +01:00
|
|
|
EXTRA_DIST += test_public_key_auth_succeeds_with_correct_encrypted_rsa_key.c
|