restructure source files

This commit is contained in:
Oskar Wickström
2025-01-25 14:51:52 +01:00
parent 99de347a6b
commit 1ab7a91565
9 changed files with 8 additions and 8 deletions

View File

@@ -5,7 +5,7 @@ all: index.html
clean:
rm -f index.html
index.html: index.md template.html Makefile
pandoc --toc -s --css reset.css --css index.css -Vversion=v$(VERSION) -i $< -o $@ --template=template.html
index.html: demo/index.md demo/template.html Makefile
pandoc --toc -s --css src/reset.css --css src/index.css -Vversion=v$(VERSION) -i $< -o $@ --template=demo/template.html
.PHONY: all clean