2022-02-04 07:53:44 +00:00
|
|
|
# $OpenBSD: Makefile,v 1.8 2022/02/04 07:53:44 dtucker Exp $
|
2019-10-31 21:36:16 +00:00
|
|
|
|
|
|
|
PROG=test_misc
|
|
|
|
SRCS=tests.c
|
2021-04-03 05:22:48 +00:00
|
|
|
SRCS+= test_convtime.c
|
|
|
|
SRCS+= test_expand.c
|
|
|
|
SRCS+= test_parse.c
|
|
|
|
SRCS+= test_argv.c
|
2021-05-21 03:48:07 +00:00
|
|
|
SRCS+= test_strdelim.c
|
2022-02-04 07:53:44 +00:00
|
|
|
SRCS+= test_hpdelim.c
|
2019-10-31 21:36:16 +00:00
|
|
|
|
|
|
|
# From usr.bin/ssh/Makefile.inc
|
2020-12-21 03:02:56 +00:00
|
|
|
SRCS+= sshbuf.c
|
|
|
|
SRCS+= sshbuf-getput-basic.c
|
|
|
|
SRCS+= sshbuf-misc.c
|
|
|
|
SRCS+= ssherr.c
|
|
|
|
SRCS+= log.c
|
|
|
|
SRCS+= xmalloc.c
|
|
|
|
SRCS+= misc.c
|
2020-10-16 14:02:24 +00:00
|
|
|
SRCS+= match.c
|
2021-01-09 12:24:30 +00:00
|
|
|
SRCS+= addr.c
|
2020-10-16 14:02:24 +00:00
|
|
|
SRCS+= addrmatch.c
|
2020-12-21 03:02:56 +00:00
|
|
|
|
|
|
|
# From usr.bin/ssh/sshd/Makefile
|
|
|
|
SRCS+= atomicio.c cleanup.c fatal.c
|
2019-10-31 21:36:16 +00:00
|
|
|
|
|
|
|
REGRESS_TARGETS=run-regress-${PROG}
|
|
|
|
|
|
|
|
run-regress-${PROG}: ${PROG}
|
|
|
|
env ${TEST_ENV} ./${PROG}
|
|
|
|
|
|
|
|
.include <bsd.regress.mk>
|