aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGlenn Morris2009-07-09 03:03:53 +0000
committerGlenn Morris2009-07-09 03:03:53 +0000
commitb5776ecfb6cd90f2a0982a3732904c5081ee666a (patch)
tree39225affadac24b82efb7ab1526689f087c64baf
parente45e90b30644c691fa2d5fcf772f28f8f19e0167 (diff)
downloademacs-b5776ecfb6cd90f2a0982a3732904c5081ee666a.tar.gz
emacs-b5776ecfb6cd90f2a0982a3732904c5081ee666a.zip
(texinfodir): New, with location of texinfo.tex.
(tex): Add texinfodir to TEXINPUTS. (elisp1med-init, elisp2med-init): Use texinfodir.
-rw-r--r--doc/lispref/two-volume.make11
1 files changed, 5 insertions, 6 deletions
diff --git a/doc/lispref/two-volume.make b/doc/lispref/two-volume.make
index 40ef4f42c00..ca13397b306 100644
--- a/doc/lispref/two-volume.make
+++ b/doc/lispref/two-volume.make
@@ -5,7 +5,9 @@
5# colors, spurious warnings about names being referenced but not 5# colors, spurious warnings about names being referenced but not
6# existing, etc., dvips | ps2pdf doesn't preserve the page size. 6# existing, etc., dvips | ps2pdf doesn't preserve the page size.
7# Instead of creating a special dvips config file, put up with the warnings. 7# Instead of creating a special dvips config file, put up with the warnings.
8tex = pdftex -interaction=nonstopmode 8texinfodir=../misc
9
10tex = TEXINPUTS=".:$(texinfodir):${TEXINPUTS}" pdftex -interaction=nonstopmode
9 11
10all: vol1.pdf vol2.pdf 12all: vol1.pdf vol2.pdf
11 13
@@ -61,8 +63,6 @@ elisp1med-aux-vol-added: elisp1med-init
61# 63#
62elisp2med-aux-vol-added: elisp2med-init 64elisp2med-aux-vol-added: elisp2med-init
63 sed 's/-pg}{\(.*\)}$$/-pg}{\1, vol.@tie2}/' elisp2med-aux >$@ 65 sed 's/-pg}{\(.*\)}$$/-pg}{\1, vol.@tie2}/' elisp2med-aux >$@
64
65
66 66
67# intermediate index (fns) file. 67# intermediate index (fns) file.
68# 68#
@@ -99,7 +99,7 @@ elisp2med-fn-vol-added: elisp2med-init
99# 99#
100# So, we start all over again, from these fns/aux/toc files. 100# So, we start all over again, from these fns/aux/toc files.
101# 101#
102elisp1med-init: elisp1-fns-ready elisp1-aux-ready elisp1init-toc-ready texinfo.tex 102elisp1med-init: elisp1-fns-ready elisp1-aux-ready elisp1init-toc-ready $(texinfodir)/texinfo.tex
103 @echo -e "\f Intermediate TeX run for volume 1..." 103 @echo -e "\f Intermediate TeX run for volume 1..."
104 cp elisp1init-toc-ready elisp1-toc-ready.toc 104 cp elisp1init-toc-ready elisp1-toc-ready.toc
105 cp elisp1-fns-ready vol1.fns 105 cp elisp1-fns-ready vol1.fns
@@ -109,7 +109,7 @@ elisp1med-init: elisp1-fns-ready elisp1-aux-ready elisp1init-toc-ready texinfo.t
109 mv vol1.aux elisp1med-aux 109 mv vol1.aux elisp1med-aux
110 mv vol1.toc elisp1med-toc 110 mv vol1.toc elisp1med-toc
111# 111#
112elisp2med-init: elisp2-fns-ready elisp2-aux-ready elisp2init-toc-ready texinfo.tex 112elisp2med-init: elisp2-fns-ready elisp2-aux-ready elisp2init-toc-ready $(texinfodir)/texinfo.tex
113 @echo "Final TeX run for volume 2..." 113 @echo "Final TeX run for volume 2..."
114 cp elisp2init-toc-ready elisp2-toc-ready.toc 114 cp elisp2init-toc-ready elisp2-toc-ready.toc
115 cp elisp2-fns-ready vol2.fns 115 cp elisp2-fns-ready vol2.fns
@@ -156,7 +156,6 @@ elisp1-aux-vol-added: elisp1-init
156# 156#
157elisp2-aux-vol-added: elisp2-init 157elisp2-aux-vol-added: elisp2-init
158 sed 's/-pg}{\(.*\)}$$/-pg}{\1, vol.@tie2}/' elisp2-aux >$@ 158 sed 's/-pg}{\(.*\)}$$/-pg}{\1, vol.@tie2}/' elisp2-aux >$@
159
160 159
161# initial index (fns) file. 160# initial index (fns) file.
162# 161#