add first makefile

This commit is contained in:
jsz4n
2025-09-24 19:05:01 +02:00
parent 367dc75443
commit 689e93cb93

17
Makefile Normal file
View File

@@ -0,0 +1,17 @@
watch:
./watch_compile.sh
html:
./scripts/slides_to_html.sh slides.md
pdf:
./scripts/slides_to_pdf.sh slides.md
serve_html: html
ln -b -s `pwd`/templates/custom.css `pwd`/html/custom.css
ln -b -s `pwd`/medias `pwd`/html/medias
ln -b -s `pwd`/html/slides.html `pwd`/html/index.html
python -m http.server --directory html 7777
clean:
rm -rf html/*