diff options
| author | Eivind Fonn <evfonn@gmail.com> | 2019-12-19 09:17:12 +0100 |
|---|---|---|
| committer | Eivind Fonn <evfonn@gmail.com> | 2019-12-19 14:52:36 +0100 |
| commit | fc0e25d812e3d0f65dd06059f4481cce97a2674c (patch) | |
| tree | a4995181fc2a81e1ee679d52a16fa1f0565878f1 /Makefile | |
| parent | bd1be56e4a8e12d454358b6366f9c94eb257b1c6 (diff) | |
Update root makefile targets
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
@@ -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: |
