From fc4981e3ea863632c88e5f0b308ae4532d077e49 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Sun, 13 Dec 2020 12:35:33 +0100 Subject: Added execution timers --- 2020/Makefile | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 2020/Makefile (limited to '2020/Makefile') diff --git a/2020/Makefile b/2020/Makefile new file mode 100644 index 0000000..033d272 --- /dev/null +++ b/2020/Makefile @@ -0,0 +1,7 @@ +SUBDIRS := $(wildcard *) + +all: $(SUBDIRS) +$(SUBDIRS): + @if [ -d "$@" ]; then echo "Day $@: $$(make -C $@ run | grep 'TIME')"; fi + +.PHONY: all $(SUBDIRS) -- cgit v1.2.3