blob: 523d77a960e9bccb243a77e262e9001fa2c8c503 (
about) (
plain)
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
|
## Copyright (C) 2013, 2014, 2015 Artyom V. Poptsov <poptsov.artyom@gmail.com>
##
## 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/>.
include $(top_srcdir)/am/snarf
lib_LTLIBRARIES = libguile-ssh.la
libguile_ssh_la_SOURCES = \
auth.c auth.h channel-func.c channel-func.h \
channel-type.c channel-type.h channel-main.c \
error.c error.h key-func.c key-func.h key-main.c \
key-type.c key-type.h session-func.c session-func.h \
session-type.c session-type.h session-main.c \
server-main.c server-func.c server-func.h server-type.c \
server-type.h message-type.c message-type.h message-func.c \
message-func.h message-main.c \
version.c threads.c threads.h \
common.c common.h \
log.c log.h \
sftp-session-type.c sftp-session-type.h \
sftp-session-main.c \
sftp-session-func.c sftp-session-func.h \
sftp-file-type.c sftp-file-type.h sftp-file-main.c
BUILT_SOURCES = auth.x channel-func.x channel-type.x error.x \
key-func.x key-type.x session-func.x session-type.x \
server-type.x server-func.x message-type.x message-func.x \
version.x log.x sftp-session-type.x sftp-session-func.x \
sftp-file-type.x
libguile_ssh_la_CPPFLAGS = $(GUILE_CFLAGS)
SSH_LD_FLAGS = -lssh
if ! HAVE_LIBSSH_0_8
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_SNARF)$(GUILE_SNARF) -o $@ $< $(snarfcppopts)
CLEANFILES = *.x
## Makefile.am ends here
|