diff options
author | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-17 22:31:11 +0000 |
---|---|---|
committer | Theo Buehler <tb@cvs.openbsd.org> | 2022-12-17 22:31:11 +0000 |
commit | f0b550dbb78788c8d584cb3e2ff22d279ec6aa44 (patch) | |
tree | 0713de37564df4b242469ae530f599e81e262b4b /regress | |
parent | f8ecca919f78d4a7c00a8743a244de63a3357b6a (diff) |
Move benchmark target up a bit and mark it phony
Diffstat (limited to 'regress')
-rw-r--r-- | regress/lib/libcrypto/bn/Makefile | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/regress/lib/libcrypto/bn/Makefile b/regress/lib/libcrypto/bn/Makefile index 8a51a2ccad3..6e89e026b25 100644 --- a/regress/lib/libcrypto/bn/Makefile +++ b/regress/lib/libcrypto/bn/Makefile @@ -1,4 +1,4 @@ -# $OpenBSD: Makefile,v 1.17 2022/12/17 17:18:46 jsing Exp $ +# $OpenBSD: Makefile,v 1.18 2022/12/17 22:31:10 tb Exp $ PROGS += bn_add_sub PROGS += bn_cmp @@ -60,11 +60,12 @@ run-bc: bn_test.out CLEANFILES += bn_test.out bc.out +benchmark: bn_shift + ./bn_shift --benchmark +.PHONY: benchmark + .for p in ${STATIC_LINK} LDADD_$p += ${CRYPTO_INT} .endfor -benchmark: bn_shift - ./bn_shift --benchmark - .include <bsd.regress.mk> |