comparison 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
comparison
equal deleted inserted replaced
69:804d1389bcd6 70:131b0175ea99
15 # You should have received a copy of the GNU General Public License 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 16 # along with XEmacs; see the file COPYING. If not, write to
17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330, 17 # the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
18 # Boston, MA 02111-1307, USA. 18 # Boston, MA 02111-1307, USA.
19 19
20 # The japanese texinfo files requires the very latest 20.0 xemacs 20 NAMES = tm_en gnus-mime_en tm-mh-e_en
21 EMACS = xemacs 21 INFOS = $(NAMES:%=../../info/%.info)
22 NAMES = tm tm-edit tm-view gnus-mime tm-mh-e 22 DVIS = $(NAMES:%=%.dvi)
23 NAMES_EN = $(NAMES:%=%-en) tm-vm-en
24 NAMES_JA = $(NAMES:%=%-ja)
25 NAMES_ALL = $(NAMES_EN) $(NAMES_JA)
26 #NAMES_ALL = $(NAMES_EN)
27 INFOS = $(NAMES_ALL:%=../../info/%.info)
28 DVIS = $(NAMES_EN:%=%.dvi)
29 23
30 TEXI2DVI = texi2dvi 24 TEXI2DVI = texi2dvi
31 25
32 # List of all the texinfo files in the manual: 26 # List of all the texinfo files in the manual:
33 27
28 srcs = tm-edit-en.texi tm-ew-d=en.texi tm-ew=en.texi tm-util=en.texi \
29 tm-view-a=en.texi tm-view-cb=en.texi tm-view-ch=en.texi tm-view-cs=en.texi \
30 tm-view-m=en.texi tm-view-p=en.texi tm-view=en.texi tm-en.texi
31
34 all : info 32 all : info
35 info : $(INFOS) 33 info : $(INFOS)
36 34
37 ../../info/%-en.info : %-en.texi 35 ../../info/tm_en.info : $(srcs)
36
37 ../../info/%.info : %.texi
38 makeinfo -o $@ $< 38 makeinfo -o $@ $<
39
40 ../../info/%-ja.info : %-ja.texi
41 $(EMACS) -batch -q -no-site-file $< -eval '(cd "../../info")' \
42 -l texinfmt -f texinfo-format-buffer \
43 -eval '(setq file-coding-system (quote iso-2022-7))' \
44 -eval '(save-buffer 0)'
45 39
46 dvi: $(DVIS) 40 dvi: $(DVIS)
47 .texi.dvi : 41 .texi.dvi :
48 $(TEXI2DVI) $< 42 $(TEXI2DVI) $<
49 43