From 12c10c95a6a4f1f6c6c27ede8dca40f9fb5f6630 Mon Sep 17 00:00:00 2001 From: PlexSheep Date: Mon, 28 Nov 2022 19:20:04 +0100 Subject: [PATCH] Makefile TODO --- Makefile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Makefile b/Makefile index c4a34d8..52fda27 100644 --- a/Makefile +++ b/Makefile @@ -14,6 +14,7 @@ clean: huffman/bin/huffman: huffman/huffman.c $(CC) $(CFLAGS) -o $@ $< -lm +# TODO convert this phony target into multiple smaller file targets testfiles: @dd if=/dev/urandom of=huffman/testfiles/1K-random.img count=1KiB @dd if=/dev/urandom of=huffman/testfiles/10K-random.img count=10KiB @@ -30,6 +31,7 @@ testfiles: @yes 'lslfkpoipop iipfiasp' | head -c 1MB > huffman/testfiles/mid.txt +# TODO convert this phony target into multiple smaller file targets bigfiles: @echo "Building some bigger testfiles, this might take a while and draw some performance" @dd if=/dev/urandom of=huffman/testfiles/100M-random.img count=100MiB