aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2000-08-29 13:36:32 +0000
committerDave Love2000-08-29 13:36:32 +0000
commitdaba11ce6c9d36102e5bd7ebc57c2541eabc3f7f (patch)
treebadc9cbfb16115e84b23240fe3c0fd1417986b24
parentba087cd7d982841b6aef7b19a2402c1b203bf5e4 (diff)
downloademacs-daba11ce6c9d36102e5bd7ebc57c2541eabc3f7f.tar.gz
emacs-daba11ce6c9d36102e5bd7ebc57c2541eabc3f7f.zip
ja-dic <- skk in several places.
-rw-r--r--leim/ChangeLog4
-rw-r--r--leim/Makefile.in190
2 files changed, 188 insertions, 6 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog
index 48a98126187..9a193b3701e 100644
--- a/leim/ChangeLog
+++ b/leim/ChangeLog
@@ -1,3 +1,7 @@
12000-08-29 Dave Love <fx@gnu.org>
2
3 * Makefile.in: ja-dic <- skk in several places.
4
12000-08-25 Kenichi Handa <handa@etl.go.jp> 52000-08-25 Kenichi Handa <handa@etl.go.jp>
2 6
3 * ja-dic: Directory name changed from skkdic. 7 * ja-dic: Directory name changed from skkdic.
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 776a1ecb642..9cff1448f97 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -1,7 +1,185 @@
1# This placeholder appears in the `leim' subdirectory in the Emacs 1# Makefile for leim subdirectory in GNU Emacs.
2# distribution. It is is overwritten with a real makefile 2# Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
3# when you actually extract LEIM into the directory. 3# Licensed to the Free Software Foundation.
4all install:
5 4
6# Avoid error when these targets are used. 5# This file is part of GNU Emacs.
7clean distclean mostlyclean maintainer-clean: 6
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.el \
54 quail/CCDOSPY.el \
55 quail/Punct.el \
56 quail/PY.el \
57 quail/QJ.el \
58 quail/SW.el \
59 quail/TONEPY.el \
60 quail/ZIRANMA.el
61
62# Files generated from TIT dictionaries for Chinese BIG5 character set.
63TIT-BIG5=\
64 quail/4Corner.el \
65 quail/ARRAY30.el \
66 quail/CTLauB.el \
67 quail/ECDICT.el \
68 quail/ETZY.el \
69 quail/Punct-b5.el \
70 quail/PY-b5.el \
71 quail/QJ-b5.el \
72 quail/ZOZY.el
73
74CHINESE-TIT=${TIT-GB} ${TIT-BIG5}
75
76NON-TIT-GB=${srcdir}/quail/py-punct.el
77
78NON-TIT-BIG5=${srcdir}/quail/quick-b5.el ${srcdir}/quail/tsang-b5.el \
79 ${srcdir}/quail/pypunct-b5.el
80
81NON-TIT-CNS=${srcdir}/quail/quick-cns.el ${srcdir}/quail/tsang-cns.el
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.el ${srcdir}/ja-dic/ja-dic.el
92
93KOREAN= ${srcdir}/quail/hangul.el \
94 ${srcdir}/quail/hangul3.el \
95 ${srcdir}/quail/hanja.el \
96 ${srcdir}/quail/hanja-jis.el \
97 ${srcdir}/quail/symbol-ksc.el
98
99THAI=${srcdir}/quail/thai.el
100
101VIETNAMESE=${srcdir}/quail/viqr.el
102
103LAO=${srcdir}/quail/lao.el ${srcdir}/quail/lrt.el
104
105INDIAN=${srcdir}/quail/devanagari.el
106
107TIBETAN=${srcdir}/quail/tibetan.el
108
109LATIN=${srcdir}/quail/latin-pre.el ${srcdir}/quail/latin-post.el
110
111SLAVIC= \
112 ${srcdir}/quail/czech.el \
113 ${srcdir}/quail/slovak.el
114
115GREEK=${srcdir}/quail/greek.el
116
117RUSSIAN=${srcdir}/quail/cyrillic.el ${srcdir}/quail/cyril-jis.el
118
119MISC= \
120 ${srcdir}/quail/ethiopic.el \
121 ${srcdir}/quail/ipa.el \
122 ${srcdir}/quail/hebrew.el
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 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
150 -f batch-byte-compile ${TIT}
151
152leim-list.el: ${SUBDIRS} ${WORLD}
153 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
154 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
155 --eval "(update-leim-list-file \".\")" ; \
156 else \
157 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
158 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
159 fi
160
161install: all
162 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
163 rm -rf ${INSTALLDIR}/leim-list.el; \
164 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
165 echo "Copying leim files to ${INSTALLDIR} ..." ; \
166 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
167 tar -cf - leim-list.el quail ja-dic \
168 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
169 else \
170 tar -cf - leim-list.el quail \
171 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
172 cd ${srcdir}; \
173 tar -cf - quail/* ja-dic \
174 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
175 fi; \
176 else true; fi
177 -chmod -R a+r ${INSTALLDIR}
178
179clean mostlyclean:
180 ELC=`echo ${TIT} | sed 's/\.el/.elc/g'`; \
181 rm -f ${TIT} $$ELC leim-list.el
182
183distclean maintainer-clean:
184 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
185 rm -f Makefile