diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5eed711 --- /dev/null +++ b/Makefile @@ -0,0 +1,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) |