blob: b405579ace4dea66849b3e4d7601310fcaa8aa3f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
# $NetBSD: Makefile,v 1.5 2003/07/24 14:22:58 itojun Exp $
NOMAN= # defined
PROG= threadstest
SRCS= mttest.c
DPADD+= ${LIBSSL} ${LIBCRYPTO}
LDADD+= -lssl -lcrypto
regress: ${PROG}
@echo "==> running ${PROG}"
@./${PROG}
.include <bsd.prog.mk>
.PATH: ${OPENSSLSRC}/crypto/threads
|