branch: master
commit 196b4ea86f979dd6fa4a96299b35c370d026fc69
Author: Oleh Krehel <[email protected]>
Commit: Oleh Krehel <[email protected]>
doc/Makefile: Add target to install the info pages
Re #697
---
doc/Makefile | 9 +++++++++
1 file changed, 9 insertions(+)
diff --git a/doc/Makefile b/doc/Makefile
index e104037..3b0f4a6 100644
--- a/doc/Makefile
+++ b/doc/Makefile
@@ -1,2 +1,11 @@
+INFO_INSTALL_DIR="${HOME}/git/gnu-elpa/packages/ivy"
+
ivy.texi: ivy.org
emacs -batch -l ivy-ox.el -l scripts.el --eval "(org-to-texi
\"ivy.org\")"
+
+ivy.info: ivy.texi
+ makeinfo --no-split $^
+
+install: ivy.info
+ cp $^ $(INFO_INSTALL_DIR)
+ install-info --info-dir=$(INFO_INSTALL_DIR) --info-file=$^