forked from bunyk/bunyk.github.com
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
39 lines (28 loc) · 783 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
python = python3.5
all: html love
love:
$(python) -m http.server 8080
test:
$(python) test.py
load:
mkdir -p external_assets
$(python) requirejs.py
html: index_html deutsch_html resume_html hypercube_html canvas_html fifteen_html
index_html:
$(python) render_mako.py index.mako
$(python) render_mako.py test.mako
deutsch_html:
$(python) render_mako.py deutsch/index.mako
resume_html:
$(python) render_mako.py resume/index.mako
hypercube_html:
$(python) render_mako.py hypercube/index.mako
canvas_html:
$(python) render_mako.py canvas/index.mako
fifteen_html:
$(python) render_mako.py fifteen/index.mako
dodecahedron_html:
$(python) render_mako.py dodecahedron/index.mako
calendar_html:
$(python) render_mako.py calendar/index.mako
d: calendar_html love