blog/Makefile

12 lines
429 B
Makefile
Raw Permalink Normal View History

2025-04-29 16:48:57 -04:00
.PHONY: all
all: public/pyg.css
python3 ./main.py
2025-02-16 16:24:38 -05:00
2025-04-29 16:38:37 -04:00
public/pyg.css: Makefile pygments_theme_dark.txt pygments_theme_light.txt
echo "@media (prefers-color-scheme: dark) {" > $@
pygmentize -S "$(shell cat pygments_theme_dark.txt)" -f html -a .codehilite >> $@
echo "}" >> $@
echo "@media (prefers-color-scheme: light) {" >> $@
pygmentize -S "$(shell cat pygments_theme_light.txt)" -f html -a .codehilite >> $@
echo "}" >> $@