1# $OpenBSD: Makefile,v 1.7 2023/01/15 23:35:10 djm Exp $ 2 3PROG=test_authopt 4SRCS=tests.c 5 6SRCS+=auth-options.c 7 8# From usr.bin/ssh 9SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c 10SRCS+=sshbuf-io.c atomicio.c sshkey.c authfile.c cipher.c log.c ssh-rsa.c 11SRCS+=ssh-dss.c ssh-ecdsa.c ssh-ed25519.c mac.c umac.c umac128.c hmac.c misc.c 12SRCS+=ssherr.c uidswap.c cleanup.c xmalloc.c match.c krl.c fatal.c 13SRCS+=addr.c addrmatch.c bitmap.c 14SRCS+=ed25519.c hash.c 15SRCS+=cipher-chachapoly.c chacha.c poly1305.c ssh-ecdsa-sk.c ssh-sk.c 16SRCS+=ssh-ed25519-sk.c sk-usbhid.c 17 18SRCS+=digest-openssl.c 19#SRCS+=digest-libc.c 20SRCS+=utf8.c 21 22REGRESS_TARGETS=run-regress-${PROG} 23 24run-regress-${PROG}: ${PROG} 25 env ${TEST_ENV} ./${PROG} -d ${.CURDIR}/testdata 26 27.include <bsd.regress.mk> 28