delete_temp_file fix
[bpt/emacs.git] / leim / Makefile.in
1 ### @configure_input@
2
3 # Copyright (C) 1997-2014 Free Software Foundation, Inc.
4 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005,
5 # 2006, 2007, 2008, 2009, 2010, 2011
6 # National Institute of Advanced Industrial Science and Technology (AIST)
7 # Registration Number H14PRO021
8
9 # This file is part of GNU Emacs.
10
11 # GNU Emacs is free software: you can redistribute it and/or modify
12 # it under the terms of the GNU General Public License as published by
13 # the Free Software Foundation, either version 3 of the License, or
14 # (at your option) any later version.
15
16 # GNU Emacs is distributed in the hope that it will be useful,
17 # but WITHOUT ANY WARRANTY; without even the implied warranty of
18 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 # GNU General Public License for more details.
20
21 # You should have received a copy of the GNU General Public License
22 # along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
23
24 SHELL = @SHELL@
25
26 # Here are the things that we expect ../configure to edit.
27 srcdir=@srcdir@
28
29 # Where the generated files go.
30 leimdir = ${srcdir}/../lisp/leim
31
32 # Prevent any settings in the user environment causing problems.
33 unexport EMACSDATA EMACSDOC EMACSPATH
34
35 # Which Emacs to use to convert TIT files to Emacs Lisp files,
36 # and generate the file leim-list.el.
37 EMACS = ../src/emacs
38
39 # How to run Emacs.
40 # Prevent any setting of EMACSLOADPATH in user environment causing problems.
41 RUN_EMACS = EMACSLOADPATH= '$(EMACS)' -batch --no-site-file --no-site-lisp
42
43 MKDIR_P = @MKDIR_P@
44
45 # Files generated from TIT dictionaries for Chinese GB character set.
46 TIT_GB=\
47 ${leimdir}/quail/CCDOSPY.el \
48 ${leimdir}/quail/Punct.el \
49 ${leimdir}/quail/QJ.el \
50 ${leimdir}/quail/SW.el \
51 ${leimdir}/quail/TONEPY.el
52
53 # Files generated from TIT dictionaries for Chinese BIG5 character set.
54 TIT_BIG5=\
55 ${leimdir}/quail/4Corner.el \
56 ${leimdir}/quail/ARRAY30.el \
57 ${leimdir}/quail/ECDICT.el \
58 ${leimdir}/quail/ETZY.el \
59 ${leimdir}/quail/Punct-b5.el \
60 ${leimdir}/quail/PY-b5.el \
61 ${leimdir}/quail/QJ-b5.el \
62 ${leimdir}/quail/ZOZY.el
63
64 MISC= \
65 ${leimdir}/quail/tsang-b5.el \
66 ${leimdir}/quail/quick-b5.el \
67 ${leimdir}/quail/tsang-cns.el \
68 ${leimdir}/quail/quick-cns.el \
69 ${leimdir}/quail/PY.el \
70 ${leimdir}/quail/ZIRANMA.el \
71 ${leimdir}/quail/CTLau.el \
72 ${leimdir}/quail/CTLau-b5.el
73
74 ## All the generated .el files.
75 TIT_MISC = ${TIT_GB} ${TIT_BIG5} ${MISC}
76
77
78 all: ${leimdir}/leim-list.el ${leimdir}/ja-dic/ja-dic.el
79 .PHONY: all
80
81
82 ## Ensure the output directory exists.
83 ${TIT_MISC}: | ${leimdir}/quail
84
85 ${leimdir}/quail ${leimdir}/ja-dic:
86 ${MKDIR_P} $@
87
88
89 ## All of TIT_GB and TIT_BIG5.
90 ${leimdir}/quail/%.el: ${srcdir}/CXTERM-DIC/%.tit
91 ${RUN_EMACS} -l titdic-cnv \
92 -f batch-titdic-convert -dir ${leimdir}/quail $<
93
94
95 misc_convert = ${RUN_EMACS} -l titdic-cnv -f batch-miscdic-convert -dir ${leimdir}/quail
96
97 ## CTLau.el, CTLau-b5.el.
98 ${leimdir}/quail/CT%.el: ${srcdir}/MISC-DIC/CT%.html
99 ${misc_convert} $<
100
101 ${leimdir}/quail/PY.el: ${srcdir}/MISC-DIC/pinyin.map
102 ${misc_convert} $<
103
104 ${leimdir}/quail/ZIRANMA.el: ${srcdir}/MISC-DIC/ziranma.cin
105 ${misc_convert} $<
106
107 ## Processing cangjie-table.b5 and cangjie-table.cns generates two files
108 ## in each case.
109 ${leimdir}/quail/tsang-%.el ${leimdir}/quail/quick-%.el: ${srcdir}/MISC-DIC/cangjie-table.%
110 ${misc_convert} $<
111
112
113 .PHONY: leim-list.el
114 leim-list.el: ${leimdir}/leim-list.el
115
116 ${leimdir}/leim-list.el: ${srcdir}/leim-ext.el ${TIT_MISC}
117 rm -f $@
118 ${RUN_EMACS} -l international/quail \
119 --eval "(update-leim-list-file (unmsys--file-name \"${leimdir}\"))"
120 sed -n -e '/^[^;]/p' -e 's/^;\(;*\)inc /;\1 /p' < $< >> $@
121
122
123 ${leimdir}/ja-dic/ja-dic.el: | $(leimdir)/ja-dic
124
125 ${leimdir}/ja-dic/ja-dic.el: $(srcdir)/SKK-DIC/SKK-JISYO.L
126 $(RUN_EMACS) -batch -l ja-dic-cnv \
127 -f batch-skkdic-convert -dir "$(leimdir)/ja-dic" "$<"
128
129
130 .PHONY: bootstrap-clean distclean maintainer-clean extraclean
131
132 bootstrap-clean:
133 rm -f ${TIT_MISC} ${leimdir}/leim-list.el
134
135 distclean:
136 rm -f Makefile
137
138 maintainer-clean: distclean bootstrap-clean
139
140 ## We do not delete ja-dic, even in a bootstrap, because it rarely
141 ## changes and is slow to regenerate.
142 extraclean:
143 rm -rf ${leimdir}/ja-dic
144
145 ### Makefile.in ends here