type-theory/Makefile

22 lines
501 B
Makefile
Raw Normal View History

2024-05-17 06:49:10 +00:00
GENDIR := html/src/generated
2024-05-20 07:40:03 +00:00
2024-05-17 06:49:10 +00:00
build-to-html:
2024-05-25 03:54:13 +00:00
find src \( -name "*.agda" -o -name "*.lagda.md" \) -print0 \
2024-05-17 18:50:46 +00:00
| rust-parallel -0 agda \
--html \
--html-dir=$(GENDIR) \
--allow-unsolved-metas \
--html-highlight=auto \
|| true
2024-05-17 06:49:10 +00:00
fd --no-ignore "html$$" $(GENDIR) -x rm
2024-05-20 07:40:03 +00:00
build-book: build-to-html
2024-05-17 06:49:10 +00:00
mdbook build html
2024-05-20 07:40:03 +00:00
refresh-book: build-to-html
mdbook serve html
deploy: build-book
2024-05-25 03:54:13 +00:00
rsync -azrP html/book/ root@veil:/home/blogDeploy/public/research
2024-05-17 06:49:10 +00:00
2024-05-20 07:40:03 +00:00
.PHONY: build-book build-to-html deploy