From 7b84546419ddbfc60ed2161f269aa75934330cfe Mon Sep 17 00:00:00 2001 From: Christophe Rhodes Date: Fri, 1 Oct 2010 19:20:07 +0100 Subject: [PATCH] convenience Makefile for generating html from org files --- Makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 Makefile diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..fe09927 --- /dev/null +++ b/Makefile @@ -0,0 +1,14 @@ +WEBFILES=README.html BUGS.html TODO.html + +web: $(WEBFILES) + +README.html: README + emacs --batch --visit README --eval '(org-export-as-html nil)' + +%.html: %.org + emacs --batch --visit $^ --eval '(org-export-as-html nil)' + +clean: + -rm $(WEBFILES) + +.PHONY: web clean -- 2.30.2