aboutsummaryrefslogtreecommitdiffstats
path: root/leim/makefile.w32-in
diff options
context:
space:
mode:
authorEli Zaretskii2012-03-25 20:17:46 +0200
committerEli Zaretskii2012-03-25 20:17:46 +0200
commite5a69fd00a424f59f2ef7be8049b47340ddaa1ca (patch)
tree23541145e69bc2288d2a931f4b4c9d66c35db67d /leim/makefile.w32-in
parentbf43fa51a6aabd68659c90eeb42a1b214820ea4a (diff)
downloademacs-e5a69fd00a424f59f2ef7be8049b47340ddaa1ca.tar.gz
emacs-e5a69fd00a424f59f2ef7be8049b47340ddaa1ca.zip
Fix parallel "make install" on MS-Windows.
nt/makefile.w32-in (install-bin): Don't copy addpm.exe here. Use $(DIRNAME)_same-dir.tst instead of same-dir.tst, to avoid stepping on other (parallel) Make job's toes. (install-other-dirs-nmake, install-other-dirs-gmake): Depend on `all'. (install-shortcuts): Depend on $(INSTALL_DIR)/bin. Copy addpm.exe here. (maybe-copy-distfiles-CMD, maybe-copy-distfiles-SH, dist): Depend on create-tmp-dist-dir. nt/nmake.defs (DIRNAME): New variable. (IFNOTSAMEDIR): Use $(DIRNAME)_same-dir.tst instead of same-dir.tst. nt/gmake.defs (DIRNAME): New variable. (IFNOTSAMEDIR): Use $(DIRNAME)_same-dir.tst instead of same-dir.tst, to avoid conflicts between several (parallel) Make jobs. lisp/makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead of same-dir.tst, to avoid stepping on other (parallel) Make job's toes. leim/makefile.w32-in (install): Use $(DIRNAME)_same-dir.tst instead of same-dir.tst, to avoid stepping on other (parallel) Make job's toes.
Diffstat (limited to 'leim/makefile.w32-in')
-rw-r--r--leim/makefile.w32-in8
1 files changed, 4 insertions, 4 deletions
diff --git a/leim/makefile.w32-in b/leim/makefile.w32-in
index 19ccaf4f62b..e9a56e79f73 100644
--- a/leim/makefile.w32-in
+++ b/leim/makefile.w32-in
@@ -201,13 +201,13 @@ leim-list.el: $(SUBDIRS) $(WORLD) $(srcdir)/leim-ext.el
201 201
202install: all 202install: all
203 - mkdir "$(INSTALLDIR)" 203 - mkdir "$(INSTALLDIR)"
204 - $(DEL) same-dir.tst 204 - $(DEL) $(DIRNAME)_same-dir.tst
205 - $(DEL) $(INSTALL_DIR)/same-dir.tst 205 - $(DEL) $(INSTALL_DIR)/$(DIRNAME)_same-dir.tst
206 echo SameDirTest > $(INSTALL_DIR)/same-dir.tst 206 echo SameDirTest > $(INSTALL_DIR)/$(DIRNAME)_same-dir.tst
207 $(IFNOTSAMEDIR) $(CP) leim-list.el $(INSTALLDIR) $(ENDIF) 207 $(IFNOTSAMEDIR) $(CP) leim-list.el $(INSTALLDIR) $(ENDIF)
208 $(IFNOTSAMEDIR) $(CP_DIR) quail $(INSTALLDIR) $(ENDIF) 208 $(IFNOTSAMEDIR) $(CP_DIR) quail $(INSTALLDIR) $(ENDIF)
209 $(IFNOTSAMEDIR) $(CP_DIR) ja-dic $(INSTALLDIR) $(ENDIF) 209 $(IFNOTSAMEDIR) $(CP_DIR) ja-dic $(INSTALLDIR) $(ENDIF)
210 - $(DEL) $(INSTALL_DIR)/same-dir.tst 210 - $(DEL) $(INSTALL_DIR)/$(DIRNAME)_same-dir.tst
211 211
212clean mostlyclean: 212clean mostlyclean:
213 - $(FOREACH) $(TIT) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR) 213 - $(FOREACH) $(TIT) $(FORDO) $(DEL) $(FORVAR) $(ENDFOR)