mirror of
https://git8.cs.fau.de/theses/bsc-leon-vatthauer.git
synced 2024-05-31 07:28:34 +02:00
Changed folder structure
This commit is contained in:
parent
44b8b77653
commit
64a1f120d0
9 changed files with 4 additions and 4 deletions
8
Makefile
8
Makefile
|
@ -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
|
Loading…
Reference in a new issue