From 448282331bc77042299a6e7f63c8302d1584ca5b Mon Sep 17 00:00:00 2001 From: Jeffrey Walton Date: Wed, 8 Mar 2017 15:45:38 -0500 Subject: [PATCH] Remove HTML echo's from 'make benchmark' recipe --- GNUmakefile | 16 +++------------- 1 file changed, 3 insertions(+), 13 deletions(-) diff --git a/GNUmakefile b/GNUmakefile index 1f3bcf1a..b2baa12b 100755 --- a/GNUmakefile +++ b/GNUmakefile @@ -725,22 +725,12 @@ else ifneq ($(IS_LINUX),0) -$(RM) -r $(PWD)/cryptopp$(LIB_VER) endif -# CRYPTOPP_CPU_SPEED in GHz -CRYPTOPP_CPU_SPEED ?= 2.4 +# CRYPTOPP_CPU_FREQ in GHz +CRYPTOPP_CPU_FREQ ?= 0.0 .PHONY: bench benchmark benchmarks bench benchmark benchmarks: cryptest.exe rm -f benchmarks.html - echo "" >> benchmarks.html - echo "" >> benchmarks.html - echo "" >> benchmarks.html - echo "Speed Comparison of Popular Crypto Algorithms" >> benchmarks.html - echo "" >> benchmarks.html - echo "" >> benchmarks.html - echo "

Crypto++" $(LIB_MAJOR).$(LIB_MINOR).$(LIB_PATCH) "Benchmarks

" >> benchmarks.html - echo "

Here are speed benchmarks for some commonly used cryptographic algorithms.

" >> benchmarks.html - ./cryptest.exe b 3 $(CRYPTOPP_CPU_SPEED) >> benchmarks.html - echo "" >> benchmarks.html - echo "" >> benchmarks.html + ./cryptest.exe b 2 $(CRYPTOPP_CPU_FREQ) adhoc.cpp: adhoc.cpp.proto ifeq ($(wildcard adhoc.cpp),)