From 6f966158c3957873bdd2a96d0f73b34b5f1022a9 Mon Sep 17 00:00:00 2001 From: Luke Murphy Date: Wed, 11 Mar 2020 16:18:08 +0100 Subject: [PATCH] Revert "Get rid of it!" This reverts commit 2509f435f177fd1b7d291e4ac7fad5a3466dcd05. --- Makefile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..cab79d3 --- /dev/null +++ b/Makefile @@ -0,0 +1,9 @@ +SITES ?= $$(find . -maxdepth 2 -name "Makefile" -not -path "./Makefile" | xargs -I {} dirname {}) + +default: publish + +.PHONY: publish +publish: + for path in $(SITES) ; do \ + cd $$path && make html; \ + done