- Notifications
You must be signed in to change notification settings - Fork 45
Expand file tree
/
Copy pathMakefile
More file actions
Latest commit
18 lines (12 loc) · 327 Bytes
/
Copy pathMakefile
File metadata and controls
18 lines (12 loc) · 327 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
### Makefile ---
## Author: shell@dskvmdeb.lan
## Version: $Id: Makefile,v 0.0 2016/09/03 19:28:02 shell Exp $
## Keywords:
## X-URL:
all: build
%.slides.html: %.ipynb
jupyter-nbconvert --to slides $<
build: 101-Python入门.slides.html 102-Python进阶.slides.html
clean:
rm -f *.slides.html
### Makefile ends here