aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEli Zaretskii2004-05-11 08:56:01 +0000
committerEli Zaretskii2004-05-11 08:56:01 +0000
commit026e4e51638b1c0e0574f1ec4e8000d07f509f65 (patch)
treef68f7d1d892543a025575997fc684fd03b48f95d
parentad89ba2bf7a3215c52b37623037d919f74b0055a (diff)
downloademacs-026e4e51638b1c0e0574f1ec4e8000d07f509f65.tar.gz
emacs-026e4e51638b1c0e0574f1ec4e8000d07f509f65.zip
(leim-list.el): Move commands to convert TIT and MISC dictionaries
from here... (changed.tit, changed.misc): ...to here. Remove the (now unneeded) test of the contents of changed.* files.
-rw-r--r--leim/Makefile.in18
1 files changed, 6 insertions, 12 deletions
diff --git a/leim/Makefile.in b/leim/Makefile.in
index 3f5e61b98a3..3c278d6cb61 100644
--- a/leim/Makefile.in
+++ b/leim/Makefile.in
@@ -174,7 +174,9 @@ TIT-SOURCES= \
174 ${srcdir}/CXTERM-DIC/ZOZY.tit 174 ${srcdir}/CXTERM-DIC/ZOZY.tit
175 175
176changed.tit: ${TIT-SOURCES} 176changed.tit: ${TIT-SOURCES}
177 echo "0" > $@ 177 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
178 -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
179 echo "changed" > $@
178 180
179MISC-SOURCES= \ 181MISC-SOURCES= \
180 ${srcdir}/MISC-DIC/CTLau-b5.html \ 182 ${srcdir}/MISC-DIC/CTLau-b5.html \
@@ -185,19 +187,11 @@ MISC-SOURCES= \
185 ${srcdir}/MISC-DIC/ziranma.cin 187 ${srcdir}/MISC-DIC/ziranma.cin
186 188
187changed.misc: ${MISC-SOURCES} 189changed.misc: ${MISC-SOURCES}
188 echo "0" > $@ 190 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
191 -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
192 echo "changed" > $@
189 193
190leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc 194leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc
191 if [ `(cat changed.tit)` = 0 ] ; then \
192 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
193 -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
194 echo "1" > changed.tit; \
195 else true; fi
196 if [ `(cat changed.misc)` = 0 ] ; then \
197 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
198 -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
199 echo "1" > changed.misc; \
200 else true; fi
201 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 195 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
202 -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el} 196 -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
203 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 197 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \