all repos — eyes-like-fire @ 10d725b68b4cc1c29adb21920fb7a74467430228

Source code for the main eyes-like-fire website

Added Makefile
Juniper Beatitudes [email protected]
Fri, 04 Jul 2025 15:26:53 -0700
commit

10d725b68b4cc1c29adb21920fb7a74467430228

parent

d5c10ae6c5c99069697211db18e4fc4ba9524abd

1 files changed, 9 insertions(+), 0 deletions(-)

jump to
M MakefileMakefile

@@ -0,0 +1,9 @@

+PANDOC := pandoc + +build: src/*.md + pandoc -s -t chunkedhtml -o build/pages.zip $< --shift-heading-level-by=-1 --toc=true + unzip build/pages.zip -d build + rm build/pages.zip + +clean: + rm -rf build/*