tasiaiso.vulpecula.zone/Makefile

72 lines
1.6 KiB
Makefile
Raw Permalink Normal View History

2024-05-26 23:31:33 +02:00
# $< : first dependency (input)
# $@ : rule name (output)
2024-05-22 15:40:30 +02:00
# Build the website
2024-05-27 09:26:40 +02:00
site/index.html: docs/** \
theme/** \
theme/main.html \
theme/style.min.css \
theme/gruvbox-dark.min.css \
2024-05-30 09:57:46 +02:00
mkdocs.yml \
favicon_all
2024-05-26 19:25:36 +02:00
mkdocs build
2024-05-22 15:40:30 +02:00
2024-05-26 23:35:45 +02:00
build: site/index.html
2024-05-27 09:26:40 +02:00
# HTML
2024-05-26 20:10:32 +02:00
theme/main.html: haml/main.haml
haml render $< > $@.tmp
cat $@.tmp > $@
rm $@.tmp
2024-05-27 09:26:40 +02:00
# CSS
theme/style.min.css: theme/style.css
2024-05-26 23:31:33 +02:00
python3 -m csscompressor -o $@ $<
2024-05-27 09:26:40 +02:00
theme/gruvbox-dark.min.css: theme/gruvbox-dark.css
2024-05-26 23:35:45 +02:00
python3 -m csscompressor -o $@ $<
2024-05-27 09:26:40 +02:00
# Favicons
theme/favicon-ex.png: theme/favicon.svg
inkscape theme/favicon.svg --export-filename=theme/favicon-ex.png
theme/favicon.png: theme/favicon-ex.png
2024-05-30 09:57:46 +02:00
magick theme/favicon-ex.png -quality 95 -resize 144x144 theme/favicon.png
2024-05-27 09:26:40 +02:00
2024-05-30 09:57:46 +02:00
# theme/favicon.ico: theme/favicon-ex.png
# magick theme/favicon-ex.png -compress Zip -quality 95 -resize 144x144 -background transparent theme/favicon.ico
2024-05-27 09:26:40 +02:00
2024-05-30 09:57:46 +02:00
favicon_all: theme/favicon.png
# theme/favicon.ico
2024-05-27 09:26:40 +02:00
# Scripts
2024-05-22 15:40:30 +02:00
# Serve the website at http://127.0.0.1:8000/~tasiaiso/
serve: site/index.html
2024-05-22 15:40:30 +02:00
mkdocs serve -w theme
format: format-code format-markdown
format-code:
npx prettier --cache --write --check .
format-markdown:
npx markdownlint-cli 'docs/**/*.md' -f
2024-10-03 21:34:03 +02:00
# Upload the website to tilde
# upload: clean build
# scp -r site/** tasiaiso@tilde.club:/home/tasiaiso/public_html
2024-05-22 15:40:30 +02:00
2024-05-26 23:35:45 +02:00
purge: clean format build
2024-05-26 23:31:33 +02:00
2024-05-22 15:40:30 +02:00
.PHONY: clean
clean:
2024-05-30 09:57:46 +02:00
rm -r site/ || true
rm theme/main.html || true
rm theme/style.min.css || true
rm theme/gruvbox-dark.min.css || true
rm theme/favicon-ex.png || true
rm theme/favicon.min.svg || true
rm theme/favicon.png || true
rm theme/favicon.ico || true
2024-05-26 23:35:45 +02:00