]> code.delx.au - gnu-emacs/blob - leim/Makefile.in
(${TIT}): Fix whitespace.
[gnu-emacs] / leim / Makefile.in
1 # Makefile for leim subdirectory in GNU Emacs.
2 # Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
3 # Licensed to the Free Software Foundation.
4
5 # This file is part of GNU Emacs.
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.
24 SHELL = /bin/sh
25
26 # Here are the things that we expect ../configure to edit.
27 version=@version@
28 prefix=@prefix@
29 datadir=@datadir@
30 srcdir=@srcdir@
31
32 # Where to install LEIM files.
33 INSTALLDIR=${datadir}/emacs/${version}/leim
34
35 # On Xenix and the IBM RS6000, double-dot gets screwed up.
36 dot = .
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.
40 BUILT-EMACS = ${dot}${dot}/src/emacs
41
42 buildlisppath=${srcdir}/${dot}${dot}/lisp
43
44 # How to run Emacs.
45 RUN-EMACS = EMACSLOADPATH=$(buildlisppath) \
46 ${BUILT-EMACS} -batch --no-init-file --no-site-file --multibyte
47
48 # Subdirectories to be made if ${srcdir} is different from the current
49 # directory.
50 SUBDIRS=quail
51
52 # Files generated from TIT dictionaries for Chinese GB character set.
53 TIT-GB=\
54 quail/CTLau.elc \
55 quail/CCDOSPY.elc \
56 quail/Punct.elc \
57 quail/PY.elc \
58 quail/QJ.elc \
59 quail/SW.elc \
60 quail/TONEPY.elc \
61 quail/ZIRANMA.elc
62
63 # Files generated from TIT dictionaries for Chinese BIG5 character set.
64 TIT-BIG5=\
65 quail/4Corner.elc \
66 quail/ARRAY30.elc \
67 quail/CTLauB.elc \
68 quail/ECDICT.elc \
69 quail/ETZY.elc \
70 quail/Punct-b5.elc \
71 quail/PY-b5.elc \
72 quail/QJ-b5.elc \
73 quail/ZOZY.elc
74
75 CHINESE-TIT=${TIT-GB} ${TIT-BIG5}
76
77 NON-TIT-GB=${srcdir}/quail/py-punct.elc
78
79 NON-TIT-BIG5=${srcdir}/quail/quick-b5.elc ${srcdir}/quail/tsang-b5.elc \
80 ${srcdir}/quail/pypunct-b5.elc
81
82 NON-TIT-CNS=${srcdir}/quail/quick-cns.elc ${srcdir}/quail/tsang-cns.elc
83
84 CHINESE-NON-TIT=${NON-TIT-GB} ${NON-TIT-BIG5} ${NON-TIT-CNS}
85
86 CHINESE-GB=${TIT-GB} ${NON-TIT-GB}
87
88 CHINESE-BIG5=${TIT-BIG5} ${NON-TIT-BIG5}
89
90 CHINESE-CNS=${NON-TIT-CNS}
91
92 JAPANESE=${srcdir}/quail/japanese.elc ${srcdir}/ja-dic/ja-dic.elc
93
94 KOREAN= ${srcdir}/quail/hangul.elc \
95 ${srcdir}/quail/hangul3.elc \
96 ${srcdir}/quail/hanja.elc \
97 ${srcdir}/quail/hanja-jis.elc \
98 ${srcdir}/quail/symbol-ksc.elc
99
100 THAI=${srcdir}/quail/thai.elc
101
102 VIETNAMESE=${srcdir}/quail/viqr.elc
103
104 LAO=${srcdir}/quail/lao.elc ${srcdir}/quail/lrt.elc
105
106 INDIAN=${srcdir}/quail/devanagari.elc
107
108 TIBETAN=${srcdir}/quail/tibetan.elc
109
110 LATIN= ${srcdir}/quail/latin-pre.elc \
111 ${srcdir}/quail/latin-post.elc \
112 ${srcdir}/quail/latin-alt.elc \
113 ${srcdir}/quail/latin-ltx.elc
114
115 SLAVIC= \
116 ${srcdir}/quail/czech.elc \
117 ${srcdir}/quail/slovak.elc
118
119 GREEK=${srcdir}/quail/greek.elc
120
121 RUSSIAN=${srcdir}/quail/cyrillic.elc ${srcdir}/quail/cyril-jis.elc
122
123 MISC= \
124 ${srcdir}/quail/ethiopic.elc \
125 ${srcdir}/quail/ipa.elc \
126 ${srcdir}/quail/hebrew.elc
127
128 CHINESE=${CHINESE-GB} ${CHINESE-BIG5} ${CHINESE-CNS}
129 EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
130 ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
131 EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
132 WORLD=${ASIA} ${EUROPEAN} ${MISC}
133
134 TIT=${CHINESE-TIT}
135 NON-TIT=${CHINESE-NON-TIT} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${MISC}
136
137 .SUFFIXES: .elc .el
138
139 .el.elc:
140 ${RUN-EMACS} -f batch-byte-compile $<
141
142 all: ${BUILT-EMACS} ${SUBDIRS} ${TIT} leim-list.el
143
144 # To ensure that we can run Emacs. This target is ignored (never
145 # being hit) if a user changes default value of EMACS.
146 ${dot}${dot}/src/emacs:
147 cd ../src; ${MAKE} ${MFLAGS} emacs
148
149 ${SUBDIRS}:
150 mkdir $@
151 touch stamp-subdir
152
153 # The rule which generates ${TIT} files creates them all in one go.
154 # So we need to prevent parallel execution for that target, otherwise
155 # Emacs complains about files being locked. .NOTPARALLEL is for GNU
156 # Make, .NO_PARALLEL is for other Make's.
157 .NOTPARALLEL: ${TIT}
158
159 .NO_PARALLEL: ${TIT}
160
161 # Rule to generate quail/*.el from CXTERM-DIC/*.tit.
162 # The "if [ -f $@ ]; then true; " part prevents parallel Make's
163 # which don't honor .NOTPARALLEL, such as SGI's Make.
164 ${TIT}:
165 if [ -d quail ]; then true; else make quail; fi
166 if [ -f $@ ]; then true; else \
167 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
168 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC; fi
169 if [ -f $@ ]; then true; else \
170 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
171 -f batch-byte-compile ${TIT:.elc=.el}; fi
172
173 leim-list.el: ${SUBDIRS} ${WORLD}
174 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
175 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
176 --eval "(update-leim-list-file \".\")" ; \
177 else \
178 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
179 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
180 fi
181
182 install: all
183 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
184 rm -rf ${INSTALLDIR}/leim-list.el; \
185 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
186 echo "Copying leim files to ${INSTALLDIR} ..." ; \
187 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
188 tar -cf - leim-list.el quail ja-dic \
189 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
190 else \
191 tar -cf - leim-list.el quail \
192 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
193 cd ${srcdir}; \
194 tar -cf - quail/* ja-dic \
195 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
196 fi; \
197 else true; fi
198 -chmod -R a+r ${INSTALLDIR}
199
200 clean mostlyclean:
201 rm -f ${TIT} ${NON-TIT} ${WORLD} ${TIT:.elc=.el} leim-list.el
202
203 distclean maintainer-clean:
204 if test -f stamp-subdir; then rm -rf ${SUBDIRS} stamp-subdir; fi
205 rm -f Makefile
206
207 extraclean: distclean
208 -rm -f *~ \#* m/?*~ s/?*~