0
|
1 # Makefile for the XEmacs Reference Manual.
|
8
|
2
|
|
3 # This file is part of XEmacs.
|
|
4
|
|
5 # XEmacs is free software; you can redistribute it and/or modify it
|
|
6 # under the terms of the GNU General Public License as published by the
|
|
7 # Free Software Foundation; either version 2, or (at your option) any
|
|
8 # later version.
|
|
9
|
|
10 # XEmacs is distributed in the hope that it will be useful, but WITHOUT
|
|
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
|
|
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
|
|
13 # for more details.
|
|
14
|
|
15 # You should have received a copy of the GNU General Public License
|
|
16 # along with XEmacs; see the file COPYING. If not, write to
|
|
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
18 # Boston, MA 02111-1307, USA.
|
|
19
|
0
|
20 # Modified by Ben Wing, February 1994
|
|
21
|
8
|
22 NAME=xemacs
|
0
|
23
|
8
|
24 TEXI2DVI = texi2dvi
|
0
|
25
|
|
26 # List of all the texinfo files in the manual:
|
|
27
|
|
28 srcs = xemacs.texi abbrevs.texi basic.texi buffers.texi building.texi \
|
|
29 calendar.texi cmdargs.texi custom.texi display.texi entering.texi \
|
|
30 files.texi fixit.texi glossary.texi gnu.texi help.texi indent.texi \
|
|
31 keystrokes.texi killing.texi xemacs.texi m-x.texi major.texi mark.texi \
|
|
32 menus.texi mini.texi misc.texi mouse.texi new.texi picture.texi \
|
|
33 programs.texi reading.texi regs.texi frame.texi search.texi sending.texi \
|
|
34 text.texi trouble.texi undo.texi windows.texi
|
|
35
|
8
|
36 all : info
|
|
37 info : ../../info/$(NAME).info
|
0
|
38
|
8
|
39 dvi: $(NAME).dvi
|
|
40 .texi.dvi :
|
|
41 $(TEXI2DVI) $<
|
0
|
42
|
8
|
43 ../../info/$(NAME).info: $(srcs)
|
|
44 makeinfo -o $@ $(NAME).texi
|
0
|
45
|
|
46 mostlyclean:
|
|
47 rm -f *.toc *.aux *.oaux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
|
|
48 *.vr *.vrs *.pg *.pgs *.ky *.kys
|
|
49 clean: mostlyclean
|
8
|
50 rm -f *.dvi *.ps make.out core
|
0
|
51 distclean: clean
|
|
52 realclean: distclean
|
|
53 extraclean: distclean
|
|
54 -rm -f *~ \#*
|