mirror of
https://github.com/libssh2/libssh2.git
synced 2026-01-27 00:18:12 +03:00
To render in Git webviews as-is, to make it easier to edit, verify,
and to sync up with curl.
- add options to not build the `.3` man pages:
- autotools: `--disable-docs`
- cmake: `LIBSSH2_BUILD_DOCS=OFF`
- building `.3` man pages requires Perl after this patch.
- drop `mansyntax` and the shell / `grep` / GNU `man` tool requirements with it.
- scripts and most logic were copied from curl.
- add `cd2nroff` from curl, with edits to relax curl-specific checks.
- used `nroff2cd` (from curl) to convert from `.3` to `.md`. Then
manually fixed copyrights, inline function references and a couple
of other things.
Credits-to: Daniel Stenberg
Ref: eefcc1bda4
Ref: https://github.com/curl/curl/pull/12730
Ref: https://github.com/libssh2/www/issues/25#issuecomment-3289431671
Closes #1660
56 lines
1.4 KiB
Makefile
56 lines
1.4 KiB
Makefile
# Copyright (C) The libssh2 project and its contributors.
|
|
# SPDX-License-Identifier: BSD-3-Clause
|
|
SUBDIRS = ossfuzz
|
|
|
|
AM_CPPFLAGS = -I$(top_builddir)/src -I$(top_srcdir)/src -I$(top_srcdir)/include
|
|
|
|
# This might hold -Werror
|
|
AM_CFLAGS = @LIBSSH2_CFLAG_EXTRAS@
|
|
|
|
# Get DOCKER_TESTS, DOCKER_TESTS_STATIC, STANDALONE_TESTS, STANDALONE_TESTS_STATIC, SSHD_TESTS,
|
|
# librunner_la_SOURCES, EXTRA_DIST variables and *_LDFLAGS for statically linked tests.
|
|
include Makefile.inc
|
|
|
|
if HAVE_LIB_STATIC
|
|
DOCKER_TESTS += $(DOCKER_TESTS_STATIC)
|
|
STANDALONE_TESTS += $(STANDALONE_TESTS_STATIC)
|
|
endif
|
|
|
|
# Some tests rely on the 'srcdir' env. Set by autotools automatically.
|
|
TESTS_ENVIRONMENT =
|
|
|
|
# Tests to run
|
|
TESTS =
|
|
|
|
if RUN_DOCKER_TESTS
|
|
TESTS += $(DOCKER_TESTS)
|
|
endif
|
|
|
|
TESTS += $(STANDALONE_TESTS)
|
|
|
|
# TAP tests
|
|
TEST_EXTENSIONS = .test
|
|
# 'TEST' in 'TEST_LOG_DRIVER' is the test extension in uppercase.
|
|
TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/tap-driver.sh
|
|
|
|
TESTS_ENVIRONMENT += EXEEXT=$(EXEEXT)
|
|
if RUN_SSHD_TESTS
|
|
if SSHD
|
|
TESTS += test_sshd.test
|
|
TESTS_ENVIRONMENT += SSHD="$(SSHD)"
|
|
endif
|
|
endif
|
|
if RUN_DOCKER_TESTS
|
|
TESTS += test_read_algos.test
|
|
endif
|
|
|
|
# Tests to build
|
|
check_PROGRAMS = $(DOCKER_TESTS) $(STANDALONE_TESTS) $(SSHD_TESTS)
|
|
|
|
# Internal library used by tests
|
|
LDADD = librunner.la
|
|
check_LTLIBRARIES = librunner.la
|
|
|
|
# This must be last in the list so it resolves symbols in previous libraries
|
|
LDADD += ../src/libssh2.la
|