diff options
author | Richard M. Stallman <rms@gnu.org> | 1998-05-03 02:05:54 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1998-05-03 02:05:54 +0000 |
commit | 2343c8c86c947f35a3de3eca8bddb03c9ab92129 (patch) | |
tree | 8edaa4b59939ebbc023a8cdf991a9950594625af | |
parent | d99691023ec6b76b7c78a6db58ee83bd5d953f3d (diff) | |
download | emacs-2343c8c86c947f35a3de3eca8bddb03c9ab92129.tar.gz |
(elisp.dvi): Don't depend on texindex or on elisp.tps.
Run texindex without `./'. Always run texindex on elisp.tp.
(elisp.tps): Target deleted.
-rw-r--r-- | lispref/Makefile.in | 10 |
1 files changed, 4 insertions, 6 deletions
diff --git a/lispref/Makefile.in b/lispref/Makefile.in index 5047f352edf..6e42a52abbf 100644 --- a/lispref/Makefile.in +++ b/lispref/Makefile.in @@ -56,7 +56,7 @@ elisp: $(srcs) index.texi rm -f elisp-* makeinfo elisp.texi -elisp.dvi: $(srcs) index.texi elisp.tps texindex +elisp.dvi: $(srcs) index.texi # Avoid losing old contents of aux file entirely. -mv elisp.aux elisp.oaux # First shot to define xrefs: @@ -64,15 +64,13 @@ elisp.dvi: $(srcs) index.texi elisp.tps texindex if [ a${permuted_index} != a ]; \ then \ ./permute-index; \ - mv permuted.fns elisp.fns; \ + mv permuted.fns elisp.fns; + texindex elisp.tp; \ else \ - ./texindex elisp.??; \ + texindex elisp.??; \ fi $(TEX) elisp.texi -elisp.tps: texindex - ./texindex elisp.tp - index.texi: if [ a${permuted_index} != a ]; \ then \ |