diff options
author | Eli Zaretskii <eliz@gnu.org> | 2001-04-02 07:49:21 +0000 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2001-04-02 07:49:21 +0000 |
commit | e217c26ee5cd8dfd48572714024e451babb29909 (patch) | |
tree | adce167c2aae7799d4ee1106c58ef5dd26a56640 /leim/Makefile.in | |
parent | 279b15d4cb3c07a81302601a8e8dd9670eb6acb5 (diff) | |
download | emacs-e217c26ee5cd8dfd48572714024e451babb29909.tar.gz |
(.NOTPARALLEL, .NO_PARALLEL): Add ${MISC-DIC}.
Diffstat (limited to 'leim/Makefile.in')
-rw-r--r-- | leim/Makefile.in | 12 |
1 files changed, 6 insertions, 6 deletions
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}: mkdir $@ touch stamp-subdir -# The rule which generates ${TIT} files creates them all in one go. -# So we need to prevent parallel execution for that target, otherwise -# Emacs complains about files being locked. .NOTPARALLEL is for GNU -# Make, .NO_PARALLEL is for other Make's. -.NOTPARALLEL: ${TIT} +# The rules which generate ${TIT} and ${MISC-DIC} files create them all +# in one go. So we need to prevent parallel execution for that target, +# otherwise Emacs complains about files being locked. .NOTPARALLEL is +# for GNU Make, .NO_PARALLEL is for other Make's. +.NOTPARALLEL: ${TIT} ${MISC-DIC} -.NO_PARALLEL: ${TIT} +.NO_PARALLEL: ${TIT} ${MISC-DIC} # Rule to generate quail/*.el from CXTERM-DIC/*.tit. # The "if [ -f $@ ]; then true; " part prevents parallel Make's |