1# $OpenBSD: Makefile,v 1.2 2026/06/14 04:08:06 djm Exp $ 2 3PROG=test_servconf 4SRCS=tests.c 5 6SRCS+=servconf.c groupaccess.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-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+=cipher-chachapoly.c chacha.c poly1305.c ssh-ecdsa-sk.c ssh-sk.c 15SRCS+=ssh-ed25519-sk.c sk-usbhid.c ssh-pkcs11-client.c 16SRCS+=utf8.c ssherr-libcrypto.c 17SRCS+=kex.c kex-names.c packet.c dispatch.c compat.c canohost.c 18SRCS+=digest-openssl.c ed25519-openssl.c 19SRCS+=libcrux-mlkem-mldsa.c ssh-mldsa-eddsa.c 20 21REGRESS_TARGETS=run-regress-${PROG} 22 23run-regress-${PROG}: ${PROG} 24 env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS} 25 26.include <bsd.regress.mk> 27