12345678910111213141516171819202122232425262728293031 |
- all: list.md list.texi list.html
- list.md list.texi list.html: .exported
- .exported: list.org
- HOME=$$(dirname $$(realpath "$<")) \
- emacs \
- --quick \
- --batch \
- "$<" \
- --exec "(require 'ox-md)" \
- --funcall org-md-export-to-markdown \
- --funcall org-html-export-to-html \
- --funcall org-texinfo-export-to-texinfo \
- --funcall kill-emacs
|