]> code.delx.au - gnu-emacs/blob - leim/Makefile.in
(archive-l-e): New optional argument `float' means generate a float value.
[gnu-emacs] / leim / Makefile.in
1 # Makefile for leim subdirectory in GNU Emacs.
2 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006
3 # Free Software Foundation, Inc.
4 # Copyright (C) 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
5 # National Institute of Advanced Industrial Science and Technology (AIST)
6 # Registration Number H14PRO021
7
8 # This file is part of GNU Emacs.
9
10 # GNU Emacs is free software; you can redistribute it and/or modify
11 # it under the terms of the GNU General Public License as published by
12 # the Free Software Foundation; either version 2, or (at your option)
13 # any later version.
14 #
15 # GNU Emacs is distributed in the hope that it will be useful,
16 # but WITHOUT ANY WARRANTY; without even the implied warranty of
17 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 # GNU General Public License for more details.
19 #
20 # You should have received a copy of the GNU General Public License
21 # along with GNU Emacs; see the file COPYING. If not, write to the
22 # Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
23 # Boston, MA 02110-1301, USA.
24
25 # Avoid trouble on systems where the `SHELL' variable might be
26 # inherited from the environment.
27 SHELL = /bin/sh
28
29 # Here are the things that we expect ../configure to edit.
30 version=@version@
31 prefix=@prefix@
32 datadir=@datadir@
33 srcdir=@srcdir@
34
35 # Where to install LEIM files.
36 INSTALLDIR=$(DESTDIR)${datadir}/emacs/${version}/leim
37
38 GZIP_PROG = @GZIP_PROG@
39
40 # On Xenix and the IBM RS6000, double-dot gets screwed up.
41 dot = .
42
43 # Which Emacs to use to convert TIT files to Emacs Lisp files,
44 # byte-compile Emacs Lisp files, and generate the file leim-list.el.
45 BUILT-EMACS = ${dot}${dot}/src/emacs
46
47 buildlisppath=${srcdir}/${dot}${dot}/lisp
48
49 # How to run Emacs.
50 RUN-EMACS = EMACSLOADPATH=$(buildlisppath) LC_ALL=C\
51 ${BUILT-EMACS} -batch --no-init-file --no-site-file --multibyte
52
53 # Subdirectories to be made if ${srcdir} is different from the current
54 # directory.
55 SUBDIRS=quail
56
57 # Files generated from TIT dictionaries for Chinese GB character set.
58 TIT-GB=\
59 quail/CCDOSPY.elc \
60 quail/Punct.elc \
61 quail/QJ.elc \
62 quail/SW.elc \
63 quail/TONEPY.elc
64
65 # Files generated from TIT dictionaries for Chinese BIG5 character set.
66 TIT-BIG5=\
67 quail/4Corner.elc \
68 quail/ARRAY30.elc \
69 quail/ECDICT.elc \
70 quail/ETZY.elc \
71 quail/Punct-b5.elc \
72 quail/PY-b5.elc \
73 quail/QJ-b5.elc \
74 quail/ZOZY.elc
75
76 CHINESE-TIT=${TIT-GB} ${TIT-BIG5}
77
78 NON-TIT-GB=${srcdir}/quail/py-punct.elc
79
80 NON-TIT-BIG5=${srcdir}/quail/pypunct-b5.elc
81
82 CHINESE-NON-TIT=${NON-TIT-GB} ${NON-TIT-BIG5}
83
84 CHINESE-GB=${TIT-GB} ${NON-TIT-GB}
85
86 CHINESE-BIG5=${TIT-BIG5} ${NON-TIT-BIG5}
87
88 JAPANESE=${srcdir}/quail/japanese.elc ${srcdir}/ja-dic/ja-dic.elc
89
90 KOREAN= ${srcdir}/quail/hangul.elc \
91 ${srcdir}/quail/hangul3.elc \
92 ${srcdir}/quail/hanja.elc \
93 ${srcdir}/quail/hanja3.elc \
94 ${srcdir}/quail/hanja-jis.elc \
95 ${srcdir}/quail/symbol-ksc.elc
96
97 THAI=${srcdir}/quail/thai.elc
98
99 VIETNAMESE=${srcdir}/quail/viqr.elc ${srcdir}/quail/vntelex.elc
100
101 LAO=${srcdir}/quail/lao.elc ${srcdir}/quail/lrt.elc
102
103 INDIAN=${srcdir}/quail/indian.elc
104
105 TIBETAN=${srcdir}/quail/tibetan.elc
106
107 LATIN= ${srcdir}/quail/latin-pre.elc \
108 ${srcdir}/quail/latin-post.elc \
109 ${srcdir}/quail/latin-alt.elc \
110 ${srcdir}/quail/latin-ltx.elc \
111 ${srcdir}/quail/welsh.elc
112
113 UNICODE=${srcdir}/quail/sgml-input.elc ${srcdir}/quail/rfc1345.elc \
114 ${srcdir}/quail/uni-input.elc
115
116 SLAVIC= \
117 ${srcdir}/quail/czech.elc \
118 ${srcdir}/quail/croatian.elc \
119 ${srcdir}/quail/slovak.elc
120
121 GREEK=${srcdir}/quail/greek.elc
122
123 RUSSIAN=${srcdir}/quail/cyrillic.elc ${srcdir}/quail/cyril-jis.elc
124
125 OTHERS= \
126 ${srcdir}/quail/ethiopic.elc \
127 ${srcdir}/quail/ipa.elc \
128 ${srcdir}/quail/hebrew.elc \
129 ${srcdir}/quail/georgian.elc \
130 ${srcdir}/quail/sisheng.elc
131
132 MISC= \
133 quail/tsang-b5.elc \
134 quail/quick-b5.elc \
135 quail/tsang-cns.elc \
136 quail/quick-cns.elc \
137 quail/PY.elc \
138 quail/ZIRANMA.elc \
139 quail/CTLau.elc \
140 quail/CTLau-b5.elc
141
142 CHINESE=${CHINESE-GB} ${CHINESE-BIG5}
143 EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
144 ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
145 EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
146 WORLD=${ASIA} ${EUROPEAN} ${OTHERS} ${MISC} ${UNICODE}
147
148 TIT-MISC=${CHINESE-TIT} ${MISC}
149 NON-TIT-MISC=${CHINESE-NON-TIT} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${OTHERS}
150
151 .SUFFIXES: .elc .el
152
153 .el.elc:
154 ${RUN-EMACS} -f batch-byte-compile $<
155
156 all: ${BUILT-EMACS} ${SUBDIRS} leim-list.el ${WORLD}
157
158 # To ensure that we can run Emacs. This target is ignored (never
159 # being hit) if a user changes default value of EMACS.
160 ${dot}${dot}/src/emacs:
161 cd ../src; ${MAKE} ${MFLAGS} emacs
162
163 ${SUBDIRS}:
164 mkdir $@
165 touch stamp-subdir
166
167 TIT-SOURCES= \
168 ${srcdir}/CXTERM-DIC/4Corner.tit \
169 ${srcdir}/CXTERM-DIC/ARRAY30.tit \
170 ${srcdir}/CXTERM-DIC/CCDOSPY.tit \
171 ${srcdir}/CXTERM-DIC/ECDICT.tit \
172 ${srcdir}/CXTERM-DIC/ETZY.tit \
173 ${srcdir}/CXTERM-DIC/PY-b5.tit \
174 ${srcdir}/CXTERM-DIC/Punct-b5.tit \
175 ${srcdir}/CXTERM-DIC/Punct.tit \
176 ${srcdir}/CXTERM-DIC/QJ-b5.tit \
177 ${srcdir}/CXTERM-DIC/QJ.tit \
178 ${srcdir}/CXTERM-DIC/SW.tit \
179 ${srcdir}/CXTERM-DIC/TONEPY.tit \
180 ${srcdir}/CXTERM-DIC/ZOZY.tit
181
182 ${CHINESE-TIT:.elc=.el}: changed.tit
183 @true
184
185 changed.tit: ${TIT-SOURCES}
186 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
187 -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
188 echo "changed" > $@
189
190 MISC-SOURCES= \
191 ${srcdir}/MISC-DIC/CTLau-b5.html \
192 ${srcdir}/MISC-DIC/CTLau.html \
193 ${srcdir}/MISC-DIC/cangjie-table.b5 \
194 ${srcdir}/MISC-DIC/cangjie-table.cns \
195 ${srcdir}/MISC-DIC/pinyin.map \
196 ${srcdir}/MISC-DIC/ziranma.cin
197
198 ${MISC:.elc=.el}: changed.misc
199 @true
200
201 changed.misc: ${MISC-SOURCES}
202 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
203 -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
204 echo "changed" > $@
205
206 leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc ${srcdir}/leim-ext.el
207 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
208 -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
209 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
210 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
211 --eval "(update-leim-list-file \".\")" ; \
212 else \
213 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
214 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
215 fi
216 sed -n '/^[^;]/ p' < ${srcdir}/leim-ext.el >> $@
217
218 install: all
219 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
220 rm -rf ${INSTALLDIR}/leim-list.el; \
221 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
222 echo "Copying leim files to ${INSTALLDIR} ..." ; \
223 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
224 tar -chf - leim-list.el quail ja-dic \
225 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
226 else \
227 tar -chf - leim-list.el quail \
228 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
229 cd ${srcdir}; \
230 tar -chf - quail/* ja-dic \
231 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
232 fi; \
233 rm -rf ${INSTALLDIR}/CVS ${INSTALLDIR}/*/CVS; \
234 rm -f ${INSTALLDIR}/.cvsignore ${INSTALLDIR}/*/.cvsignore; \
235 rm -f ${INSTALLDIR}/.arch-inventory ${INSTALLDIR}/*/.arch-inventory; \
236 rm -f ${INSTALLDIR}/\#* ${INSTALLDIR}/*/\#* ; \
237 rm -f ${INSTALLDIR}/.\#* ${INSTALLDIR}/*/.\#* ; \
238 rm -f ${INSTALLDIR}/*~ ${INSTALLDIR}/*/*~ ; \
239 rm -f ${INSTALLDIR}/*.orig ${INSTALLDIR}/*/*.orig ; \
240 else true; fi
241 -unset CDPATH; \
242 if [ -n "${GZIP_PROG}" ]; \
243 then \
244 echo "Compressing *.el ..." ; \
245 (cd ${INSTALLDIR}; for f in `find . -name "*.elc" -print`; do \
246 ${GZIP_PROG} -9n `echo $$f|sed 's/.elc$$/.el/'` ; \
247 done) \
248 else true; fi
249 -chmod -R a+r ${INSTALLDIR}
250
251 clean mostlyclean:
252 rm -f ${TIT-MISC} ${TIT-MISC:.elc=.el} \
253 leim-list.el changed.tit changed.misc
254
255 distclean: clean
256 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
257 rm -f Makefile
258
259 maintainer-clean: distclean
260 rm -f ${WORLD}
261
262 extraclean: maintainer-clean
263 -rm -f *~ \#* m/?*~ s/?*~