annotate man/tm/Makefile @ 70:131b0175ea99 r20-0b30

Import from CVS: tag r20-0b30
author cvs
date Mon, 13 Aug 2007 09:02:59 +0200
parents 0293115a14e9
children 54cc21c15cbb
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
1 # Makefile for TM manual
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
2
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
3 # This file is part of XEmacs.
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
4
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
5 # XEmacs is free software; you can redistribute it and/or modify it
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
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:
diff changeset
7 # Free Software Foundation; either version 2, or (at your option) any
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
8 # later version.
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
9
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
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:
diff changeset
11 # ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
12 # FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
13 # for more details.
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
14
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
15 # You should have received a copy of the GNU General Public License
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
16 # along with XEmacs; see the file COPYING. If not, write to
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
18 # Boston, MA 02111-1307, USA.
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
19
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
20 NAMES = tm_en gnus-mime_en tm-mh-e_en
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
21 INFOS = $(NAMES:%=../../info/%.info)
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
22 DVIS = $(NAMES:%=%.dvi)
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
23
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
24 TEXI2DVI = texi2dvi
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
25
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
26 # List of all the texinfo files in the manual:
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
27
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
28 srcs = tm-edit-en.texi tm-ew-d=en.texi tm-ew=en.texi tm-util=en.texi \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
29 tm-view-a=en.texi tm-view-cb=en.texi tm-view-ch=en.texi tm-view-cs=en.texi \
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
30 tm-view-m=en.texi tm-view-p=en.texi tm-view=en.texi tm-en.texi
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
31
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
32 all : info
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
33 info : $(INFOS)
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
34
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
35 ../../info/tm_en.info : $(srcs)
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
36
70
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
37 ../../info/%.info : %.texi
131b0175ea99 Import from CVS: tag r20-0b30
cvs
parents: 16
diff changeset
38 makeinfo -o $@ $<
12
bcdc7deadc19 Import from CVS: tag r19-15b7
cvs
parents: 8
diff changeset
39
8
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
40 dvi: $(DVIS)
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
41 .texi.dvi :
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
42 $(TEXI2DVI) $<
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
43
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
44 mostlyclean:
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
45 rm -f *.toc *.aux *.oaux *.log *.cp *.cps *.fn *.fns *.tp *.tps \
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
46 *.vr *.vrs *.pg *.pgs *.ky *.kys
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
47 clean: mostlyclean
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
48 rm -f *.dvi *.ps make.out core
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
49 distclean: clean
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
50 realclean: clean
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
51 extraclean: clean
4b173ad71786 Import from CVS: tag r19-15b5
cvs
parents:
diff changeset
52 -rm -f *~ \#*