Files
Thun/docs/Makefile
T
Simon Forman 81919c4bbe Make cannot deal with spaces in filenames.
Is make wrong, or is it your filename?
2018-06-06 12:57:12 -07:00

19 lines
308 B
Makefile

#docs := $(wildcard *.ipynb)
#docs_html := $(patsubst %.ipynb,%.html,$(docs))
.PHONY: poop
poop: *.ipynb
make "$(patsubst %.ipynb,%.html,$<)"
%.html : %.ipynb
python -m nbconvert --to html $<
%.md : %.ipynb
python -m nbconvert --to markdown $<
%.rst : %.ipynb
python -m nbconvert --to rst $<