1# $OpenBSD: Makefile,v 1.3 2020/10/16 14:02:24 djm Exp $ 2 3PROG=test_misc 4SRCS=tests.c 5 6# From usr.bin/ssh/Makefile.inc 7SRCS+= sshbuf.c 8SRCS+= sshbuf-getput-basic.c 9SRCS+= sshbuf-misc.c 10SRCS+= ssherr.c 11SRCS+= log.c 12SRCS+= xmalloc.c 13SRCS+= misc.c 14SRCS+= match.c 15SRCS+= addrmatch.c 16 17# From usr.bin/ssh/sshd/Makefile 18SRCS+= atomicio.c cleanup.c fatal.c 19 20REGRESS_TARGETS=run-regress-${PROG} 21 22run-regress-${PROG}: ${PROG} 23 env ${TEST_ENV} ./${PROG} 24 25.include <bsd.regress.mk> 26