comparison leim/Makefile.in @ 23477:d470109824f2

(leim-list.el): Use `(cd foo && pwd)` instead of `(cd foo; pwd)`. (install): Likewise.
author Kenichi Handa <handa@m17n.org>
date Sat, 17 Oct 1998 01:58:01 +0000
parents ebca04b684de
children d7313d5217e2
comparison
equal deleted inserted replaced
23476:a1abe3ae2cd0 23477:d470109824f2
145 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC 145 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC
146 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 146 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
147 -f batch-byte-compile ${TIT} 147 -f batch-byte-compile ${TIT}
148 148
149 leim-list.el: ${SUBDIRS} ${WORLD} 149 leim-list.el: ${SUBDIRS} ${WORLD}
150 if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 150 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
151 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 151 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
152 --eval "(update-leim-list-file \".\")" ; \ 152 --eval "(update-leim-list-file \".\")" ; \
153 else \ 153 else \
154 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 154 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
155 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \ 155 --eval "(update-leim-list-file \".\" \"${srcdir}\")" ; \
156 fi 156 fi
157 157
158 install: all 158 install: all
159 if [ x`(cd ${INSTALLDIR}; /bin/pwd)` != x`(/bin/pwd)` ] ; then \ 159 if [ x`(cd ${INSTALLDIR} && /bin/pwd)` != x`(/bin/pwd)` ] ; then \
160 rm -rf ${INSTALLDIR}/leim-list.el; \ 160 rm -rf ${INSTALLDIR}/leim-list.el; \
161 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \ 161 rm -rf ${INSTALLDIR}/quail ${INSTALLDIR}/skk ; \
162 echo "Copying leim files to ${INSTALLDIR} ..." ; \ 162 echo "Copying leim files to ${INSTALLDIR} ..." ; \
163 if [ x`(cd ${srcdir}; /bin/pwd)` = x`(/bin/pwd)` ] ; then \ 163 if [ x`(cd ${srcdir} && /bin/pwd)` = x`(/bin/pwd)` ] ; then \
164 tar -cf - leim-list.el quail skk \ 164 tar -cf - leim-list.el quail skk \
165 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ 165 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\
166 else \ 166 else \
167 tar -cf - leim-list.el quail \ 167 tar -cf - leim-list.el quail \
168 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\ 168 | (cd ${INSTALLDIR}; umask 0; tar -xvf - && cat > /dev/null) ;\