Mercurial > emacs
annotate lispref/Makefile.in @ 19860:c17fd465ea95 libc-970911 libc-970912 libc-970913 libc-970914 libc-970915 libc-970916 libc-970917 libc-970918 libc-970919 libc-970920 libc-970921 libc-970922 libc-970923 libc-970924 libc-970925 libc-970926 libc-970927 libc-970928 libc-970929 libc-970930 libc-971001 libc-971018 libc-971019 libc-971020 libc-971021 libc-971022 libc-971023 libc-971024 libc-971025 libc-971026 libc-971027 libc-971028 libc-971029 libc-971030 libc-971031 libc-971101 libc-971102 libc-971103 libc-971104 libc-971105 libc-971106 libc-971107 libc-971108 libc-971109 libc-971110 libc-971111 libc-971112 libc-971113 libc-971114 libc-971115 libc-971116 libc-971117 libc-971118 libc-971120 libc-971121 libc-971122 libc-971123 libc-971124 libc-971125 libc-971126 libc-971127 libc-971128 libc-971129 libc-971130 libc-971201 libc-971203 libc-971204 libc-971205 libc-971206 libc-971207 libc-971208 libc-971209 libc-971210 libc-971211 libc-971212 libc-971213 libc-971214 libc-971217 libc-971218 libc-971219 libc-971220 libc-971221 libc-971222 libc-971223 libc-971224 libc-971225 libc-971226 libc-971227 libc-971228 libc-971229 libc-971230 libc-971231 libc-980103 libc-980104 libc-980105 libc-980106 libc-980107 libc-980108 libc-980109 libc-980110 libc-980111 libc-980112 libc-980114 libc-980115 libc-980116 libc-980117 libc-980118 libc-980119 libc-980120 libc-980121 libc-980122 libc-980123 libc-980124 libc-980125 libc-980126 libc-980127 libc-980128
typos.
author | Jeff Law <law@redhat.com> |
---|---|
date | Wed, 10 Sep 1997 21:16:20 +0000 |
parents | c9ce47315e38 |
children | dd9d371a4489 |
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 |
6558 | 10 |
11 # Where the TeX macros are kept: | |
12 texmacrodir = /usr/local/lib/tex/macros | |
13 | |
14 # Where the Emacs hierarchy lives ($EMACS in the INSTALL document for Emacs.) | |
15 # For example: | |
16 # emacslibdir = /usr/local/gnu/lib/emacs | |
17 | |
18 # Directory where Emacs is installed, by default: | |
19 emacslibdir = /usr/local/emacs | |
20 | |
21 # Unless you have a nonstandard Emacs installation, these shouldn't have to | |
22 # be changed. | |
23 prefix = /usr/local | |
24 infodir = ${prefix}/info | |
25 | |
26 # The name of the manual: | |
27 | |
16703
c9ce47315e38
Update VERSION to 2.4.2.
Richard M. Stallman <rms@gnu.org>
parents:
14936
diff
changeset
|
28 VERSION=2.4.2 |
6558 | 29 manual = elisp-manual-19-$(VERSION) |
30 | |
31 # Uncomment this line for permuted index. | |
32 # permuted_index = 1 | |
33 | |
34 # List of all the texinfo files in the manual: | |
35 | |
36 srcs = elisp.texi back.texi \ | |
37 abbrevs.texi anti.texi backups.texi locals.texi buffers.texi \ | |
38 calendar.texi commands.texi compile.texi control.texi debugging.texi \ | |
39 display.texi edebug.texi errors.texi eval.texi files.texi \ | |
40 frames.texi functions.texi help.texi hooks.texi \ | |
41 internals.texi intro.texi keymaps.texi lists.texi \ | |
42 loading.texi macros.texi maps.texi markers.texi \ | |
43 minibuf.texi modes.texi numbers.texi objects.texi \ | |
44 os.texi positions.texi processes.texi searching.texi \ | |
45 sequences.texi streams.texi strings.texi symbols.texi \ | |
46 syntax.texi text.texi tips.texi variables.texi \ | |
47 windows.texi \ | |
48 index.unperm index.perm | |
49 | |
50 .PHONY: elisp.dvi clean | |
51 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
52 # The info file is named `elisp'. |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
53 # We depend on makeinfo.c rather than makeinfo -- there's no need to rebuild |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
54 # everything just because makeinfo isn't part of the distribution. |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
55 |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
56 elisp: $(srcs) index.texi makeinfo.c |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
57 $(MAKE) makeinfo |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
58 rm -f elisp-* |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
59 ./makeinfo elisp.texi |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
60 |
6558 | 61 elisp.dvi: $(srcs) index.texi texindex |
62 # Avoid losing old contents of aux file entirely. | |
63 -mv elisp.aux elisp.oaux | |
64 # First shot to define xrefs: | |
65 $(TEX) elisp.texi | |
66 if [ a${permuted_index} != a ]; \ | |
67 then \ | |
68 ./permute-index; \ | |
69 mv permuted.fns elisp.fns; \ | |
70 else \ | |
71 ./texindex elisp.??; \ | |
72 fi | |
73 $(TEX) elisp.texi | |
74 | |
75 index.texi: | |
76 if [ a${permuted_index} != a ]; \ | |
77 then \ | |
78 ln -s index.perm index.texi; \ | |
79 else \ | |
80 ln -s index.unperm index.texi; \ | |
81 fi | |
82 | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
83 install: elisp |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
84 ./mkinstalldirs $(infodir) |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
85 cp elisp elisp-* $(infodir) |
6558 | 86 @echo also add the line for elisp to $(infodir)/dir. |
87 | |
88 installall: install | |
89 install -c texinfo.tex $(texmacrodir) | |
90 | |
91 clean: | |
92 rm -f *.toc *.aux *.log *.cp *.cps *.fn *.fns *.tp *.tps \ | |
93 *.vr *.vrs *.pg *.pgs *.ky *.kys | |
94 rm -f make.out core | |
95 rm -f makeinfo.o makeinfo getopt.o getopt1.o | |
96 rm -f texindex.o texindex index.texi | |
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: |
102 -mkdir temp | |
103 -mkdir temp/$(manual) | |
104 -ln README Makefile permute-index $(srcs) \ | |
105 texinfo.tex getopt.c getopt1.c getopt.h \ | |
106 elisp.dvi elisp.aux elisp.??s elisp elisp-[0-9] elisp-[0-9][0-9] temp/$(manual) | |
14936
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
107 -(cd temp/$(manual); rm -f texindex.c makeinfo.c mkinstalldirs) |
ad2ca475c6d6
(elisp): Make this be the default target.
Karl Heuer <kwzh@gnu.org>
parents:
12317
diff
changeset
|
108 cp texindex.c makeinfo.c mkinstalldirs temp/$(manual) |
6558 | 109 (cd temp/$(manual); rm -f *~) |
110 (cd temp; tar chf - $(manual)) | gzip > $(manual).tar.gz | |
111 -rm -rf temp | |
112 | |
113 # Make two programs used in generating output from texinfo. | |
114 | |
115 CFLAGS = -g | |
116 | |
117 texindex: texindex.o | |
118 $(CC) -o $@ $(LDFLAGS) $(CFLAGS) $? | |
119 texindex.o: texindex.c | |
120 | |
121 MAKEINFO_MAJOR = 1 | |
122 MAKEINFO_MINOR = 0 | |
123 MAKEINFO_FLAGS = -DMAKEINFO_MAJOR=$(MAKEINFO_MAJOR) -DMAKEINFO_MINOR=$(MAKEINFO_MINOR) | |
124 | |
125 makeinfo: makeinfo.o getopt.o getopt1.o | |
126 $(CC) $(LDFLAGS) -o makeinfo makeinfo.o getopt.o getopt1.o | |
127 | |
128 makeinfo.o: makeinfo.c | |
129 $(CC) -c $(CFLAGS) $(MAKEINFO_FLAGS) makeinfo.c |