blog/Makefile

14 lines
416 B
Makefile
Raw Normal View History

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 "}" >> $@
2025-02-16 16:24:38 -05:00
.PHONY: all
all:
python3 ./main.py
2025-04-29 16:05:09 -04:00