aboutsummaryrefslogtreecommitdiff
path: root/2020/Makefile
diff options
context:
space:
mode:
authorMarvin Borner2020-12-13 12:35:33 +0100
committerMarvin Borner2020-12-13 12:35:33 +0100
commitfc4981e3ea863632c88e5f0b308ae4532d077e49 (patch)
tree811a1d2c09cd811764fb8c3c09099a876beb0e7f /2020/Makefile
parentf476fb5eaf30254dcb9e480f27f52b207147e207 (diff)
Added execution timers
Diffstat (limited to '2020/Makefile')
-rw-r--r--2020/Makefile7
1 files changed, 7 insertions, 0 deletions
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)