mirror of
https://github.com/libssh2/libssh2.git
synced 2026-01-27 00:18:12 +03:00
There are a few non-whitespace changes, see them here: https://github.com/libssh2/libssh2/pull/885/files?w=1
37 lines
676 B
Makefile
37 lines
676 B
Makefile
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
EXTRA_DIST = libssh2_config_cmake.h.in CMakeLists.txt
|
|
|
|
# examples
|
|
noinst_PROGRAMS = \
|
|
direct_tcpip \
|
|
scp \
|
|
scp_nonblock \
|
|
scp_write \
|
|
scp_write_nonblock \
|
|
sftp \
|
|
sftp_RW_nonblock \
|
|
sftp_append \
|
|
sftp_mkdir \
|
|
sftp_mkdir_nonblock \
|
|
sftp_nonblock \
|
|
sftp_write \
|
|
sftp_write_nonblock \
|
|
sftp_write_sliding \
|
|
sftpdir \
|
|
sftpdir_nonblock \
|
|
ssh2 \
|
|
ssh2_agent \
|
|
ssh2_agent_forwarding \
|
|
ssh2_echo \
|
|
ssh2_exec \
|
|
subsystem_netconf \
|
|
tcpip-forward
|
|
|
|
if HAVE_SYS_UN_H
|
|
noinst_PROGRAMS += x11
|
|
endif
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/example -I../src
|
|
LDADD = $(top_builddir)/src/libssh2.la
|