aboutsummaryrefslogtreecommitdiff
path: root/2020/Makefile
blob: 033d2725a80635a5825c757da8868fa202804c57 (plain) (blame)
1
2
3
4
5
6
7
SUBDIRS := $(wildcard *)

all: $(SUBDIRS)
$(SUBDIRS):
	@if [ -d "$@" ]; then echo "Day $@: $$(make -C $@ run | grep 'TIME')"; fi

.PHONY: all $(SUBDIRS)