diff options
| -rw-r--r-- | leim/ChangeLog | 4 | ||||
| -rw-r--r-- | leim/Makefile.in | 12 |
2 files changed, 10 insertions, 6 deletions
diff --git a/leim/ChangeLog b/leim/ChangeLog index 44b4c659b0c..1c9e1d5a445 100644 --- a/leim/ChangeLog +++ b/leim/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2001-04-02 Eli Zaretskii <eliz@is.elta.co.il> | ||
| 2 | |||
| 3 | * Makefile.in (.NOTPARALLEL, .NO_PARALLEL): Add ${MISC-DIC}. | ||
| 4 | |||
| 1 | 2001-03-31 Kenichi Handa <handa@etl.go.jp> | 5 | 2001-03-31 Kenichi Handa <handa@etl.go.jp> |
| 2 | 6 | ||
| 3 | * Makefile.in (TIT-GB): Delete quail/PY.elc and quail/ZIRANMA.elc | 7 | * Makefile.in (TIT-GB): Delete quail/PY.elc and quail/ZIRANMA.elc |
diff --git a/leim/Makefile.in b/leim/Makefile.in index b6a1ceaa557..200d38729a1 100644 --- a/leim/Makefile.in +++ b/leim/Makefile.in | |||
| @@ -151,13 +151,13 @@ ${SUBDIRS}: | |||
| 151 | mkdir $@ | 151 | mkdir $@ |
| 152 | touch stamp-subdir | 152 | touch stamp-subdir |
| 153 | 153 | ||
| 154 | # The rule which generates ${TIT} files creates them all in one go. | 154 | # The rules which generate ${TIT} and ${MISC-DIC} files create them all |
| 155 | # So we need to prevent parallel execution for that target, otherwise | 155 | # in one go. So we need to prevent parallel execution for that target, |
| 156 | # Emacs complains about files being locked. .NOTPARALLEL is for GNU | 156 | # otherwise Emacs complains about files being locked. .NOTPARALLEL is |
| 157 | # Make, .NO_PARALLEL is for other Make's. | 157 | # for GNU Make, .NO_PARALLEL is for other Make's. |
| 158 | .NOTPARALLEL: ${TIT} | 158 | .NOTPARALLEL: ${TIT} ${MISC-DIC} |
| 159 | 159 | ||
| 160 | .NO_PARALLEL: ${TIT} | 160 | .NO_PARALLEL: ${TIT} ${MISC-DIC} |
| 161 | 161 | ||
| 162 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. | 162 | # Rule to generate quail/*.el from CXTERM-DIC/*.tit. |
| 163 | # The "if [ -f $@ ]; then true; " part prevents parallel Make's | 163 | # The "if [ -f $@ ]; then true; " part prevents parallel Make's |