blob: 33c77fc1dddfa1113ea6fc055776d9f6c9e547c4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $OpenBSD: Makefile,v 1.3 2014/07/08 15:53:52 jsing Exp $
PROG= evptest
LDADD= -lcrypto
DPADD= ${LIBCRYPTO}
WARNINGS= Yes
CFLAGS+= -DLIBRESSL_INTERNAL -Werror
REGRESS_TARGETS=regress-evptest
regress-evptest: ${PROG}
./${PROG} ${.CURDIR}/evptests.txt
.include <bsd.regress.mk>
|