openssh/regress/unittests/misc/Makefile
djm@openbsd.org bf7eb3c266 upstream: few more things needs match.c and addrmatch.c now that
log.c calls match_pattern_list()

OpenBSD-Regress-ID: f7c95c76b150d0aeb00a67858b9579b7d1b2db74
2020-12-21 14:04:08 +11:00

26 lines
470 B
Makefile

# $OpenBSD: Makefile,v 1.3 2020/10/16 14:02:24 djm Exp $
PROG=test_misc
SRCS=tests.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+= 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>