Mercurial > emacs
changeset 13630:824556b916a4
(install, fast_install, real_install, clean):
Don't use switches to del not supported by Win95.
author | Geoff Voelker <voelker@cs.washington.edu> |
---|---|
date | Wed, 22 Nov 1995 18:57:36 +0000 |
parents | 47dcb4f14efb |
children | abb8f19ece25 |
files | nt/makefile.nt |
diffstat | 1 files changed, 13 insertions(+), 13 deletions(-) [+] |
line wrap: on
line diff
--- a/nt/makefile.nt Wed Nov 22 18:57:13 1995 +0000 +++ b/nt/makefile.nt Wed Nov 22 18:57:36 1995 +0000 @@ -71,12 +71,12 @@ cd ..\nt - $(CP) emacs.bat $(INSTALL_DIR)\bin - $(ADDPM) $(INSTALL_DIR) - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\same-dir.tst if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst # # This installs executables from ..\bin into the installation directory @@ -87,19 +87,19 @@ $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc - mkdir $(INSTALL_DIR)\bin - $(CP) emacs.bat $(INSTALL_DIR)\bin - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\same-dir.tst if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin if not exist ..\same-dir.tst nmake -f $(MAKE) real_install - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst real_install: - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\same-dir.tst - mkdir $(INSTALL_DIR)\etc - mkdir $(INSTALL_DIR)\info @@ -107,14 +107,14 @@ - mkdir $(INSTALL_DIR)\data if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info - - del /q ..\same-dir.tst - - del /q $(INSTALL_DIR)\same-dir.tst + - del ..\same-dir.tst + - del $(INSTALL_DIR)\same-dir.tst # # Maintenance # CLEAN_CMD = $(MAKE) -f makefile.nt clean -clean:; - del /q /s *~ *.pdb +clean:; - del /s *~ *.pdb - $(DEL_TREE) deleted - $(DEL_TREE) obj - $(DEL_TREE) ..\bin