annotate man/xemacs/Makefile @ 364:63c3368d1275

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