blog/Makefile
Collin Lefeber 2246b00767
All checks were successful
/ build (push) Successful in 7s
style a blog update
2025-04-29 16:48:57 -04:00

11 lines
429 B
Makefile

.PHONY: all
all: public/pyg.css
python3 ./main.py
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 "}" >> $@