1 # Makefile for leim subdirectory in GNU Emacs.
2 # Copyright (C) 1997 Electrotechnical Laboratory, JAPAN.
3 # Licensed to the Free Software Foundation.
5 # This file is part of GNU Emacs.
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)
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.
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.
22 # Avoid trouble on systems where the `SHELL' variable might be
23 # inherited from the environment.
26 # Here are the things that we expect ../configure to edit.
32 # Where to install LEIM files.
33 INSTALLDIR
=${datadir}/emacs
/${version}/leim
35 # On Xenix and the IBM RS6000, double-dot gets screwed up.
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
42 buildlisppath
=${srcdir}/${dot}${dot}/lisp
45 RUN-EMACS
= EMACSLOADPATH
=$(buildlisppath
) \
46 ${BUILT-EMACS
} -batch
--no-init-file
--no-site-file
--multibyte
48 # Subdirectories to be made if ${srcdir} is different from the current
52 # Files generated from TIT dictionaries for Chinese GB character set.
60 # Files generated from TIT dictionaries for Chinese BIG5 character set.
71 CHINESE-TIT
=${TIT-GB
} ${TIT-BIG5
}
73 NON-TIT-GB
=${srcdir}/quail
/py-punct.elc
75 NON-TIT-BIG5
=${srcdir}/quail
/pypunct-b5.elc
77 CHINESE-NON-TIT
=${NON-TIT-GB
} ${NON-TIT-BIG5
}
79 CHINESE-GB
=${TIT-GB
} ${NON-TIT-GB
}
81 CHINESE-BIG5
=${TIT-BIG5
} ${NON-TIT-BIG5
}
83 JAPANESE
=${srcdir}/quail
/japanese.elc
${srcdir}/ja-dic
/ja-dic.elc
85 KOREAN
= ${srcdir}/quail
/hangul.elc \
86 ${srcdir}/quail
/hangul3.elc \
87 ${srcdir}/quail
/hanja.elc \
88 ${srcdir}/quail
/hanja3.elc \
89 ${srcdir}/quail
/hanja-jis.elc \
90 ${srcdir}/quail
/symbol-ksc.elc
92 THAI
=${srcdir}/quail
/thai.elc
94 VIETNAMESE
=${srcdir}/quail
/viqr.elc
${srcdir}/quail
/vntelex.elc
96 LAO
=${srcdir}/quail
/lao.elc
${srcdir}/quail
/lrt.elc
98 INDIAN
=${srcdir}/quail
/indian.elc
100 TIBETAN
=${srcdir}/quail
/tibetan.elc
102 LATIN
= ${srcdir}/quail
/latin-pre.elc \
103 ${srcdir}/quail
/latin-post.elc \
104 ${srcdir}/quail
/latin-alt.elc \
105 ${srcdir}/quail
/latin-ltx.elc \
106 ${srcdir}/quail
/welsh.elc
108 UNICODE
=${srcdir}/quail
/sgml-input.elc
${srcdir}/quail
/rfc1345.elc \
109 ${srcdir}/quail
/uni-input.elc
112 ${srcdir}/quail
/czech.elc \
113 ${srcdir}/quail
/slovak.elc
115 GREEK
=${srcdir}/quail
/greek.elc
117 RUSSIAN
=${srcdir}/quail
/cyrillic.elc
${srcdir}/quail
/cyril-jis.elc
120 ${srcdir}/quail
/ethiopic.elc \
121 ${srcdir}/quail
/ipa.elc \
122 ${srcdir}/quail
/hebrew.elc \
123 ${srcdir}/quail
/georgian.elc
128 quail
/tsang-cns.elc \
129 quail
/quick-cns.elc \
135 CHINESE
=${CHINESE-GB
} ${CHINESE-BIG5
}
136 EASTASIA
=${CHINESE} ${JAPANESE} ${KOREAN}
137 ASIA
=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
138 EUROPEAN
=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
139 WORLD
=${ASIA} ${EUROPEAN} ${MISC} ${MISC-DIC
} ${UNICODE}
142 NON-TIT
=${CHINESE-NON-TIT
} ${JAPANESE} ${KOREAN} ${EUROPEAN} ${MISC}
147 ${RUN-EMACS
} -f batch-byte-compile
$<
149 all: ${BUILT-EMACS
} ${SUBDIRS} ${TIT} ${MISC-DIC
} leim-list.el
151 # To ensure that we can run Emacs. This target is ignored (never
152 # being hit) if a user changes default value of EMACS.
153 ${dot}${dot}/src
/emacs
:
154 cd ..
/src
; ${MAKE} ${MFLAGS} emacs
160 # The rules which generate ${TIT} and ${MISC-DIC} files create them all
161 # in one go. So we need to prevent parallel execution for that target,
162 # otherwise Emacs complains about files being locked. .NOTPARALLEL is
163 # for GNU Make, .NO_PARALLEL is for other Make's.
164 .NOTPARALLEL
: ${TIT} ${MISC-DIC
}
166 .NO_PARALLEL
: ${TIT} ${MISC-DIC
}
168 # Rule to generate quail/*.el from CXTERM-DIC/*.tit.
169 # The "if [ -f $@ ]; then true; " part prevents parallel Make's
170 # which don't honor .NOTPARALLEL, such as SGI's Make, from running
171 # this rule many times, one each for every file it creates.
173 if
[ -d quail
]; then true
; else make quail
; fi
174 if
[ -f
$@
]; then true
; else \
175 ${RUN-EMACS
} -l
${buildlisppath}/international
/titdic-cnv \
176 --eval
'(batch-titdic-convert t)' -dir quail
${srcdir}/CXTERM-DIC
; fi
177 if
[ -f
$@
]; then true
; else \
178 ${RUN-EMACS
} -l
${buildlisppath}/international
/quail \
179 -f batch-byte-compile
${TIT
:.elc
=.el
}; fi
181 # Rule to generate quail/*.el from MISC-DIC/*.
183 if
[ -d quail
]; then true
; else make quail
; fi
184 if
[ -f
$@
]; then true
; else \
185 ${RUN-EMACS
} -l
${buildlisppath}/international
/titdic-cnv \
186 -f batch-miscdic-convert
-dir quail
${srcdir}/MISC-DIC
; fi
187 if
[ -f
$@
]; then true
; else \
188 ${RUN-EMACS
} -l
${buildlisppath}/international
/quail \
189 -f batch-byte-compile
${MISC-DIC
:.elc
=.el
}; fi
191 leim-list.el
: ${SUBDIRS} ${WORLD}
192 if
[ x
`(cd ${srcdir} && /bin/pwd)` = x
`(/bin/pwd)` ] ; then \
193 ${RUN-EMACS
} -l
${buildlisppath}/international
/quail \
194 --eval
"(update-leim-list-file \".\")" ; \
196 ${RUN-EMACS
} -l
${buildlisppath}/international
/quail \
197 --eval
"(update-leim-list-file \".\" \"${srcdir}\")" ; \
201 if
[ x
`(cd ${INSTALLDIR} && /bin/pwd)` != x
`(/bin/pwd)` ] ; then \
202 rm -rf
${INSTALLDIR}/leim-list.el
; \
203 rm -rf
${INSTALLDIR}/quail
${INSTALLDIR}/ja-dic
; \
204 echo
"Copying leim files to ${INSTALLDIR} ..." ; \
205 if
[ x
`(cd ${srcdir} && /bin/pwd)` = x
`(/bin/pwd)` ] ; then \
206 tar -cf
- leim-list.el quail ja-dic \
207 |
(cd
${INSTALLDIR}; umask
0; tar -xvf
- && cat
> /dev
/null
) ;\
209 tar -cf
- leim-list.el quail \
210 |
(cd
${INSTALLDIR}; umask
0; tar -xvf
- && cat
> /dev
/null
) ;\
212 tar -cf
- quail
/* ja-dic \
213 |
(cd
${INSTALLDIR}; umask
0; tar -xvf
- && cat
> /dev
/null
) ;\
216 -rm -f
${INSTALLDIR}/.cvsignore
${INSTALLDIR}/*/.cvsignore
217 -chmod
-R a
+r
${INSTALLDIR}
220 rm -f
${TIT} ${NON-TIT
} ${WORLD} ${TIT
:.elc
=.el
} \
221 ${MISC-DIC
} ${MISC-DIC
:.elc
=.el
} leim-list.el
223 distclean maintainer-clean
:
224 if
test -f stamp-subdir
; then
rm -rf
${SUBDIRS} stamp-subdir
; fi
227 extraclean
: distclean
228 -rm -f
*~ \
#* m/?*~ s/?*~