Mercurial > emacs
annotate lispref/Makefile.in @ 21883:93c99b3a57f1
(w32-drag-n-drop-debug, w32-drag-n-drop)
(w32-drag-n-drop-other-frame): New functions.
Bind them to the drag-n-drop events.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 01 May 1998 04:24:43 +0000 |
parents | dd9d371a4489 |
children | e9cc81bc8d9a |
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 |
6558 | 11 |
12 # Where the TeX macros are kept: | |
13 texmacrodir = /usr/local/lib/tex/macros | |
14 | |
15 # Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.) | |
16 # For example: | |
17 # emacslibdir = /usr/local/gnu/lib/emacs | |
18 | |
19 # Directory where Emacs is installed, by default: | |
20 emacslibdir = /usr/local/emacs | |
21 | |
22 # Unless you have a nonstandard Emacs installation, these shouldn't have to | |
23 # be changed. | |
24 prefix = /usr/local | |
25 infodir = ${prefix}/info | |
26 | |
27 # The name of the manual: | |
28 | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
29 VERSION=2.5 |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
30 manual = elisp-manual-20-$(VERSION) |
6558 | 31 |
32 # Uncomment this line for permuted index. | |
33 # permuted_index = 1 | |
34 | |
35 # List of all the texinfo files in the manual: | |
36 | |
37 srcs = elisp.texi back.texi \ | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
38 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
|
39 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
|
40 debugging.texi display.texi edebug.texi errors.texi eval.texi files.texi \ |
6558 | 41 frames.texi functions.texi help.texi hooks.texi \ |
42 internals.texi intro.texi keymaps.texi lists.texi \ | |
43 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
|
44 minibuf.texi modes.texi nonascii.texi numbers.texi objects.texi \ |
6558 | 45 os.texi positions.texi processes.texi searching.texi \ |
46 sequences.texi streams.texi strings.texi symbols.texi \ | |
47 syntax.texi text.texi tips.texi variables.texi \ | |
48 windows.texi \ | |
49 index.unperm index.perm | |
50 | |
51 .PHONY: elisp.dvi clean | |
52 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
53 # The info file is named `elisp'. |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
54 |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
55 elisp: $(srcs) index.texi |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
56 rm -f elisp-* |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
57 makeinfo elisp.texi |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
58 |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
59 elisp.dvi: $(srcs) index.texi elisp.tps texindex |
6558 | 60 # Avoid losing old contents of aux file entirely. |
61 -mv elisp.aux elisp.oaux | |
62 # First shot to define xrefs: | |
63 $(TEX) elisp.texi | |
64 if [ a${permuted_index} != a ]; \ | |
65 then \ | |
66 ./permute-index; \ | |
67 mv permuted.fns elisp.fns; \ | |
68 else \ | |
69 ./texindex elisp.??; \ | |
70 fi | |
71 $(TEX) elisp.texi | |
72 | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
73 elisp.tps: texindex |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
74 ./texindex elisp.tp |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
75 |
6558 | 76 index.texi: |
77 if [ a${permuted_index} != a ]; \ | |
78 then \ | |
79 ln -s index.perm index.texi; \ | |
80 else \ | |
81 ln -s index.unperm index.texi; \ | |
82 fi | |
83 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
84 install: elisp |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
85 ./mkinstalldirs $(infodir) |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
86 cp elisp elisp-* $(infodir) |
6558 | 87 @echo also add the line for elisp to $(infodir)/dir. |
88 | |
89 installall: install | |
90 install -c texinfo.tex $(texmacrodir) | |
91 | |
92 clean: | |
93 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ | |
94 *.vr *.vrs *.pg *.pgs *.ky *.kys | |
95 rm -f make.out core | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
96 rm -f index.texi |
6558 | 97 |
12317
6236bdeec18d
(VERSION): Update version number.
Richard M. Stallman <rms@gnu.org>
parents:
12112
diff
changeset
|
98 maintainer-clean: clean |
12112 | 99 rm -f elisp elisp-* |
100 | |
6558 | 101 dist: |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
102 -rm -rf temp |
6558 | 103 -mkdir temp |
104 -mkdir temp/$(manual) | |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
105 -ln README Makefile permute-index $(srcs) texinfo.tex \ |
6558 | 106 elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] temp/$(manual) |
21644
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
107 -(cd temp/$(manual); rm -f mkinstalldirs) |
dd9d371a4489
(elisp): Don't try to make makeinfo.
Richard M. Stallman <rms@gnu.org>
parents:
16703
diff
changeset
|
108 cp mkinstalldirs temp/$(manual) |
6558 | 109 (cd temp/$(manual); rm -f *~) |
110 (cd temp; tar chf - $(manual)) | gzip > $(manual).tar.gz | |
111 -rm -rf temp |