aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEivind Fonn <evfonn@gmail.com>2019-12-19 09:17:12 +0100
committerEivind Fonn <evfonn@gmail.com>2019-12-19 14:52:36 +0100
commitfc0e25d812e3d0f65dd06059f4481cce97a2674c (patch)
treea4995181fc2a81e1ee679d52a16fa1f0565878f1 /Makefile
parentbd1be56e4a8e12d454358b6366f9c94eb257b1c6 (diff)
Update root makefile targets
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile12
1 files changed, 5 insertions, 7 deletions
diff --git a/Makefile b/Makefile
index 7e3e07c..9551885 100644
--- a/Makefile
+++ b/Makefile
@@ -10,7 +10,7 @@ LIBS = -L lib
ELCFILES = $(FILES:.el=.elc)
-.PHONY: all compile compile-batch info pdf clean tests test emacs term terminal profiler indent elpa version
+.PHONY: all compile compile-batch docstrings doc clean tests test emacs term terminal profiler indent elpa version
# Byte-compile Evil.
all: compile
@@ -34,13 +34,11 @@ compile-batch: clean
$(EMACS) --batch -Q -L . $(LIBS) -f batch-byte-compile ${FILES}
# Documentation.
-doc: info pdf
+docstrings:
+ @$(EMACS) --script scripts/evil-extract-docstrings
-info: clean
- @$(MAKE) -C doc evil.info
-
-pdf: clean
- @$(MAKE) -C doc evil.pdf
+doc: docstrings
+ @$(MAKE) -C doc texinfo
# Delete byte-compiled files etc.
clean: