aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--leim/Makefile.in194
1 files changed, 6 insertions, 188 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 30db4dc0ecf..776a1ecb642 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -1,189 +1,7 @@
1# Makefile for leim subdirectory in GNU Emacs. 1# This placeholder appears in the `leim' subdirectory in the Emacs
2# Copyright (C) 1997 Electrotechnical Laboratory, JAPAN. 2# distribution. It is is overwritten with a real makefile
3# Licensed to the Free Software Foundation. 3# when you actually extract LEIM into the directory.
4all install:
4 5
5# This file is part of GNU Emacs. 6# Avoid error when these targets are used.
6 7clean distclean mostlyclean maintainer-clean:
7# GNU Emacs is free software; you can redistribute it and/or modify
8# it under the terms of the GNU General Public License as published by
9# the Free Software Foundation; either version 2, or (at your option)
10# any later version.
11#
12# GNU Emacs is distributed in the hope that it will be useful,
13# but WITHOUT ANY WARRANTY; without even the implied warranty of
14# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15# GNU General Public License for more details.
16#
17# You should have received a copy of the GNU General Public License
18# along with GNU Emacs; see the file COPYING. If not, write to the
19# Free Software Foundation, Inc., 59 Temple Place - Suite 330,
20# Boston, MA 02111-1307, USA.
21
22# Avoid trouble on systems where the `SHELL' variable might be
23# inherited from the environment.
24SHELL = /bin/sh
25
26# Here are the things that we expect ../configure to edit.
27version=@version@
28prefix=@prefix@
29datadir=@datadir@
30srcdir=@srcdir@
31
32# Where to install LEIM files.
33INSTALLDIR=${datadir}/emacs/${version}/leim
34
35# On Xenix and the IBM RS6000, double-dot gets screwed up.
36dot = .
37
38# Which Emacs to use to convert TIT files to Emacs Lisp files,
39# byte-compile Emacs Lisp files, and generate the file leim-list.el.
40BUILT-EMACS = ${dot}${dot}/src/emacs
41
42buildlisppath=${srcdir}/${dot}${dot}/lisp
43
44# How to run Emacs.
45RUN-EMACS = ${BUILT-EMACS} -batch --no-init-file --no-site-file --multibyte
46
47# Subdirectories to be made if ${srcdir} is different from the current
48# directory.
49SUBDIRS=quail
50
51# Files generated from TIT dictionaries for Chinese GB character set.
52TIT-GB=\
53 quail/CTLau.elc \
54 quail/CCDOSPY.elc \
55 quail/Punct.elc \
56 quail/PY.elc \
57 quail/QJ.elc \
58 quail/SW.elc \
59 quail/TONEPY.elc \
60 quail/ZIRANMA.elc
61
62# Files generated from TIT dictionaries for Chinese BIG5 character set.
63TIT-BIG5=\
64 quail/4Corner.elc \
65 quail/ARRAY30.elc \
66 quail/CTLauB.elc \
67 quail/ECDICT.elc \
68 quail/ETZY.elc \
69 quail/Punct-b5.elc \
70 quail/PY-b5.elc \
71 quail/QJ-b5.elc \
72 quail/ZOZY.elc
73
74CHINESE-TIT=${TIT-GB} ${TIT-BIG5}
75
76NON-TIT-GB=${srcdir}/quail/py-punct.elc
77
78NON-TIT-BIG5=${srcdir}/quail/quick-b5.elc ${srcdir}/quail/tsang-b5.elc \
79 ${srcdir}/quail/pypunct-b5.elc
80
81NON-TIT-CNS=${srcdir}/quail/quick-cns.elc ${srcdir}/quail/tsang-cns.elc
82
83CHINESE-NON-TIT=${NON-TIT-GB} ${NON-TIT-BIG5} ${NON-TIT-CNS}
84
85CHINESE-GB=${TIT-GB} ${NON-TIT-GB}
86
87CHINESE-BIG5=${TIT-BIG5} ${NON-TIT-BIG5}
88
89CHINESE-CNS=${NON-TIT-CNS}
90
91JAPANESE=${srcdir}/quail/japanese.elc ${srcdir}/ja-dic/ja-dic.elc
92
93KOREAN= ${srcdir}/quail/hangul.elc \
94 ${srcdir}/quail/hangul3.elc \
95 ${srcdir}/quail/hanja.elc \
96 ${srcdir}/quail/hanja-jis.elc \
97 ${srcdir}/quail/symbol-ksc.elc
98
99THAI=${srcdir}/quail/thai.elc
100
101VIETNAMESE=${srcdir}/quail/viqr.elc
102
103LAO=${srcdir}/quail/lao.elc ${srcdir}/quail/lrt.elc
104
105INDIAN=${srcdir}/quail/devanagari.elc
106
107TIBETAN=${srcdir}/quail/tibetan.elc
108
109LATIN=${srcdir}/quail/latin-pre.elc ${srcdir}/quail/latin-post.elc
110
111SLAVIC= \
112 ${srcdir}/quail/czech.elc \
113 ${srcdir}/quail/slovak.elc
114
115GREEK=${srcdir}/quail/greek.elc
116
117RUSSIAN=${srcdir}/quail/cyrillic.elc ${srcdir}/quail/cyril-jis.elc
118
119MISC= \
120 ${srcdir}/quail/ethiopic.elc \
121 ${srcdir}/quail/ipa.elc \
122 ${srcdir}/quail/hebrew.elc
123
124CHINESE=${CHINESE-GB} ${CHINESE-BIG5} ${CHINESE-CNS}
125EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
126ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
127EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
128WORLD=${ASIA} ${EUROPEAN} ${MISC}
129
130TIT=${CHINESE-TIT}
131NON-TIT=${CHINESE-NON-TIT} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${MISC}
132
133all: ${BUILT-EMACS} ${SUBDIRS} ${TIT} leim-list.el
134
135# To ensure that we can run Emacs. This target is ignored (never
136# being hit) if a user changes default value of EMACS.
137${dot}${dot}/src/emacs:
138 cd ../src; ${MAKE} ${MFLAGS} emacs
139
140${SUBDIRS}:
141 mkdir $@
142 touch stamp-subdir
143
144# Rule to generate quail/*.el from CXTERM-DIC/*.tit.
145${TIT}:
146 if [ -d quail ]; then true; else make quail; fi
147 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
148 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC
149 EL=`echo ${TIT} | sed 's/\.elc/\.el/g'`; \
150 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
151 -f batch-byte-compile $$EL
152
153.el.elc:
154 ${RUN-EMACS} -f batch-byte-compile $<
155
156leim-list.el: ${SUBDIRS} ${WORLD}
157 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
158 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
159 --eval "(update-leim-list-file \".\")" ; \
160 else \
161 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
162 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
163 fi
164
165install: all
166 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
167 rm -rf ${INSTALLDIR}/leim-list.el; \
168 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
169 echo "Copying leim files to ${INSTALLDIR} ..." ; \
170 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
171 tar -cf - leim-list.el quail ja-dic \
172 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
173 else \
174 tar -cf - leim-list.el quail \
175 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
176 cd ${srcdir}; \
177 tar -cf - quail/* ja-dic \
178 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
179 fi; \
180 else true; fi
181 -chmod -R a+r ${INSTALLDIR}
182
183clean mostlyclean:
184 EL=`echo ${TIT} | sed 's/\.elc/.el/g'`; \
185 rm -f ${TIT} $$EL leim-list.el
186
187distclean maintainer-clean:
188 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
189 rm -f Makefile