comparison leim/Makefile.in @ 21300:7662be098677

(${TIT}): Fix shell conditional syntax.
author Richard M. Stallman <rms@gnu.org>
date Fri, 27 Mar 1998 04:58:07 +0000
parents 6e9dd8a366f5
children f1141710efad
comparison
equal deleted inserted replaced
21299:9293d783c708 21300:7662be098677
133 mkdir $@ 133 mkdir $@
134 touch stamp-subdir 134 touch stamp-subdir
135 135
136 # Rule to generate quail/*.el from CXTERM-DIC/*.tit. 136 # Rule to generate quail/*.el from CXTERM-DIC/*.tit.
137 ${TIT}: 137 ${TIT}:
138 [ -d quail ] || mkdir quail 138 if [ -d quail ]; then true; else make quail; fi
139 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \ 139 ${RUN-EMACS} -l ${buildlisppath}/international/titdic-cnv \
140 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC 140 --eval '(batch-titdic-convert t)' -dir quail ${srcdir}/CXTERM-DIC
141 ${RUN-EMACS} -l ${buildlisppath}/international/quail \ 141 ${RUN-EMACS} -l ${buildlisppath}/international/quail \
142 -f batch-byte-compile ${TIT} 142 -f batch-byte-compile ${TIT}
143 143