Add html creation infrastructure

This commit is contained in:
2021-10-12 17:57:52 +02:00
parent bba062bcc9
commit 517c90704a
3 changed files with 45 additions and 0 deletions

View File

@@ -87,3 +87,8 @@ install:
cp -r include/* $(PREFIX)/include/
mkdir -p $(PREFIX)/lib
cp $(wildcard $(ATRIP_SHARED_LIBRARY) $(ATRIP_STATIC_LIBRARY)) $(PREFIX)/lib/
.PHONY: html
EMACS_HTML = $(EMACS) --load ./etc/emacs/html.el
html:
$(EMACS_HTML) $(ORG_MAIN) --eval "(org-html-export-to-html)"