Files
eulerbooks/Makefile
T

15 lines
219 B
Makefile
Raw Normal View History

2025-03-24 00:06:46 -04:00
.PHONY: all clean
2025-04-10 22:36:31 -04:00
HTMLS = $(patsubst %.ipynb,html/%.html,$(wildcard *.ipynb))
2025-03-24 00:06:46 -04:00
all: $(HTMLS)
clean:
rm -r html
html/%.html: %.ipynb | html
jupyter nbconvert --to html $< --output $@ --execute
html:
mkdir -p html