mirror of
https://github.com/genodelabs/genode.git
synced 2024-12-20 14:13:09 +00:00
366bba0227
This is a follow-up commit to "Increase default warning level", which overrides Genode's new default warning level for targets contained in higher-level repositories. By explicitly whitelisting all those targets, we can selectively adjust them to the new strictness over time - by looking out for 'CC_CXX_WARN_STRICT' in the target description files. Issue #465
73 lines
1.4 KiB
Makefile
73 lines
1.4 KiB
Makefile
LIBSSH_PORT_DIR := $(call select_from_ports,libssh)
|
|
|
|
SRC_C = \
|
|
agent.c \
|
|
auth.c \
|
|
base64.c \
|
|
bignum.c \
|
|
bind.c \
|
|
buffer.c \
|
|
callbacks.c \
|
|
channels.c \
|
|
client.c \
|
|
config.c \
|
|
connect.c \
|
|
curve25519.c \
|
|
dh.c \
|
|
ecdh.c \
|
|
error.c \
|
|
getpass.c \
|
|
gzip.c \
|
|
init.c \
|
|
kex.c \
|
|
known_hosts.c \
|
|
legacy.c \
|
|
libcrypto.c \
|
|
log.c \
|
|
match.c \
|
|
messages.c \
|
|
misc.c \
|
|
options.c \
|
|
packet.c \
|
|
packet_cb.c \
|
|
packet_crypt.c \
|
|
pcap.c \
|
|
pki.c \
|
|
pki_container_openssh.c \
|
|
pki_crypto.c \
|
|
pki_ed25519.c \
|
|
poll.c \
|
|
scp.c \
|
|
server.c \
|
|
session.c \
|
|
sftp.c \
|
|
sftpserver.c \
|
|
socket.c \
|
|
string.c \
|
|
threads.c \
|
|
wrapper.c
|
|
|
|
# external/
|
|
SRC_C += \
|
|
bcrypt_pbkdf.c \
|
|
blowfish.c \
|
|
curve25519_ref.c \
|
|
ed25519.c \
|
|
fe25519.c \
|
|
ge25519.c \
|
|
sc25519.c
|
|
|
|
INC_DIR += $(LIBSSH_PORT_DIR)/include
|
|
INC_DIR += $(REP_DIR)/src/lib/libssh
|
|
|
|
CC_OPT += -DHAVE_CONFIG_H
|
|
|
|
LIBS += libc zlib libcrypto
|
|
|
|
SHARED_LIB = yes
|
|
|
|
vpath %.c $(LIBSSH_PORT_DIR)/src/lib/libssh/src
|
|
vpath %.c $(LIBSSH_PORT_DIR)/src/lib/libssh/src/external
|
|
|
|
CC_CXX_WARN_STRICT =
|