agda-intro/Makefile
2024-04-30 12:31:24 +02:00

31 lines
895 B
Makefile

.PHONY: all clean pandoc Everything.agda
all: agda
make pandoc
pandoc: public/*.md
@$(foreach file,$^, \
pandoc $(file) -s --to=html+TEX_MATH_DOLLARS --mathjax -c Agda.css -o $(file:.md=.html) ; \
)
agda: Everything.agda
agda --html --html-dir=public src/Everything.agda --html-highlight=auto -isrc
rm -f public/Agda.css
cp Agda.css public/Agda.css
clean:
rm -f src/Everything.agda
rm -rf public/*
find . -name '*.agdai' -exec rm \{\} \;
# push compiled html to my cip directory
push: all
chmod +w public/Agda.css
rm -rf agda-intro
mv -T public agda-intro
scp -r agda-intro hy84coky@cip1d1.cip.cs.fau.de:.www/
mv -T agda-intro public
Everything.agda:
rm -f src/Everything.agda
git ls-files | egrep '^src/[^\.]*.l?agda(\.md)?' | sed -e 's|^src/[/]*|import |' -e 's|/|.|g' -e 's/.agda//' -e '/import Everything/d' -e 's/..md//' | LC_COLLATE='C' sort >> src/Everything.agda