(cvs-status-entry-leader-re): Minor fix.
[emacs.git] / lispref / Makefile.in
blob182b8f05cebd9df7e6b0ea770c16a81c7afdfc80
1 # Makefile for the GNU Emacs Lisp Reference Manual.
3 # 11 August 1990
5 # Redefine `TEX' if `tex' does not invoke plain TeX. For example:
6 # TEX=platex
8 TEX=tex
9 MAKE=make
10 SHELL=/bin/sh
11 INSTALL_INFO = install-info
12 MAKEINFO=makeinfo
14 # Where the TeX macros are kept:
15 texmacrodir = /usr/local/lib/tex/macros
17 # Standard configure variables.
18 prefix = @prefix@
19 infodir = @infodir@
21 # The name of the manual:
23 VERSION=2.6
24 manual = elisp-manual-20-$(VERSION)
26 # Uncomment this line for permuted index.
27 # permuted_index = 1
29 # List of all the texinfo files in the manual:
31 srcs = elisp.texi back.texi \
32 abbrevs.texi advice.texi anti.texi backups.texi locals.texi buffers.texi \
33 calendar.texi commands.texi compile.texi control.texi customize.texi \
34 debugging.texi display.texi edebug.texi errors.texi eval.texi files.texi \
35 frames.texi functions.texi hash.texi help.texi hooks.texi \
36 internals.texi intro.texi keymaps.texi lists.texi \
37 loading.texi macros.texi maps.texi markers.texi \
38 minibuf.texi modes.texi nonascii.texi numbers.texi objects.texi \
39 os.texi positions.texi processes.texi searching.texi \
40 sequences.texi streams.texi strings.texi symbols.texi \
41 syntax.texi text.texi tips.texi variables.texi \
42 windows.texi \
43 index.unperm index.perm
45 .PHONY: elisp.dvi clean
47 # The info file is named `elisp'.
49 elisp: $(srcs) index.texi
50 rm -f elisp-*
51 $(MAKEINFO) elisp.texi
53 elisp.dvi: $(srcs) index.texi
54 # Avoid losing old contents of aux file entirely.
55 -mv elisp.aux elisp.oaux
56 # First shot to define xrefs:
57 $(TEX) elisp.texi
58 if [ a${permuted_index} != a ]; \
59 then \
60 ./permute-index; \
61 mv permuted.fns elisp.fns; \
62 texindex elisp.tp; \
63 else \
64 texindex elisp.??; \
66 $(TEX) elisp.texi
68 index.texi:
69 if [ a${permuted_index} != a ]; \
70 then \
71 ln -s index.perm index.texi || ln index.perm index.texi; \
72 else \
73 ln -s index.unperm index.texi || ln index.unperm index.texi; \
76 install: elisp
77 ./mkinstalldirs $(infodir)
78 cp elisp elisp-* $(infodir)
79 ${INSTALL_INFO} --dir-file=${infodir}/dir --info-file=${infodir}/elisp
81 installall: install
82 install -c texinfo.tex $(texmacrodir)
84 clean:
85 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
86 *.vr *.vrs *.pg *.pgs *.ky *.kys
87 rm -f make.out core
88 rm -f index.texi
90 maintainer-clean: clean
91 rm -f elisp elisp-*
93 dist:
94 -rm -rf temp
95 -mkdir temp
96 -mkdir temp/$(manual)
97 -ln README configure.in configure Makefile.in permute-index $(srcs) \
98 texinfo.tex elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] \
99 temp/$(manual)
100 -(cd temp/$(manual); rm -f mkinstalldirs)
101 cp mkinstalldirs temp/$(manual)
102 (cd temp/$(manual); rm -f *~)
103 (cd temp; tar chf - $(manual)) | gzip > $(manual).tar.gz
104 -rm -rf temp