]> git.eshelyaron.com Git - emacs.git/commitdiff
(leim-list.el): Move commands to convert TIT and MISC dictionaries
authorEli Zaretskii <eliz@gnu.org>
Tue, 11 May 2004 08:56:01 +0000 (08:56 +0000)
committerEli Zaretskii <eliz@gnu.org>
Tue, 11 May 2004 08:56:01 +0000 (08:56 +0000)
from here...
(changed.tit, changed.misc): ...to here.  Remove the (now unneeded)
test of the contents of changed.* files.

leim/Makefile.in

index 3f5e61b98a3a4dd8636a91d1a20990a863737e56..3c278d6cb6154ca35e4be8b4bdf248019a53d781 100644 (file)
@@ -174,7 +174,9 @@ TIT-SOURCES= \
        ${srcdir}/CXTERM-DIC/ZOZY.tit
 
 changed.tit: ${TIT-SOURCES}
-       echo "0" > $@
+       ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
+         -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
+         echo "changed" > $@
 
 MISC-SOURCES= \
        ${srcdir}/MISC-DIC/CTLau-b5.html \
@@ -185,19 +187,11 @@ MISC-SOURCES= \
        ${srcdir}/MISC-DIC/ziranma.cin
 
 changed.misc: ${MISC-SOURCES}
-       echo "0" > $@
+       ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
+         -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
+         echo "changed" > $@
 
 leim-list.el: ${SUBDIRS} ${NON-TIT-MISC} changed.tit changed.misc
-       if [ `(cat changed.tit)` = 0 ] ; then \
-         ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
-           -f batch-titdic-convert -dir quail ${srcdir}/CXTERM-DIC; \
-         echo "1" > changed.tit; \
-       else true; fi
-       if [ `(cat changed.misc)` = 0 ] ; then \
-         ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
-           -f batch-miscdic-convert -dir quail ${srcdir}/MISC-DIC; \
-         echo "1" > changed.misc; \
-       else true; fi
        ${RUN-EMACS}  -l ${buildlisppath}/international/quail \
          -f batch-byte-compile-if-not-done ${TIT-MISC:.elc=.el}
        if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \