Mercurial > hg > xemacs-beta
annotate man/Makefile @ 5510:6b3caa55668c
Remove the LOSING_BYTECODE compile-time option, it's been off since 1997.
2011-05-20 Aidan Kehoe <kehoea@parhasard.net>
* config.h.in:
* data.c (Faref):
* fns.c (check_losing_bytecode):
* fns.c (concat):
* fns.c (Felt):
Remove the LOSING_BYTECODE compile-time option entirely. It
allowed access to the elements of a compiled function using
#'aref, and has been turned off since 1997.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Fri, 20 May 2011 12:16:42 +0100 |
parents | 3fe8358ad59a |
children | 4aa8ee813265 |
rev | line source |
---|---|
428 | 1 # Makefile for man subdirectory in XEmacs |
2 # Copyright (C) 1995 Board of Trustees, University of Illinois | |
3 # Copyright (C) 1994, 1995 Sun Microsystems. | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
4 # Copyright (C) 2005, 2010 Ben Wing. |
428 | 5 |
6 # This file is part of XEmacs. | |
7 | |
8 # XEmacs is free software; you can redistribute it and/or modify it | |
9 # under the terms of the GNU General Public License as published by the | |
10 # Free Software Foundation; either version 2, or (at your option) any | |
11 # later version. | |
12 | |
13 # XEmacs is distributed in the hope that it will be useful, but WITHOUT | |
14 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or | |
15 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License | |
16 # for more details. | |
17 | |
18 # You should have received a copy of the GNU General Public License | |
19 # along with XEmacs; see the file COPYING. If not, write to | |
20 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, | |
21 # Boston, MA 02111-1307, USA. | |
22 | |
23 SHELL = /bin/sh | |
24 MAKEINFO = makeinfo | |
25 TEXI2DVI = texi2dvi | |
4195 | 26 TEXI2HTML = texi2html |
4196 | 27 TEXI2HTML_NOSPLIT = $(TEXI2HTML) -verbose -subdir $(HTMLDIR) |
4195 | 28 TEXI2HTML_SPLIT = $(TEXI2HTML) -verbose -subdir $(HTMLDIR) -split chapter |
677 | 29 |
442 | 30 RM = rm -f |
2418 | 31 CP = cp |
428 | 32 |
33 .SUFFIXES: | |
1702 | 34 .SUFFIXES: .html .info .texi .dvi .pdf |
428 | 35 |
2427 | 36 RECURSIVE_MAKE_ARGS = $(MFLAGS) MAKEINFO='$(MAKEINFO)' TEXI2DVI='$(TEXI2DVI)' |
428 | 37 |
38 all : info | |
39 | |
40 # Ughhh! The things we do to have portable makefiles... | |
41 | |
42 INFODIR = ../info | |
677 | 43 HTMLDIR = ../html |
2418 | 44 PHOTODIR = ../etc/photos |
428 | 45 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
46 src_files1 = \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
47 $(DIR)beta.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
48 $(DIR)cl.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
49 $(DIR)emodules.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
50 $(DIR)external-widget.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
51 $(DIR)info.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
52 $(DIR)internals.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
53 $(DIR)lispref.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
54 $(DIR)new-users-guide.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
55 $(DIR)standards.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
56 $(DIR)termcap.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
57 $(DIR)texinfo.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
58 $(DIR)widget.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
59 $(DIR)xemacs.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
60 $(DIR)xemacs-faq.texi |
677 | 61 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
62 DIR:= |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
63 src_files := $(src_files1) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
64 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
65 DIR := $(INFODIR)/ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
66 info_files := $(src_files1:.texi=.info) |
428 | 67 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
68 DIR := $(HTMLDIR)/ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
69 html_files := $(src_files1:.texi=.html) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
70 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
71 dvi_files := $(src_files:.texi=.dvi) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
72 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
73 pdf_files := $(src_files:.texi=.pdf) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
74 |
1702 | 75 |
428 | 76 xemacs-srcs = \ |
77 xemacs/abbrevs.texi \ | |
78 xemacs/basic.texi \ | |
79 xemacs/buffers.texi \ | |
80 xemacs/building.texi \ | |
81 xemacs/calendar.texi \ | |
82 xemacs/cmdargs.texi \ | |
83 xemacs/custom.texi \ | |
84 xemacs/display.texi \ | |
85 xemacs/entering.texi \ | |
86 xemacs/files.texi \ | |
87 xemacs/fixit.texi \ | |
88 xemacs/frame.texi \ | |
89 xemacs/glossary.texi \ | |
90 xemacs/gnu.texi \ | |
91 xemacs/help.texi \ | |
92 xemacs/indent.texi \ | |
93 xemacs/keystrokes.texi \ | |
94 xemacs/killing.texi \ | |
95 xemacs/m-x.texi \ | |
96 xemacs/major.texi \ | |
97 xemacs/mark.texi \ | |
98 xemacs/menus.texi \ | |
99 xemacs/mini.texi \ | |
100 xemacs/misc.texi \ | |
101 xemacs/mouse.texi \ | |
102 xemacs/mule.texi \ | |
103 xemacs/new.texi \ | |
104 xemacs/packages.texi \ | |
105 xemacs/picture.texi \ | |
106 xemacs/programs.texi \ | |
107 xemacs/reading.texi \ | |
108 xemacs/regs.texi \ | |
109 xemacs/search.texi \ | |
110 xemacs/sending.texi \ | |
111 xemacs/startup.texi \ | |
112 xemacs/text.texi \ | |
113 xemacs/trouble.texi \ | |
114 xemacs/undo.texi \ | |
115 xemacs/windows.texi \ | |
116 xemacs/xemacs.texi | |
117 | |
118 lispref-srcs = \ | |
119 lispref/abbrevs.texi \ | |
120 lispref/annotations.texi \ | |
121 lispref/back.texi \ | |
122 lispref/backups.texi \ | |
123 lispref/buffers.texi \ | |
124 lispref/building.texi \ | |
125 lispref/commands.texi \ | |
126 lispref/compile.texi \ | |
127 lispref/consoles-devices.texi \ | |
128 lispref/control.texi \ | |
129 lispref/customize.texi \ | |
130 lispref/databases.texi \ | |
131 lispref/debugging.texi \ | |
132 lispref/dialog.texi \ | |
133 lispref/display.texi \ | |
134 lispref/dragndrop.texi \ | |
135 lispref/edebug-inc.texi \ | |
136 lispref/edebug.texi \ | |
137 lispref/errors.texi \ | |
138 lispref/eval.texi \ | |
139 lispref/extents.texi \ | |
140 lispref/faces.texi \ | |
141 lispref/files.texi \ | |
142 lispref/frames.texi \ | |
143 lispref/functions.texi \ | |
144 lispref/glyphs.texi \ | |
145 lispref/hash-tables.texi \ | |
146 lispref/help.texi \ | |
147 lispref/hooks.texi \ | |
148 lispref/index.texi \ | |
149 lispref/internationalization.texi \ | |
150 lispref/intro.texi \ | |
151 lispref/keymaps.texi \ | |
152 lispref/ldap.texi \ | |
153 lispref/lispref.texi \ | |
154 lispref/lists.texi \ | |
155 lispref/loading.texi \ | |
156 lispref/locals.texi \ | |
157 lispref/macros.texi \ | |
158 lispref/maps.texi \ | |
159 lispref/markers.texi \ | |
160 lispref/menus.texi \ | |
161 lispref/minibuf.texi \ | |
162 lispref/modes.texi \ | |
163 lispref/mouse.texi \ | |
164 lispref/mule.texi \ | |
165 lispref/numbers.texi \ | |
166 lispref/objects.texi \ | |
167 lispref/os.texi \ | |
693 | 168 lispref/packaging.texi \ |
428 | 169 lispref/positions.texi \ |
170 lispref/processes.texi \ | |
171 lispref/range-tables.texi \ | |
172 lispref/scrollbars.texi \ | |
173 lispref/searching.texi \ | |
174 lispref/sequences.texi \ | |
175 lispref/specifiers.texi \ | |
176 lispref/streams.texi \ | |
177 lispref/strings.texi \ | |
178 lispref/symbols.texi \ | |
179 lispref/syntax.texi \ | |
180 lispref/text.texi \ | |
181 lispref/tips.texi \ | |
182 lispref/toolbar.texi \ | |
183 lispref/tooltalk.texi \ | |
184 lispref/variables.texi \ | |
185 lispref/windows.texi \ | |
186 lispref/x-windows.texi | |
187 | |
188 internals-srcs = \ | |
189 internals/internals.texi | |
190 | |
191 new-users-guide-srcs = \ | |
192 new-users-guide/custom1.texi \ | |
193 new-users-guide/custom2.texi \ | |
194 new-users-guide/edit.texi \ | |
195 new-users-guide/enter.texi \ | |
196 new-users-guide/files.texi \ | |
197 new-users-guide/help.texi \ | |
198 new-users-guide/modes.texi \ | |
199 new-users-guide/new-users-guide.texi \ | |
200 new-users-guide/region.texi \ | |
201 new-users-guide/search.texi \ | |
202 new-users-guide/xmenu.texi | |
203 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
204 texinfo-srcs = \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
205 texinfo/fdl.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
206 texinfo/texinfo.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
207 texinfo/version.texi |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
208 |
2537 | 209 $(INFODIR)/beta.info : beta.texi |
210 $(MAKEINFO) -o $(INFODIR)/beta.info beta.texi | |
211 | |
428 | 212 $(INFODIR)/cl.info : cl.texi |
213 $(MAKEINFO) -o $(INFODIR)/cl.info cl.texi | |
214 | |
215 $(INFODIR)/custom.info : custom.texi | |
216 $(MAKEINFO) -o $(INFODIR)/custom.info custom.texi | |
217 | |
218 $(INFODIR)/emodules.info : emodules.texi | |
219 $(MAKEINFO) -o $(INFODIR)/emodules.info emodules.texi | |
220 | |
221 $(INFODIR)/external-widget.info : external-widget.texi | |
222 $(MAKEINFO) -o $(INFODIR)/external-widget.info external-widget.texi | |
223 | |
224 $(INFODIR)/info.info : info.texi | |
225 $(MAKEINFO) -o $(INFODIR)/info.info info.texi | |
226 | |
227 $(INFODIR)/standards.info : standards.texi | |
228 $(MAKEINFO) -o $(INFODIR)/standards.info standards.texi | |
229 | |
230 $(INFODIR)/term.info : term.texi | |
231 $(MAKEINFO) -o $(INFODIR)/term.info term.texi | |
232 | |
233 $(INFODIR)/termcap.info : termcap.texi | |
234 $(MAKEINFO) -o $(INFODIR)/termcap.info termcap.texi | |
235 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
236 $(INFODIR)/widget.info : widget.texi doclicense.texi |
428 | 237 $(MAKEINFO) -o $(INFODIR)/widget.info widget.texi |
238 | |
239 $(INFODIR)/xemacs-faq.info : xemacs-faq.texi | |
240 $(MAKEINFO) -o $(INFODIR)/xemacs-faq.info xemacs-faq.texi | |
241 | |
242 # Manuals with their own subdirectory | |
243 $(INFODIR)/xemacs.info : $(xemacs-srcs) | |
244 $(MAKEINFO) -P xemacs -o $(INFODIR)/xemacs.info xemacs/xemacs.texi | |
245 | |
246 $(INFODIR)/lispref.info : $(lispref-srcs) | |
247 $(MAKEINFO) -P lispref -o $(INFODIR)/lispref.info lispref/lispref.texi | |
248 | |
249 $(INFODIR)/internals.info : $(internals-srcs) | |
250 $(MAKEINFO) -P internals -o $(INFODIR)/internals.info internals/internals.texi | |
251 | |
252 $(INFODIR)/new-users-guide.info : $(new-users-guide-srcs) | |
253 $(MAKEINFO) -P new-users-guide -o $(INFODIR)/new-users-guide.info new-users-guide/new-users-guide.texi | |
254 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
255 $(INFODIR)/texinfo.info : $(texinfo-srcs) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
256 $(MAKEINFO) -P texinfo -o $(INFODIR)/texinfo.info texinfo/texinfo.texi |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
257 |
428 | 258 xemacs : $(INFODIR)/xemacs.info |
259 lispref : $(INFODIR)/lispref.info | |
260 internals : $(INFODIR)/internals.info | |
261 new-users-guide.info : $(INFODIR)/new-users-guide.info | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
262 texinfo : $(INFODIR)/texinfo.info |
428 | 263 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
264 .PHONY : xemacs lispref internals new-users-guide texinfo info dvi pdf |
428 | 265 |
266 info : $(info_files) | |
677 | 267 html : $(html_files) |
428 | 268 |
269 .texi.dvi: | |
270 -$(TEXI2DVI) $< | |
271 | |
1702 | 272 .texi.pdf: |
273 -$(TEXI2DVI) --pdf $< | |
274 | |
428 | 275 xemacs.dvi : $(xemacs-srcs) |
276 $(TEXI2DVI) -I xemacs xemacs/xemacs.texi | |
277 | |
278 lispref.dvi : $(lispref-srcs) | |
279 $(TEXI2DVI) -I lispref lispref/lispref.texi | |
280 | |
281 internals.dvi : $(internals-srcs) | |
282 $(TEXI2DVI) -I internals internals/internals.texi | |
283 | |
284 new-users-guide.dvi : $(new-users-guide-srcs) | |
285 $(TEXI2DVI) -I new-users-guide new-users-guide/new-users-guide.texi | |
286 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
287 texinfo.dvi : $(texinfo-srcs) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
288 $(TEXI2DVI) -I texinfo texinfo/texinfo.texi |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
289 |
428 | 290 dvi : $(dvi_files) |
291 | |
1702 | 292 xemacs.pdf: $(xemacs-srcs) |
293 $(TEXI2DVI) --pdf -I xemacs xemacs/xemacs.texi | |
294 | |
295 lispref.pdf: $(lispref-srcs) | |
296 $(TEXI2DVI) --pdf -I lispref lispref/lispref.texi | |
297 | |
298 internals.pdf: $(internals-srcs) | |
299 $(TEXI2DVI) --pdf -I internals internals/internals.texi | |
300 | |
301 new-users-guide.pdf: $(new-users-guide-srcs) | |
302 $(TEXI2DVI) --pdf -I new-users-guide new-users-guide/new-users-guide.texi | |
303 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
304 texinfo.pdf: $(texinfo-srcs) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
305 $(TEXI2DVI) --pdf -I texinfo texinfo/texinfo.texi |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
306 |
1702 | 307 pdf: $(pdf_files) |
308 | |
428 | 309 .PHONY: mostlyclean clean distclean realclean extraclean |
3062 | 310 .PHONY: distclean-noconfig realclean-noconfig extraclean-noconfig |
428 | 311 mostlyclean: |
442 | 312 $(RM) *.toc *.aux *.log *.op *.cp *.cps *.fn *.fns |
313 $(RM) *.ky *.kys *.pg *.pgs *.tp *.tps *.vr *.vrs | |
428 | 314 clean: mostlyclean |
1702 | 315 $(RM) core *.dvi *.pdf |
3062 | 316 distclean-noconfig: clean |
317 distclean: distclean-noconfig | |
318 realclean-noconfig: distclean-noconfig | |
428 | 319 realclean: distclean |
3062 | 320 extraclean-noconfig: realclean-noconfig |
321 $(RM) *~ \#* */*~ */\#* | |
322 extraclean: realclean | |
442 | 323 $(RM) *~ \#* */*~ */\#* |
677 | 324 |
325 ############################################################################ | |
326 | |
2537 | 327 $(HTMLDIR)/beta.html : beta.texi |
4196 | 328 $(TEXI2HTML_NOSPLIT) beta.texi |
2537 | 329 |
677 | 330 $(HTMLDIR)/cl.html : cl.texi |
2418 | 331 $(TEXI2HTML_SPLIT) cl.texi |
677 | 332 |
333 $(HTMLDIR)/custom.html : custom.texi | |
2418 | 334 $(TEXI2HTML_SPLIT) custom.texi |
677 | 335 |
336 $(HTMLDIR)/emodules.html : emodules.texi | |
2418 | 337 $(TEXI2HTML_SPLIT) emodules.texi |
677 | 338 |
339 $(HTMLDIR)/external-widget.html : external-widget.texi | |
2418 | 340 $(TEXI2HTML_SPLIT) external-widget.texi |
677 | 341 |
342 $(HTMLDIR)/info.html : info.texi | |
2418 | 343 $(TEXI2HTML_SPLIT) info.texi |
677 | 344 |
345 $(HTMLDIR)/standards.html : standards.texi | |
2418 | 346 $(TEXI2HTML_SPLIT) standards.texi |
677 | 347 |
348 $(HTMLDIR)/term.html : term.texi | |
2418 | 349 $(TEXI2HTML_SPLIT) term.texi |
677 | 350 |
351 $(HTMLDIR)/termcap.html : termcap.texi | |
2418 | 352 $(TEXI2HTML_SPLIT) termcap.texi |
677 | 353 |
354 $(HTMLDIR)/widget.html : widget.texi | |
2418 | 355 $(TEXI2HTML_SPLIT) widget.texi |
677 | 356 |
357 $(HTMLDIR)/xemacs-faq.html : xemacs-faq.texi | |
4196 | 358 $(TEXI2HTML_NOSPLIT) xemacs-faq.texi |
2418 | 359 $(TEXI2HTML_SPLIT) -top_file xemacs-faq_1.html xemacs-faq.texi |
360 $(CP) $(PHOTODIR)/ben.png $(HTMLDIR) | |
361 $(CP) $(PHOTODIR)/cthomp.png $(HTMLDIR) | |
362 $(CP) $(PHOTODIR)/hniksic.png $(HTMLDIR) | |
363 $(CP) $(PHOTODIR)/jwz.png $(HTMLDIR) | |
364 $(CP) $(PHOTODIR)/martin.png $(HTMLDIR) | |
365 $(CP) $(PHOTODIR)/mly.png $(HTMLDIR) | |
366 $(CP) $(PHOTODIR)/piper.png $(HTMLDIR) | |
367 $(CP) $(PHOTODIR)/slb.png $(HTMLDIR) | |
677 | 368 |
369 # Manuals with their own subdirectory | |
370 $(HTMLDIR)/xemacs.html : $(xemacs-srcs) | |
2418 | 371 $(TEXI2HTML_SPLIT) xemacs/xemacs.texi |
677 | 372 |
373 $(HTMLDIR)/lispref.html : $(lispref-srcs) | |
2418 | 374 $(TEXI2HTML_SPLIT) lispref/lispref.texi |
677 | 375 |
376 $(HTMLDIR)/internals.html : $(internals-srcs) | |
2418 | 377 $(TEXI2HTML_SPLIT) internals/internals.texi |
677 | 378 |
379 $(HTMLDIR)/new-users-guide.html : $(new-users-guide-srcs) | |
2418 | 380 $(TEXI2HTML_SPLIT) new-users-guide/new-users-guide.texi |
677 | 381 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
382 $(HTMLDIR)/texinfo.html : $(texinfo-srcs) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
383 $(TEXI2HTML_SPLIT) texinfo/texinfo.texi |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
384 |
677 | 385 xemacs : $(HTMLDIR)/xemacs.html |
386 lispref : $(HTMLDIR)/lispref.html | |
387 internals : $(HTMLDIR)/internals.html | |
388 new-users-guide.html : $(HTMLDIR)/new-users-guide.html | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
389 texinfo : $(HTMLDIR)/texinfo.html |
677 | 390 |
391 html : $(html_files) |