mirror of
git://anongit.mindrot.org/openssh.git
synced 2024-12-30 06:02:07 +00:00
b08ef25552
OpenBSD-Regress-ID: de2b415fb7af084a91c6ef147a90482d8f771eef
23 lines
627 B
Makefile
23 lines
627 B
Makefile
# $OpenBSD: Makefile,v 1.10 2021/01/09 12:24:31 dtucker Exp $
|
|
|
|
# $OpenBSD: Makefile,v 1.8 2020/01/26 00:09:50 djm Exp $
|
|
|
|
PROG=test_sshbuf
|
|
SRCS=tests.c
|
|
SRCS+=test_sshbuf.c
|
|
SRCS+=test_sshbuf_getput_basic.c
|
|
SRCS+=test_sshbuf_getput_crypto.c
|
|
SRCS+=test_sshbuf_misc.c
|
|
SRCS+=test_sshbuf_fuzz.c
|
|
SRCS+=test_sshbuf_getput_fuzz.c
|
|
SRCS+=test_sshbuf_fixed.c
|
|
|
|
# From usr.bin/ssh
|
|
SRCS+=sshbuf-getput-basic.c sshbuf-getput-crypto.c sshbuf-misc.c sshbuf.c
|
|
SRCS+=sshbuf-io.c atomicio.c misc.c xmalloc.c log.c fatal.c ssherr.c cleanup.c
|
|
SRCS+=match.c addr.c addrmatch.c
|
|
|
|
run-regress-${PROG}: ${PROG}
|
|
env ${TEST_ENV} ./${PROG} ${UNITTEST_ARGS}
|
|
|