1#	$OpenBSD: Makefile,v 1.2 2017/12/21 00:41:22 djm Exp $
2
3PROG=test_conversion
4SRCS=tests.c
5
6# From usr.bin/ssh
7SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
8SRCS+=atomicio.c misc.c xmalloc.c log.c uidswap.c cleanup.c fatal.c ssherr.c
9
10REGRESS_TARGETS=run-regress-${PROG}
11
12run-regress-${PROG}: ${PROG}
13	env ${TEST_ENV} ./${PROG}
14
15.include <bsd.regress.mk>
16