xref: /freebsd/crypto/openssh/regress/unittests/sshbuf/Makefile (revision 19261079b74319502c6ffa1249920079f0f69a72)
1#	$OpenBSD: Makefile,v 1.10 2021/01/09 12:24:31 dtucker Exp $
2
3#	$OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
4
5PROG=test_sshbuf
6SRCS=tests.c
7SRCS+=test_sshbuf.c
8SRCS+=test_sshbuf_getput_basic.c
9SRCS+=test_sshbuf_getput_crypto.c
10SRCS+=test_sshbuf_misc.c
11SRCS+=test_sshbuf_fuzz.c
12SRCS+=test_sshbuf_getput_fuzz.c
13SRCS+=test_sshbuf_fixed.c
14
15# From usr.bin/ssh
16SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
17SRCS+=sshbuf-io.c atomicio.c misc.c xmalloc.c log.c fatal.c ssherr.c cleanup.c
18SRCS+=match.c addr.c addrmatch.c
19
20run-regress-${PROG}: ${PROG}
21	env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS}
22
23