1# $OpenBSD: Makefile,v 1.9 2023/01/06 02:59:50 djm Exp $ 2 3PROG=test_misc 4SRCS=tests.c 5SRCS+= test_convtime.c 6SRCS+= test_expand.c 7SRCS+= test_parse.c 8SRCS+= test_argv.c 9SRCS+= test_strdelim.c 10SRCS+= test_hpdelim.c 11SRCS+= test_ptimeout.c 12 13# From usr.bin/ssh/Makefile.inc 14SRCS+= sshbuf.c 15SRCS+= sshbuf-getput-basic.c 16SRCS+= sshbuf-misc.c 17SRCS+= ssherr.c 18SRCS+= log.c 19SRCS+= xmalloc.c 20SRCS+= misc.c 21SRCS+= match.c 22SRCS+= addr.c 23SRCS+= addrmatch.c 24 25# From usr.bin/ssh/sshd/Makefile 26SRCS+= atomicio.c cleanup.c fatal.c 27 28REGRESS_TARGETS=run-regress-${PROG} 29 30run-regress-${PROG}: ${PROG} 31 env ${TEST_ENV} ./${PROG} 32 33.include <bsd.regress.mk> 34