Mercurial > emacs
annotate etc/Makefile @ 10661:32beb7b6dbf7
Changes to support filenames as tags too and provided
a drop-in replacement for list-tags.
(find-tag-noselect): Recognize filenames as valid tags too.
(find-tag-file-order): New variable holds function to check for match
for a file name used as a tag.
(last-tag-file): New variable; stores the filename looked for via
find-tag family of functions.
(find-tag-in-order): If the tag is a file name, position at file beg.
(etags-recognize-tags-table): Added new var find-tag-file-order to
tags-table-format variables. Added tag-filename-match-p to the
list for find-tag-tag-order.
(tag-filename-match-p): New function.
(list-tags): Rewritten for speed.
(tags-list-functions-in-file): New subroutine for list-tags.
(tags-locate-file-in-tags-table): New function locates a
file in `tags-table-list'.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sun, 05 Feb 1995 00:25:16 +0000 |
parents | 0c5b5d89288e |
children | 4baa1bd953d8 |
rev | line source |
---|---|
2260 | 1 DESTDIR= |
2 LIBDIR=/usr/local/lib | |
3 BINDIR=/usr/local/bin | |
4 MANDIR=/usr/man/man1 | |
5 MANEXT=1 | |
6 | |
7 all: | |
8 | |
6996 | 9 mostlyclean: |
3752 | 10 -rm -f core |
2260 | 11 |
6996 | 12 clean distclean realclean: |
3752 | 13 -rm -f DOC* core |
2260 | 14 |
15 SOURCES = [0-9A-QS-Z]* README *.[ch16] emacs.* etags.* ledit.l ms-* \ | |
16 news.texi rc2log refcard.tex spook-lines termcap.* ulimit.hack \ | |
17 vcdiff vipcard.tex xmouse.doc | |
18 | |
19 unlock: | |
20 chmod u+w $(SOURCES) | |
21 | |
22 relock: | |
23 chmod u-w $(SOURCES) | |
10053 | 24 |
25 # ${etcdir}/e/eterm is used by ../lisp/term.el. | |
26 # TERMINFO systems use terminfo files compiled by the Terminfo Compiler (tic). | |
27 # These files are binary, and depend on the version of tic, but they seem | |
28 # to be system-independent and backwardly compatible. | |
29 # So there should be no need to recompile the distributed binary version. | |
30 TIC=tic | |
31 e/eterm: e/eterm.ti | |
32 TERMINFO=`pwd`; export TERMINFO; $(TIC) e/eterm.ti | |
33 |