From 1cc5a458f28ad44919c9bfafbd5191c253e453e2 Mon Sep 17 00:00:00 2001 From: Yann Herklotz Date: Mon, 20 Jul 2020 11:54:58 +0100 Subject: Add dhrystone to benchmarks --- benchmarks/dhrystone/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 benchmarks/dhrystone/Makefile (limited to 'benchmarks/dhrystone/Makefile') diff --git a/benchmarks/dhrystone/Makefile b/benchmarks/dhrystone/Makefile new file mode 100644 index 0000000..6a10d2a --- /dev/null +++ b/benchmarks/dhrystone/Makefile @@ -0,0 +1,8 @@ +CC := gcc +CFLAGS := -O3 + +all: + $(CC) $(CFLAGS) -DHZ=60 dhry_1.c dhry_2.c -o dhry + +clean: + rm -f dhry -- cgit