Revert "Get rid of it!"

This reverts commit 2509f435f1.
This commit is contained in:
Luke Murphy 2020-03-11 16:18:08 +01:00
parent 2509f435f1
commit 6f966158c3
No known key found for this signature in database
GPG Key ID: 5E2EF5A63E3718CC

9
Makefile Normal file
View File

@ -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