mirror of
git://anongit.mindrot.org/openssh.git
synced 2025-01-24 18:33:00 +00:00
a29af853cf
OpenBSD-Regress-ID: be97b85c19895e6a1ce13c639765a3b48fd95018
33 lines
616 B
Makefile
33 lines
616 B
Makefile
# $OpenBSD: Makefile,v 1.8 2022/02/04 07:53:44 dtucker Exp $
|
|
|
|
PROG=test_misc
|
|
SRCS=tests.c
|
|
SRCS+= test_convtime.c
|
|
SRCS+= test_expand.c
|
|
SRCS+= test_parse.c
|
|
SRCS+= test_argv.c
|
|
SRCS+= test_strdelim.c
|
|
SRCS+= test_hpdelim.c
|
|
|
|
# From usr.bin/ssh/Makefile.inc
|
|
SRCS+= sshbuf.c
|
|
SRCS+= sshbuf-getput-basic.c
|
|
SRCS+= sshbuf-misc.c
|
|
SRCS+= ssherr.c
|
|
SRCS+= log.c
|
|
SRCS+= xmalloc.c
|
|
SRCS+= misc.c
|
|
SRCS+= match.c
|
|
SRCS+= addr.c
|
|
SRCS+= addrmatch.c
|
|
|
|
# From usr.bin/ssh/sshd/Makefile
|
|
SRCS+= atomicio.c cleanup.c fatal.c
|
|
|
|
REGRESS_TARGETS=run-regress-${PROG}
|
|
|
|
run-regress-${PROG}: ${PROG}
|
|
env ${TEST_ENV} ./${PROG}
|
|
|
|
.include <bsd.regress.mk>
|