Mercurial > emacs
annotate lispref/Makefile.in @ 24185:c8a68d6bcfa6
(calendar-read-mayan-haab-date)
(calendar-read-mayan-tzolkin-date): Use assoc-ignore-case and do not
capitalize when matching month and day names.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Tue, 26 Jan 1999 01:26:54 +0000 |
parents | d2f7ed631ea7 |
children | fed6ebbe8644 |
rev | line source |
---|---|
6558 | 1 # Makefile for the GNU Emacs Lisp Reference Manual. |
2 # | |
3 # 11 August 1990 | |
4 | |
5 # Redefine `TEX' if `tex' does not invoke plain TeX. For example: | |
6 # TEX=platex | |
7 | |
8 TEX=tex | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
9 MAKE=make |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
10 SHELL=/bin/sh |
22456
b7bf9b05f494
(INSTALL_INFO): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22014
diff
changeset
|
11 INSTALL_INFO = install-info |
6558 | 12 |
13 # Where the TeX macros are kept: | |
14 texmacrodir = /usr/local/lib/tex/macros | |
15 | |
23150 | 16 # Standard configure variables. |
17 prefix = @prefix@ | |
18 infodir = @infodir@ | |
6558 | 19 |
20 # The name of the manual: | |
21 | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
22 VERSION=2.5 |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
23 manual = elisp-manual-20-$(VERSION) |
6558 | 24 |
25 # Uncomment this line for permuted index. | |
26 # permuted_index = 1 | |
27 | |
28 # List of all the texinfo files in the manual: | |
29 | |
30 srcs = elisp.texi back.texi \ | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
31 abbrevs.texi advice.texi anti.texi backups.texi locals.texi buffers.texi \ |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
32 calendar.texi commands.texi compile.texi control.texi customize.texi \ |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
33 debugging.texi display.texi edebug.texi errors.texi eval.texi files.texi \ |
6558 | 34 frames.texi functions.texi help.texi hooks.texi \ |
35 internals.texi intro.texi keymaps.texi lists.texi \ | |
36 loading.texi macros.texi maps.texi markers.texi \ | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
37 minibuf.texi modes.texi nonascii.texi numbers.texi objects.texi \ |
6558 | 38 os.texi positions.texi processes.texi searching.texi \ |
39 sequences.texi streams.texi strings.texi symbols.texi \ | |
40 syntax.texi text.texi tips.texi variables.texi \ | |
41 windows.texi \ | |
42 index.unperm index.perm | |
43 | |
44 .PHONY: elisp.dvi clean | |
45 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
46 # The info file is named `elisp'. |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
47 |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
48 elisp: $(srcs) index.texi |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
49 rm -f elisp-* |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
50 makeinfo elisp.texi |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
51 |
21913
e9cc81bc8d9a
(elisp.dvi): Don't depend on texindex or on elisp.tps.
Richard M. Stallman <rms@gnu.org>
parents:
21644
diff
changeset
|
52 elisp.dvi: $(srcs) index.texi |
6558 | 53 # Avoid losing old contents of aux file entirely. |
54 -mv elisp.aux elisp.oaux | |
55 # First shot to define xrefs: | |
56 $(TEX) elisp.texi | |
57 if [ a${permuted_index} != a ]; \ | |
58 then \ | |
59 ./permute-index; \ | |
22014
9c5897743b4f
(elisp.dvi): Add missing backslash.
Richard M. Stallman <rms@gnu.org>
parents:
21913
diff
changeset
|
60 mv permuted.fns elisp.fns; \ |
21913
e9cc81bc8d9a
(elisp.dvi): Don't depend on texindex or on elisp.tps.
Richard M. Stallman <rms@gnu.org>
parents:
21644
diff
changeset
|
61 texindex elisp.tp; \ |
6558 | 62 else \ |
21913
e9cc81bc8d9a
(elisp.dvi): Don't depend on texindex or on elisp.tps.
Richard M. Stallman <rms@gnu.org>
parents:
21644
diff
changeset
|
63 texindex elisp.??; \ |
6558 | 64 fi |
65 $(TEX) elisp.texi | |
66 | |
67 index.texi: | |
68 if [ a${permuted_index} != a ]; \ | |
69 then \ | |
70 ln -s index.perm index.texi; \ | |
71 else \ | |
72 ln -s index.unperm index.texi; \ | |
73 fi | |
74 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
75 install: elisp |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
76 ./mkinstalldirs $(infodir) |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
77 cp elisp elisp-* $(infodir) |
22456
b7bf9b05f494
(INSTALL_INFO): New variable.
Richard M. Stallman <rms@gnu.org>
parents:
22014
diff
changeset
|
78 ${INSTALL_INFO} --dir-file=${infodir}/dir --info-file=${infodir}/elisp |
6558 | 79 |
80 installall: install | |
81 install -c texinfo.tex $(texmacrodir) | |
82 | |
83 clean: | |
84 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ | |
85 *.vr *.vrs *.pg *.pgs *.ky *.kys | |
86 rm -f make.out core | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
87 rm -f index.texi |
6558 | 88 |
12317
6236bdeec18d
(VERSION): Update version number.
Richard M. Stallman <rms@gnu.org>
parents:
12112
diff
changeset
|
89 maintainer-clean: clean |
12112 | 90 rm -f elisp elisp-* |
91 | |
6558 | 92 dist: |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
93 -rm -rf temp |
6558 | 94 -mkdir temp |
95 -mkdir temp/$(manual) | |
23150 | 96 -ln README configure.in configure Makefile.in permute-index $(srcs) \ |
97 texinfo.tex elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] \ | |
98 temp/$(manual) | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
99 -(cd temp/$(manual); rm -f mkinstalldirs) |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
100 cp mkinstalldirs temp/$(manual) |
6558 | 101 (cd temp/$(manual); rm -f *~) |
102 (cd temp; tar chf - $(manual)) | gzip > $(manual).tar.gz | |
103 -rm -rf temp |