From 84b1975e764601ea053f52f7d274f75b2624f423 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Tue, 4 Aug 2020 20:38:03 +0800 Subject: [PATCH] Fix benchmarks make target --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 49e4e44..3379e4f 100644 --- a/Makefile +++ b/Makefile @@ -109,8 +109,8 @@ cprtests: cpr.o cprtests.o crctests: crc.c crc.h $(CC) $(CPPFLAGS) $(CFLAGS) -g -DCRCDEBUG -o $@ $< -benchmarks: convert_benchmark - ./convert_benchmark +benchmarks: oneoff/convert_benchmark + oneoff/convert_benchmark oneoff/convert_benchmark: oneoff/convert_benchmark.o convert.o util.o $(CC) $(CPPFLAGS) $(CFLAGS) -g -o $@ $^ -lm