91841731af
when building out of source tree, we provide -I$(top_builddir)/example since the libssh2_config.h gets generated in that dir
17 lines
439 B
Makefile
17 lines
439 B
Makefile
AUTOMAKE_OPTIONS = foreign nostdinc
|
|
|
|
EXTRA_DIST = libssh2_config.h.in
|
|
|
|
# samples
|
|
noinst_PROGRAMS = direct_tcpip ssh2 \
|
|
scp scp_nonblock \
|
|
scp_write scp_write_nonblock \
|
|
sftp sftp_nonblock \
|
|
sftp_write sftp_write_nonblock \
|
|
sftp_mkdir sftp_mkdir_nonblock \
|
|
sftp_RW_nonblock \
|
|
sftpdir sftpdir_nonblock ssh2_exec ssh2_agent
|
|
|
|
AM_CPPFLAGS = -I$(top_srcdir)/include -I$(top_builddir)/example
|
|
LDADD = $(top_builddir)/src/libssh2.la
|