diff options
Diffstat (limited to '2020/Makefile')
-rw-r--r-- | 2020/Makefile | 7 |
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) |