annotate man/xemacs/Makefile @ 8:4b173ad71786 r19-15b5

Import from CVS: tag r19-15b5
author cvs
date Mon, 13 Aug 2007 08:47:35 +0200
parents 376386a54a3c
children 8eaf7971accc
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
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
24 TEXI2DVI = texi2dvi
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
25
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
26 # List of all the texinfo files in the manual:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
27
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
28 srcs = xemacs.texi abbrevs.texi basic.texi buffers.texi building.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
29 calendar.texi cmdargs.texi custom.texi display.texi entering.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
30 files.texi fixit.texi glossary.texi gnu.texi help.texi indent.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
31 keystrokes.texi killing.texi xemacs.texi m-x.texi major.texi mark.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
32 menus.texi mini.texi misc.texi mouse.texi new.texi picture.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
33 programs.texi reading.texi regs.texi frame.texi search.texi sending.texi \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
34 text.texi trouble.texi undo.texi windows.texi
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
35
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
36 all : info
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
37 info : ../../info/$(NAME).info
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
38
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
39 dvi: $(NAME).dvi
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
40 .texi.dvi :
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
41 $(TEXI2DVI) $<
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
42
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
43 ../../info/$(NAME).info: $(srcs)
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
44 makeinfo -o $@ $(NAME).texi
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
45
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
46 mostlyclean:
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
47 rm -f *.toc *.aux *.oaux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
48 *.vr *.vrs *.pg *.pgs *.ky *.kys
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
49 clean: mostlyclean
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents: 0
diff changeset
50 rm -f *.dvi *.ps make.out core
0
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
51 distclean: clean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
52 realclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
53 extraclean: distclean
376386a54a3c Import from CVS: tag r19-14
cvs
parents:
diff changeset
54 -rm -f *~ \#*