2023-01-16 00:35:10 +01:00
|
|
|
# $OpenBSD: Makefile,v 1.12 2023/01/15 23:35:10 djm Exp $
|
2014-07-02 09:38:31 +02:00
|
|
|
|
|
|
|
PROG=test_sshkey
|
|
|
|
SRCS=tests.c test_sshkey.c test_file.c test_fuzz.c common.c
|
2017-12-21 01:41:22 +01:00
|
|
|
|
|
|
|
# From usr.bin/ssh
|
|
|
|
SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
|
2020-01-26 01:09:50 +01:00
|
|
|
SRCS+=sshbuf-io.c atomicio.c sshkey.c authfile.c cipher.c log.c ssh-rsa.c
|
|
|
|
SRCS+=ssh-dss.c ssh-ecdsa.c ssh-ed25519.c mac.c umac.c umac128.c hmac.c misc.c
|
2017-12-21 01:41:22 +01:00
|
|
|
SRCS+=ssherr.c uidswap.c cleanup.c xmalloc.c match.c krl.c fatal.c
|
2021-01-09 13:24:30 +01:00
|
|
|
SRCS+=addr.c addrmatch.c bitmap.c
|
2023-01-16 00:35:10 +01:00
|
|
|
SRCS+=ed25519.c hash.c
|
2019-11-01 02:57:59 +01:00
|
|
|
SRCS+=cipher-chachapoly.c chacha.c poly1305.c ssh-ecdsa-sk.c ssh-sk.c
|
2019-11-25 11:32:35 +01:00
|
|
|
SRCS+=ssh-ed25519-sk.c sk-usbhid.c
|
2017-12-21 01:41:22 +01:00
|
|
|
|
|
|
|
SRCS+=digest-openssl.c
|
|
|
|
#SRCS+=digest-libc.c
|
2020-04-06 11:43:55 +02:00
|
|
|
SRCS+=utf8.c
|
2017-12-21 01:41:22 +01:00
|
|
|
|
2014-07-02 09:38:31 +02:00
|
|
|
REGRESS_TARGETS=run-regress-${PROG}
|
|
|
|
|
|
|
|
run-regress-${PROG}: ${PROG}
|
2018-10-18 01:28:05 +02:00
|
|
|
env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS} -d ${.CURDIR}/testdata
|
2014-07-02 09:38:31 +02:00
|
|
|
|
|
|
|
.include <bsd.regress.mk>
|
|
|
|
|