Mercurial > hg > xemacs-beta
annotate man/Makefile.in @ 5916:1152e0091f8c
Avoid confusion about ELC vs. source file encoding, #'load, #'load-internal.
lisp/ChangeLog addition:
2015-06-03 Aidan Kehoe <kehoea@parhasard.net>
* code-files.el (load):
Revise this to respect load-ignore-out-of-date-elc-files, rather
than leaving that to #'load-internal. Avoids a corner case where
the source and the compiled file have different, incompatible
encodings.
Move the call to #'substitute-in-file-name here.
No longer check for a zero-length filename, since #'load-internal
no longer chokes on same and errors correctly.
src/ChangeLog addition:
2015-06-03 Aidan Kehoe <kehoea@parhasard.net>
* lread.c (Fload_internal):
Delegate calling the handler and #'substitute-in-file-name to #'load.
Error correctly with a zero-length file name, instead of giving a
bus error on my machine.
Delegate the check for out-of-date ELC files to #'load,
avoiding a bug where the encoding of the ELC file and the source
file differed.
* lread.c (PRINT_LOADING_MESSAGE_1):
This is simplified, now we no longer have to talk about
out-of-date ELC files.
tests/ChangeLog addition:
2015-06-03 Aidan Kehoe <kehoea@parhasard.net>
* automated/file-tests.el:
Gross sanity check for #'load and #'load-internal with a
zero-length FILE, something that crashed until today.
author | Aidan Kehoe <kehoea@parhasard.net> |
---|---|
date | Wed, 03 Jun 2015 20:13:07 +0100 |
parents | 2d20d57d4e7b |
children |
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 | |
5512
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
23 DESTDIR= |
4aa8ee813265
Add a DESTDIR variable to all Makefiles, defaulting to the empty string, and
Jerry James <james@xemacs.org>
parents:
5508
diff
changeset
|
24 |
428 | 25 SHELL = /bin/sh |
5744
9c17f7be0b92
Require makeinfo 4.12 or later to build the info files. See xemacs-beta
Jerry James <james@xemacs.org>
parents:
5512
diff
changeset
|
26 MAKEINFO = @MAKEINFO@ |
428 | 27 TEXI2DVI = texi2dvi |
4195 | 28 TEXI2HTML = texi2html |
4196 | 29 TEXI2HTML_NOSPLIT = $(TEXI2HTML) -verbose -subdir $(HTMLDIR) |
4195 | 30 TEXI2HTML_SPLIT = $(TEXI2HTML) -verbose -subdir $(HTMLDIR) -split chapter |
677 | 31 |
442 | 32 RM = rm -f |
2418 | 33 CP = cp |
428 | 34 |
35 .SUFFIXES: | |
1702 | 36 .SUFFIXES: .html .info .texi .dvi .pdf |
428 | 37 |
2427 | 38 RECURSIVE_MAKE_ARGS = $(MFLAGS) MAKEINFO='$(MAKEINFO)' TEXI2DVI='$(TEXI2DVI)' |
428 | 39 |
40 all : info | |
41 | |
42 # Ughhh! The things we do to have portable makefiles... | |
43 | |
44 INFODIR = ../info | |
677 | 45 HTMLDIR = ../html |
2418 | 46 PHOTODIR = ../etc/photos |
428 | 47 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
48 src_files1 = \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
49 $(DIR)beta.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
50 $(DIR)cl.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
51 $(DIR)emodules.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
52 $(DIR)external-widget.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
53 $(DIR)info.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
54 $(DIR)internals.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
55 $(DIR)lispref.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
56 $(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
|
57 $(DIR)standards.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
58 $(DIR)termcap.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
59 $(DIR)widget.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
60 $(DIR)xemacs.texi \ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
61 $(DIR)xemacs-faq.texi |
677 | 62 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
63 DIR:= |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
64 src_files := $(src_files1) |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
65 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
66 DIR := $(INFODIR)/ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
67 info_files := $(src_files1:.texi=.info) |
428 | 68 |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
69 DIR := $(HTMLDIR)/ |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
70 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
|
71 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
72 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
|
73 |
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
74 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
|
75 |
1702 | 76 |
428 | 77 xemacs-srcs = \ |
78 xemacs/abbrevs.texi \ | |
79 xemacs/basic.texi \ | |
80 xemacs/buffers.texi \ | |
81 xemacs/building.texi \ | |
82 xemacs/calendar.texi \ | |
83 xemacs/cmdargs.texi \ | |
84 xemacs/custom.texi \ | |
85 xemacs/display.texi \ | |
86 xemacs/entering.texi \ | |
87 xemacs/files.texi \ | |
88 xemacs/fixit.texi \ | |
89 xemacs/frame.texi \ | |
90 xemacs/glossary.texi \ | |
91 xemacs/gnu.texi \ | |
92 xemacs/help.texi \ | |
93 xemacs/indent.texi \ | |
94 xemacs/keystrokes.texi \ | |
95 xemacs/killing.texi \ | |
96 xemacs/m-x.texi \ | |
97 xemacs/major.texi \ | |
98 xemacs/mark.texi \ | |
99 xemacs/menus.texi \ | |
100 xemacs/mini.texi \ | |
101 xemacs/misc.texi \ | |
102 xemacs/mouse.texi \ | |
103 xemacs/mule.texi \ | |
104 xemacs/new.texi \ | |
105 xemacs/packages.texi \ | |
106 xemacs/picture.texi \ | |
107 xemacs/programs.texi \ | |
108 xemacs/reading.texi \ | |
109 xemacs/regs.texi \ | |
110 xemacs/search.texi \ | |
111 xemacs/sending.texi \ | |
112 xemacs/startup.texi \ | |
113 xemacs/text.texi \ | |
114 xemacs/trouble.texi \ | |
115 xemacs/undo.texi \ | |
116 xemacs/windows.texi \ | |
117 xemacs/xemacs.texi | |
118 | |
119 lispref-srcs = \ | |
120 lispref/abbrevs.texi \ | |
121 lispref/annotations.texi \ | |
122 lispref/back.texi \ | |
123 lispref/backups.texi \ | |
124 lispref/buffers.texi \ | |
125 lispref/building.texi \ | |
126 lispref/commands.texi \ | |
127 lispref/compile.texi \ | |
128 lispref/consoles-devices.texi \ | |
129 lispref/control.texi \ | |
130 lispref/customize.texi \ | |
131 lispref/databases.texi \ | |
132 lispref/debugging.texi \ | |
133 lispref/dialog.texi \ | |
134 lispref/display.texi \ | |
135 lispref/dragndrop.texi \ | |
136 lispref/edebug-inc.texi \ | |
137 lispref/edebug.texi \ | |
138 lispref/errors.texi \ | |
139 lispref/eval.texi \ | |
140 lispref/extents.texi \ | |
141 lispref/faces.texi \ | |
142 lispref/files.texi \ | |
143 lispref/frames.texi \ | |
144 lispref/functions.texi \ | |
145 lispref/glyphs.texi \ | |
146 lispref/hash-tables.texi \ | |
147 lispref/help.texi \ | |
148 lispref/hooks.texi \ | |
149 lispref/index.texi \ | |
150 lispref/internationalization.texi \ | |
151 lispref/intro.texi \ | |
152 lispref/keymaps.texi \ | |
153 lispref/ldap.texi \ | |
154 lispref/lispref.texi \ | |
155 lispref/lists.texi \ | |
156 lispref/loading.texi \ | |
157 lispref/locals.texi \ | |
158 lispref/macros.texi \ | |
159 lispref/maps.texi \ | |
160 lispref/markers.texi \ | |
161 lispref/menus.texi \ | |
162 lispref/minibuf.texi \ | |
163 lispref/modes.texi \ | |
164 lispref/mouse.texi \ | |
165 lispref/mule.texi \ | |
166 lispref/numbers.texi \ | |
167 lispref/objects.texi \ | |
168 lispref/os.texi \ | |
693 | 169 lispref/packaging.texi \ |
428 | 170 lispref/positions.texi \ |
171 lispref/processes.texi \ | |
172 lispref/range-tables.texi \ | |
173 lispref/scrollbars.texi \ | |
174 lispref/searching.texi \ | |
175 lispref/sequences.texi \ | |
176 lispref/specifiers.texi \ | |
177 lispref/streams.texi \ | |
178 lispref/strings.texi \ | |
179 lispref/symbols.texi \ | |
180 lispref/syntax.texi \ | |
181 lispref/text.texi \ | |
182 lispref/tips.texi \ | |
183 lispref/toolbar.texi \ | |
184 lispref/tooltalk.texi \ | |
185 lispref/variables.texi \ | |
186 lispref/windows.texi \ | |
187 lispref/x-windows.texi | |
188 | |
189 internals-srcs = \ | |
190 internals/internals.texi | |
191 | |
192 new-users-guide-srcs = \ | |
193 new-users-guide/custom1.texi \ | |
194 new-users-guide/custom2.texi \ | |
195 new-users-guide/edit.texi \ | |
196 new-users-guide/enter.texi \ | |
197 new-users-guide/files.texi \ | |
198 new-users-guide/help.texi \ | |
199 new-users-guide/modes.texi \ | |
200 new-users-guide/new-users-guide.texi \ | |
201 new-users-guide/region.texi \ | |
202 new-users-guide/search.texi \ | |
203 new-users-guide/xmenu.texi | |
204 | |
2537 | 205 $(INFODIR)/beta.info : beta.texi |
206 $(MAKEINFO) -o $(INFODIR)/beta.info beta.texi | |
207 | |
428 | 208 $(INFODIR)/cl.info : cl.texi |
209 $(MAKEINFO) -o $(INFODIR)/cl.info cl.texi | |
210 | |
211 $(INFODIR)/custom.info : custom.texi | |
212 $(MAKEINFO) -o $(INFODIR)/custom.info custom.texi | |
213 | |
214 $(INFODIR)/emodules.info : emodules.texi | |
215 $(MAKEINFO) -o $(INFODIR)/emodules.info emodules.texi | |
216 | |
217 $(INFODIR)/external-widget.info : external-widget.texi | |
218 $(MAKEINFO) -o $(INFODIR)/external-widget.info external-widget.texi | |
219 | |
220 $(INFODIR)/info.info : info.texi | |
221 $(MAKEINFO) -o $(INFODIR)/info.info info.texi | |
222 | |
223 $(INFODIR)/standards.info : standards.texi | |
224 $(MAKEINFO) -o $(INFODIR)/standards.info standards.texi | |
225 | |
226 $(INFODIR)/term.info : term.texi | |
227 $(MAKEINFO) -o $(INFODIR)/term.info term.texi | |
228 | |
229 $(INFODIR)/termcap.info : termcap.texi | |
230 $(MAKEINFO) -o $(INFODIR)/termcap.info termcap.texi | |
231 | |
5507
64be8a494bdc
Backed out changeset a7da359711ce, restoring Ben's GPLv3 manual changes.
Aidan Kehoe <kehoea@parhasard.net>
parents:
5496
diff
changeset
|
232 $(INFODIR)/widget.info : widget.texi doclicense.texi |
428 | 233 $(MAKEINFO) -o $(INFODIR)/widget.info widget.texi |
234 | |
235 $(INFODIR)/xemacs-faq.info : xemacs-faq.texi | |
236 $(MAKEINFO) -o $(INFODIR)/xemacs-faq.info xemacs-faq.texi | |
237 | |
238 # Manuals with their own subdirectory | |
239 $(INFODIR)/xemacs.info : $(xemacs-srcs) | |
240 $(MAKEINFO) -P xemacs -o $(INFODIR)/xemacs.info xemacs/xemacs.texi | |
241 | |
242 $(INFODIR)/lispref.info : $(lispref-srcs) | |
243 $(MAKEINFO) -P lispref -o $(INFODIR)/lispref.info lispref/lispref.texi | |
244 | |
245 $(INFODIR)/internals.info : $(internals-srcs) | |
246 $(MAKEINFO) -P internals -o $(INFODIR)/internals.info internals/internals.texi | |
247 | |
248 $(INFODIR)/new-users-guide.info : $(new-users-guide-srcs) | |
249 $(MAKEINFO) -P new-users-guide -o $(INFODIR)/new-users-guide.info new-users-guide/new-users-guide.texi | |
250 | |
251 xemacs : $(INFODIR)/xemacs.info | |
252 lispref : $(INFODIR)/lispref.info | |
253 internals : $(INFODIR)/internals.info | |
254 new-users-guide.info : $(INFODIR)/new-users-guide.info | |
255 | |
5794
2d20d57d4e7b
Do not build or ship the texinfo info files.
Jerry James <james@xemacs.org>
parents:
5744
diff
changeset
|
256 .PHONY : xemacs lispref internals new-users-guide info dvi pdf |
428 | 257 |
258 info : $(info_files) | |
677 | 259 html : $(html_files) |
428 | 260 |
261 .texi.dvi: | |
262 -$(TEXI2DVI) $< | |
263 | |
1702 | 264 .texi.pdf: |
265 -$(TEXI2DVI) --pdf $< | |
266 | |
428 | 267 xemacs.dvi : $(xemacs-srcs) |
268 $(TEXI2DVI) -I xemacs xemacs/xemacs.texi | |
269 | |
270 lispref.dvi : $(lispref-srcs) | |
271 $(TEXI2DVI) -I lispref lispref/lispref.texi | |
272 | |
273 internals.dvi : $(internals-srcs) | |
274 $(TEXI2DVI) -I internals internals/internals.texi | |
275 | |
276 new-users-guide.dvi : $(new-users-guide-srcs) | |
277 $(TEXI2DVI) -I new-users-guide new-users-guide/new-users-guide.texi | |
278 | |
279 dvi : $(dvi_files) | |
280 | |
1702 | 281 xemacs.pdf: $(xemacs-srcs) |
282 $(TEXI2DVI) --pdf -I xemacs xemacs/xemacs.texi | |
283 | |
284 lispref.pdf: $(lispref-srcs) | |
285 $(TEXI2DVI) --pdf -I lispref lispref/lispref.texi | |
286 | |
287 internals.pdf: $(internals-srcs) | |
288 $(TEXI2DVI) --pdf -I internals internals/internals.texi | |
289 | |
290 new-users-guide.pdf: $(new-users-guide-srcs) | |
291 $(TEXI2DVI) --pdf -I new-users-guide new-users-guide/new-users-guide.texi | |
292 | |
293 pdf: $(pdf_files) | |
294 | |
428 | 295 .PHONY: mostlyclean clean distclean realclean extraclean |
3062 | 296 .PHONY: distclean-noconfig realclean-noconfig extraclean-noconfig |
428 | 297 mostlyclean: |
442 | 298 $(RM) *.toc *.aux *.log *.op *.cp *.cps *.fn *.fns |
299 $(RM) *.ky *.kys *.pg *.pgs *.tp *.tps *.vr *.vrs | |
428 | 300 clean: mostlyclean |
1702 | 301 $(RM) core *.dvi *.pdf |
3062 | 302 distclean-noconfig: clean |
303 distclean: distclean-noconfig | |
304 realclean-noconfig: distclean-noconfig | |
428 | 305 realclean: distclean |
3062 | 306 extraclean-noconfig: realclean-noconfig |
307 $(RM) *~ \#* */*~ */\#* | |
308 extraclean: realclean | |
442 | 309 $(RM) *~ \#* */*~ */\#* |
677 | 310 |
311 ############################################################################ | |
312 | |
2537 | 313 $(HTMLDIR)/beta.html : beta.texi |
4196 | 314 $(TEXI2HTML_NOSPLIT) beta.texi |
2537 | 315 |
677 | 316 $(HTMLDIR)/cl.html : cl.texi |
2418 | 317 $(TEXI2HTML_SPLIT) cl.texi |
677 | 318 |
319 $(HTMLDIR)/custom.html : custom.texi | |
2418 | 320 $(TEXI2HTML_SPLIT) custom.texi |
677 | 321 |
322 $(HTMLDIR)/emodules.html : emodules.texi | |
2418 | 323 $(TEXI2HTML_SPLIT) emodules.texi |
677 | 324 |
325 $(HTMLDIR)/external-widget.html : external-widget.texi | |
2418 | 326 $(TEXI2HTML_SPLIT) external-widget.texi |
677 | 327 |
328 $(HTMLDIR)/info.html : info.texi | |
2418 | 329 $(TEXI2HTML_SPLIT) info.texi |
677 | 330 |
331 $(HTMLDIR)/standards.html : standards.texi | |
2418 | 332 $(TEXI2HTML_SPLIT) standards.texi |
677 | 333 |
334 $(HTMLDIR)/term.html : term.texi | |
2418 | 335 $(TEXI2HTML_SPLIT) term.texi |
677 | 336 |
337 $(HTMLDIR)/termcap.html : termcap.texi | |
2418 | 338 $(TEXI2HTML_SPLIT) termcap.texi |
677 | 339 |
340 $(HTMLDIR)/widget.html : widget.texi | |
2418 | 341 $(TEXI2HTML_SPLIT) widget.texi |
677 | 342 |
343 $(HTMLDIR)/xemacs-faq.html : xemacs-faq.texi | |
4196 | 344 $(TEXI2HTML_NOSPLIT) xemacs-faq.texi |
2418 | 345 $(TEXI2HTML_SPLIT) -top_file xemacs-faq_1.html xemacs-faq.texi |
346 $(CP) $(PHOTODIR)/ben.png $(HTMLDIR) | |
347 $(CP) $(PHOTODIR)/cthomp.png $(HTMLDIR) | |
348 $(CP) $(PHOTODIR)/hniksic.png $(HTMLDIR) | |
349 $(CP) $(PHOTODIR)/jwz.png $(HTMLDIR) | |
350 $(CP) $(PHOTODIR)/martin.png $(HTMLDIR) | |
351 $(CP) $(PHOTODIR)/mly.png $(HTMLDIR) | |
352 $(CP) $(PHOTODIR)/piper.png $(HTMLDIR) | |
353 $(CP) $(PHOTODIR)/slb.png $(HTMLDIR) | |
677 | 354 |
355 # Manuals with their own subdirectory | |
356 $(HTMLDIR)/xemacs.html : $(xemacs-srcs) | |
2418 | 357 $(TEXI2HTML_SPLIT) xemacs/xemacs.texi |
677 | 358 |
359 $(HTMLDIR)/lispref.html : $(lispref-srcs) | |
2418 | 360 $(TEXI2HTML_SPLIT) lispref/lispref.texi |
677 | 361 |
362 $(HTMLDIR)/internals.html : $(internals-srcs) | |
2418 | 363 $(TEXI2HTML_SPLIT) internals/internals.texi |
677 | 364 |
365 $(HTMLDIR)/new-users-guide.html : $(new-users-guide-srcs) | |
2418 | 366 $(TEXI2HTML_SPLIT) new-users-guide/new-users-guide.texi |
677 | 367 |
368 xemacs : $(HTMLDIR)/xemacs.html | |
369 lispref : $(HTMLDIR)/lispref.html | |
370 internals : $(HTMLDIR)/internals.html | |
371 new-users-guide.html : $(HTMLDIR)/new-users-guide.html | |
372 | |
373 html : $(html_files) |