tiramisu/docs/src/Makefile

19 lines
290 B
Makefile
Raw Normal View History

2023-12-17 21:22:52 +01:00
SRC=$(wildcard *.py)
HTMLFRAGMENT=$(addsuffix .html, $(basename $(SRC)))
.SUFFIXES:
.PHONY: all clean
all: html
# make -C ./build all
html: $(HTMLFRAGMENT)
%.html: %.py
pygmentize -f html -O full,bg=white,style=bw, -o ../en/_build/html/_modules/$@ $<
clean:
# make -C ./build clean