From 74d7ead41b304876b90c0ef833052a5fd9c2d728 Mon Sep 17 00:00:00 2001 From: Oliver Jowett Date: Thu, 2 May 2019 17:21:56 +0800 Subject: [PATCH] Move convert_benchmark into oneoff/ --- Makefile | 2 +- convert_benchmark.c => oneoff/convert_benchmark.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) rename convert_benchmark.c => oneoff/convert_benchmark.c (99%) diff --git a/Makefile b/Makefile index 10388fe..30fa844 100644 --- a/Makefile +++ b/Makefile @@ -68,5 +68,5 @@ crctests: crc.c crc.h benchmarks: convert_benchmark ./convert_benchmark -convert_benchmark: convert_benchmark.o convert.o util.o +oneoff/convert_benchmark: oneoff/convert_benchmark.o convert.o util.o $(CC) $(CPPFLAGS) $(CFLAGS) -g -o $@ $^ -lm diff --git a/convert_benchmark.c b/oneoff/convert_benchmark.c similarity index 99% rename from convert_benchmark.c rename to oneoff/convert_benchmark.c index 96b691f..f21c39c 100644 --- a/convert_benchmark.c +++ b/oneoff/convert_benchmark.c @@ -18,7 +18,7 @@ // You should have received a copy of the GNU General Public License // along with this program. If not, see . -#include "dump1090.h" +#include "../dump1090.h" static void **testdata_uc8; static void **testdata_sc16;