From 9a5f80174f8aad85f58a6ccff955d6d5bc074bca Mon Sep 17 00:00:00 2001 From: Avril Date: Fri, 4 Dec 2020 13:41:34 +0000 Subject: [PATCH] update makefile --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index b8b2f06..afd1163 100644 --- a/Makefile +++ b/Makefile @@ -17,11 +17,11 @@ DAYS= $(wildcard day*) .PHONY: all +all: $(addsuffix /part2,$(DAYS)) + day%/part2: day% cd $< && $(MAKE) -all: $(addsuffix /part2,$(DAYS)) - clean: for d in $(DAYS); do pushd $$d && $(MAKE) clean && popd; done