summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorOrfeas <38209077+0xfea5@users.noreply.github.com>2025-09-02 13:46:30 +0300
committerOrfeas <38209077+0xfea5@users.noreply.github.com>2025-09-02 13:46:30 +0300
commitb5b80351577306db80343d043d19c800f575f6f7 (patch)
treea2916bf08a06bc44478435572573f69822d78e9a
parentday02: move lambdas out of loop (diff)
downloadaoc24-b5b80351577306db80343d043d19c800f575f6f7.tar.gz
aoc24-b5b80351577306db80343d043d19c800f575f6f7.zip
aoc.mk: show execution time on ‘make run’HEADmain
-rw-r--r--aoc.mk2
1 files changed, 1 insertions, 1 deletions
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
26 @cat /tmp/aoc.output 26 @cat /tmp/aoc.output
27 27
28run: compile 28run: compile
29 timeout ${TIMEOUT} ${TARGET} < ${INPUT} 29 time timeout ${TIMEOUT} ${TARGET} < ${INPUT}
30 30
31clean: 31clean:
32 rm -f ${TARGET} 32 rm -f ${TARGET}