comparison man/tm/Makefile @ 12:bcdc7deadc19 r19-15b7

Import from CVS: tag r19-15b7
author cvs
date Mon, 13 Aug 2007 08:48:16 +0200
parents 4b173ad71786
children 0293115a14e9
comparison
equal deleted inserted replaced
11:91ffe8bd52e4 12:bcdc7deadc19
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 #### This makefile is currently broken! 20 # The japanese texinfo files requires the very latest 20.0 xemacs
21 #### makeinfo doesn't work with these .texi files! 21 EMACS = xemacs
22 NAMES = tm tm-edit tm-view gnus-mime tm-mh-e 22 NAMES = tm tm-edit tm-view gnus-mime tm-mh-e
23 NAMES_EN = $(NAMES:%=%-en) 23 NAMES_EN = $(NAMES:%=%-en) tm-vm-en
24 NAMES_JA = $(NAMES:%=%-ja) 24 NAMES_JA = $(NAMES:%=%-ja)
25 NAMES_ALL = $(NAMES_EN) $(NAMES_JA) 25 NAMES_ALL = $(NAMES_EN) $(NAMES_JA)
26 #NAMES_ALL = $(NAMES_EN)
26 INFOS = $(NAMES_ALL:%=../../info/%.info) 27 INFOS = $(NAMES_ALL:%=../../info/%.info)
27 DVIS = $(NAMES_ALL:%=%.dvi) 28 DVIS = $(NAMES_EN:%=%.dvi)
28 29
29 TEXI2DVI = texi2dvi 30 TEXI2DVI = texi2dvi
30 31
31 # List of all the texinfo files in the manual: 32 # List of all the texinfo files in the manual:
32 33
33 all : info 34 all : info
34 info : $(INFOS) 35 info : $(INFOS)
35 36
36 ../../info/%.info : %.texi 37 ../../info/%-en.info : %-en.texi
37 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))' -f save-buffer
38 44
39 dvi: $(DVIS) 45 dvi: $(DVIS)
40 .texi.dvi : 46 .texi.dvi :
41 $(TEXI2DVI) $< 47 $(TEXI2DVI) $<
42 48