openssh-portable/regress/unittests/misc/Makefile

34 lines
635 B
Makefile
Raw Normal View History

# $OpenBSD: Makefile,v 1.9 2023/01/06 02:59:50 djm Exp $
2019-10-31 22:36:16 +01:00
PROG=test_misc
SRCS=tests.c
2021-04-03 07:22:48 +02:00
SRCS+= test_convtime.c
SRCS+= test_expand.c
SRCS+= test_parse.c
SRCS+= test_argv.c
SRCS+= test_strdelim.c
SRCS+= test_hpdelim.c
SRCS+= test_ptimeout.c
2019-10-31 22:36:16 +01:00
# From usr.bin/ssh/Makefile.inc
2020-12-21 04:02:56 +01: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
SRCS+= match.c
SRCS+= addr.c
SRCS+= addrmatch.c
2020-12-21 04:02:56 +01:00
# From usr.bin/ssh/sshd/Makefile
SRCS+= atomicio.c cleanup.c fatal.c
2019-10-31 22:36:16 +01:00
REGRESS_TARGETS=run-regress-${PROG}
run-regress-${PROG}: ${PROG}
env ${TEST_ENV} ./${PROG}
.include <bsd.regress.mk>