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