/ Makefile
Makefile
1  SHELL := /bin/bash
2  
3  
4  build:
5  	jupyter nbconvert --to interact notebook.ipynb
6  	mv notebook.html index.html
7  .PHONY: build