1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125
|
## Copyright (C) 2013-2023, 2026 Artyom V. Poptsov <poptsov.artyom@gmail.com>
## Copyright (C) 2026 Nicolas Graves <ngraves@ngraves.fr>
##
## This file is part of Guile-SSH.
##
## Guile-SSH is free software: you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation, either version 3 of the
## License, or (at your option) any later version.
##
## Guile-SSH is distributed in the hope that it will be useful, but
## WITHOUT ANY WARRANTY; without even the implied warranty of
## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with Guile-SSH. If not, see <http://www.gnu.org/licenses/>.
lib_LTLIBRARIES = libguile-ssh.la
libguile_ssh_la_SOURCES = \
auth.c \
auth.h \
callbacks.c \
callbacks.h \
channel-func.c \
channel-func.h \
channel-main.c \
channel-type.c \
channel-type.h \
common.c \
common.h \
error.c \
error.h \
key-func.c \
key-func.h \
key-main.c \
key-type.c \
key-type.h \
log.c \
log.h \
message-func.c \
message-func.h \
message-main.c \
message-type.c \
message-type.h \
server-func.c \
server-func.h \
server-main.c \
server-type.c \
server-type.h \
session-func.c \
session-func.h \
session-main.c \
session-type.c \
session-type.h \
sftp-dir-func.c \
sftp-dir-func.h \
sftp-dir-main.c \
sftp-dir-type.c \
sftp-dir-type.h \
sftp-file-main.c \
sftp-file-type.c \
sftp-file-type.h \
sftp-session-func.c \
sftp-session-func.h \
sftp-session-main.c \
sftp-session-type.c \
sftp-session-type.h \
threads.c \
threads.h \
version.c
BUILT_SOURCES = \
auth.x \
channel-func.x \
channel-type.x \
error.x \
key-func.x \
key-type.x \
log.x \
message-func.x \
message-type.x \
server-func.x \
server-type.x \
session-func.x \
session-type.x \
sftp-dir-func.x \
sftp-dir-type.x \
sftp-file-type.x \
sftp-session-func.x \
sftp-session-type.x \
version.x
libguile_ssh_la_CPPFLAGS = $(CFLAGS) $(GUILE_CFLAGS)
SSH_LD_FLAGS = -lssh
if ! HAVE_LIBSSH_0_8_3
SSH_LD_FLAGS += -lssh_threads
endif
libguile_ssh_la_LDFLAGS = \
-module \
-no-undefined $(SSH_LD_FLAGS) \
-version-info $(LIBGUILE_SSH_INTERFACE) \
$(GUILE_LDFLAGS)
AM_CFLAGS = $(WARN_CFLAGS)
AM_CPPFLAGS = -I$(top_srcdir)/libguile-ssh -I$(top_builddir)/libguile-ssh
snarfcppopts = \
$(DEFS) \
$(INCLUDES) \
$(CPPFLAGS) \
$(CFLAGS) \
$(GUILE_CFLAGS) \
$(AM_CPPFLAGS)
SUFFIXES = .x
.c.x:
$(AM_V_GEN)CPP="$(CPP)" $(guile_snarf) -o $@ $< $(snarfcppopts)
CLEANFILES = *.x
## Makefile.am ends here
|