]> code.delx.au - gnu-emacs/blobdiff - leim/Makefile.in
Add toolbar.
[gnu-emacs] / leim / Makefile.in
index 0bfd80cb55e32cf945d9a50aee07fa2325c7ba62..9cff1448f974d50447249ca1d4868f7aea428cf6 100644 (file)
@@ -42,7 +42,7 @@ BUILT-EMACS = ${dot}${dot}/src/emacs
 buildlisppath=${srcdir}/${dot}${dot}/lisp
 
 # How to run Emacs.
-RUN-EMACS = ${BUILT-EMACS} -batch --no-init-file --no-site-file
+RUN-EMACS = ${BUILT-EMACS} -batch --no-init-file --no-site-file --multibyte
 
 # Subdirectories to be made if ${srcdir} is different from the current
 # directory.
@@ -88,7 +88,7 @@ CHINESE-BIG5=${TIT-BIG5} ${NON-TIT-BIG5}
 
 CHINESE-CNS=${NON-TIT-CNS} 
 
-JAPANESE=${srcdir}/quail/japanese.el ${srcdir}/skk/skkdic.el
+JAPANESE=${srcdir}/quail/japanese.el ${srcdir}/ja-dic/ja-dic.el
 
 KOREAN=        ${srcdir}/quail/hangul.el       \
        ${srcdir}/quail/hangul3.el      \
@@ -108,16 +108,23 @@ TIBETAN=${srcdir}/quail/tibetan.el
 
 LATIN=${srcdir}/quail/latin-pre.el ${srcdir}/quail/latin-post.el
 
+SLAVIC= \
+       ${srcdir}/quail/czech.el \
+       ${srcdir}/quail/slovak.el
+
 GREEK=${srcdir}/quail/greek.el
 
 RUSSIAN=${srcdir}/quail/cyrillic.el ${srcdir}/quail/cyril-jis.el
 
-MISC=${srcdir}/quail/ethiopic.el ${srcdir}/quail/ipa.el
+MISC= \
+       ${srcdir}/quail/ethiopic.el \
+       ${srcdir}/quail/ipa.el \
+       ${srcdir}/quail/hebrew.el
 
 CHINESE=${CHINESE-GB} ${CHINESE-BIG5} ${CHINESE-CNS}
 EASTASIA=${CHINESE} ${JAPANESE} ${KOREAN}
 ASIA=${EASTASIA} ${THAI} ${VIETNAMESE} ${LAO} ${INDIAN} ${TIBETAN}
-EUROPEAN=${LATIN} ${GREEK} ${RUSSIAN}
+EUROPEAN=${LATIN} ${SLAVIC} ${GREEK} ${RUSSIAN}
 WORLD=${ASIA} ${EUROPEAN} ${MISC}
 
 TIT=${CHINESE-TIT}
@@ -143,7 +150,7 @@ ${TIT}:
            -f batch-byte-compile ${TIT}
 
 leim-list.el: ${SUBDIRS} ${WORLD}
-       if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+       if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
          ${RUN-EMACS} -l ${buildlisppath}/international/quail \
            --eval "(update-leim-list-file \".\")" ; \
        else \
@@ -152,21 +159,22 @@ leim-list.el: ${SUBDIRS} ${WORLD}
        fi
 
 install: all
-       if [ x`(cd ${INSTALLDIR}; /bin/pwd)` != x`(/bin/pwd)` ] ; then \
+       if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
          rm -rf ${INSTALLDIR}/leim-list.el; \
-         rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \
+         rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/ja-dic ; \
          echo "Copying leim files to ${INSTALLDIR} ..." ; \
-         if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \
-           tar -cf - leim-list.el quail skk \
+         if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
+           tar -cf - leim-list.el quail ja-dic \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
          else \
            tar -cf - leim-list.el quail \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
            cd ${srcdir}; \
-           tar -cf - quail/* skk \
+           tar -cf - quail/* ja-dic \
                | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
          fi; \
        else true; fi
+       -chmod -R a+r ${INSTALLDIR}
 
 clean mostlyclean:
        ELC=`echo ${TIT} | sed 's/\.el/.elc/g'`; \