summaryrefslogtreecommitdiff
path: root/src/regress/lib/libcrypto/curve25519/Makefile
blob: dda7785f834f8f0de60178e4aecaccdf365c828d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#	$OpenBSD: Makefile,v 1.2 2022/11/06 16:41:29 jsing Exp $

PROGS += ed25519test
PROGS += x25519test

.for p in ${PROGS}
REGRESS_TARGETS += run-$p
.endfor

LDADD = ${CRYPTO_INT}
DPADD = ${LIBCRYPTO}

WARNINGS=	Yes
CFLAGS+=	-DLIBRESSL_INTERNAL -Werror

.for p in ${PROGS}
run-$p: $p
	@echo '\n======== $@ ========'
	./$p

.PHONY: run-$p
.endfor

.include <bsd.regress.mk>