Changed folder structure

This commit is contained in:
Leon Vatthauer 2023-08-19 12:19:14 +02:00
parent 44b8b77653
commit 64a1f120d0
Signed by: leonv
SSH key fingerprint: SHA256:G4+ddwoZmhLPRB1agvXzZMXIzkVJ36dUYZXf5NxT+u8
9 changed files with 4 additions and 4 deletions

View file

@ -1,12 +1,12 @@
.PHONY: all clean
all: MonadK.lagda.md
agda --html --html-dir=out MonadK.lagda.md --html-highlight=auto
agda --html --html-dir=out ElgotAlgebra.lagda.md --html-highlight=auto
all: Everything.agda
agda --html --html-dir=out Everything.agda --html-highlight=auto
pandoc out/MonadK.md -s -c Agda.css -o out/MonadK.html
pandoc out/ElgotAlgebra.md -s -c Agda.css -o out/ElgotAlgebra.html
clean:
rm Everything.agda
rm -rf out/*
open:
@ -14,4 +14,4 @@ open:
firefox out/ElgotAlgebra.html
Everything.agda:
git ls-tree --full-tree -r --name-only HEAD | grep '^[^\.]*.agda' | sed -e 's|^[/]*|import |' -e 's|/|.|g' -e 's/.agda//' -e '/import Everything/d' | LC_COLLATE='C' sort > Everything.agda
git ls-tree --full-tree -r --name-only HEAD | grep '^src/[^\.]*.agda' | sed -e 's|^src/[/]*|import |' -e 's|/|.|g' -e 's/.agda//' -e '/import Everything/d' | LC_COLLATE='C' sort > Everything.agda