blob: 5eed7118851081bf96e6af3eb23c0dab51015f22 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
HTTP_PORT = 8000
HTTP_IF = -b ::
PYTHON3 = python3
ORGC = emacs -Q --batch --eval "(progn (require 'ob-tangle) (dolist (file command-line-args-left) (with-current-buffer (find-file-noselect file) (org-babel-tangle))))"
index.html: js-ver.org
$(ORGC) $<
run: index.html
$(PYTHON3) -m http.server $(HTTP_IF) $(HTTP_PORT)
|