From 5c73cccba295c0c98aed7907d8e5d42feeb802c7 Mon Sep 17 00:00:00 2001 From: Dorian Zedler Date: Wed, 20 Jul 2022 13:29:56 +0200 Subject: [PATCH] Fix: create folder for testfiles --- Implementierung/Makefile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/Implementierung/Makefile b/Implementierung/Makefile index 4bc5b3c..0ad1c96 100644 --- a/Implementierung/Makefile +++ b/Implementierung/Makefile @@ -30,6 +30,7 @@ md2: ${OBJ} ${CC} -o $@ $(OBJ) ${LDFLAGS} t/%: + @mkdir t @echo @echo "=== Generating ${subst t/,,$@}MB of random data... ===" dd if=/dev/random of=$@ bs=1M count=${subst t/,,$@} status=progress @@ -67,4 +68,4 @@ benchmarks.csv: md2 ${TESTFILES} benchmarks: benchmarks.csv -.PHONY: all clean help benchmarks \ No newline at end of file +.PHONY: all clean help benchmarks