diff options
author | Petteri Hintsanen <petterih@iki.fi> | 2021-03-08 00:25:53 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2021-03-11 16:42:57 +0200 |
commit | 62610da8c44ae864d21a1f1e12bd4444e688eaf6 (patch) | |
tree | e02b5f2085c8b7b22a487e2b09db96a29e4ae0c6 /doc/misc/Makefile.in | |
parent | 222d70333f2cfeefa6c3430fc54714bd122cc779 (diff) | |
download | emacs-62610da8c44ae864d21a1f1e12bd4444e688eaf6.tar.gz |
Make tags tables from Texinfo sources
* doc/misc/Makefile.in (ETAGS, texifiles): New variables.
(TAGS, tags, FORCE, ${ETAGS}): New targets.
(bootstrap-clean maintainer-clean): Delete TAGS.
* doc/lispref/Makefile.in (ETAGS, texifiles): New variables.
(TAGS, tags, FORCE, ${ETAGS}): New targets.
(bootstrap-clean maintainer-clean): Delete TAGS.
* doc/lispintro/Makefile.in (ETAGS, texifiles): New variables.
(TAGS, tags, FORCE, ${ETAGS}): New targets.
(bootstrap-clean maintainer-clean): Delete TAGS.
* doc/emacs/Makefile.in (ETAGS, texifiles): New variables.
(TAGS, tags, FORCE, ${ETAGS}): New targets.
(bootstrap-clean maintainer-clean): Delete TAGS.
* Makefile.in (TAGS tags): Make tags in doc/emacs, doc/lispintro,
doc/lispref and doc/misc.
Diffstat (limited to 'doc/misc/Makefile.in')
-rw-r--r-- | doc/misc/Makefile.in | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/doc/misc/Makefile.in b/doc/misc/Makefile.in index 5130650fefe..63d4bf0337f 100644 --- a/doc/misc/Makefile.in +++ b/doc/misc/Makefile.in @@ -287,6 +287,7 @@ orgclean: rm -f ${TEXI_FROM_ORG} bootstrap-clean maintainer-clean: distclean infoclean orgclean + rm -f TAGS .PHONY: install-dvi install-html install-pdf install-ps install-doc @@ -336,4 +337,20 @@ uninstall-pdf: uninstall-doc: uninstall-dvi uninstall-html uninstall-pdf uninstall-ps +ETAGS = ../../lib-src/etags${EXEEXT} + +${ETAGS}: FORCE + $(MAKE) -C $(dir $@) $(notdir $@) + +texifiles = $(wildcard ${srcdir}/*.texi) + +TAGS: ${ETAGS} $(texifiles) + $(AM_V_GEN)${ETAGS} $(texifiles) + +tags: TAGS +.PHONY: tags + +FORCE: +.PHONY: FORCE + ### Makefile ends here |