From b5b80351577306db80343d043d19c800f575f6f7 Mon Sep 17 00:00:00 2001 From: Orfeas <38209077+0xfea5@users.noreply.github.com> Date: Tue, 2 Sep 2025 13:46:30 +0300 Subject: aoc.mk: show execution time on ‘make run’ MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- aoc.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/aoc.mk b/aoc.mk index 233a712..98418e8 100644 --- a/aoc.mk +++ b/aoc.mk @@ -26,7 +26,7 @@ tests/test%.input: tests/test%.output compile force @cat /tmp/aoc.output run: compile - timeout ${TIMEOUT} ${TARGET} < ${INPUT} + time timeout ${TIMEOUT} ${TARGET} < ${INPUT} clean: rm -f ${TARGET} -- cgit v1.2.3