diff options
| author | Geoff Voelker | 1995-11-22 18:57:36 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1995-11-22 18:57:36 +0000 |
| commit | bfa347fd9a5b75b303900cd02eedbec7a0cb0dd5 (patch) | |
| tree | 33d2da4c948e670269f4059964e9ac52b7d76c08 /nt | |
| parent | 99eac72a2ef49643b7ad4a68b95d25d66946a3d7 (diff) | |
| download | emacs-bfa347fd9a5b75b303900cd02eedbec7a0cb0dd5.tar.gz emacs-bfa347fd9a5b75b303900cd02eedbec7a0cb0dd5.zip | |
(install, fast_install, real_install, clean):
Don't use switches to del not supported by Win95.
Diffstat (limited to 'nt')
| -rw-r--r-- | nt/makefile.nt | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt index ee5a6e00cad..a3bf3b47eb1 100644 --- a/nt/makefile.nt +++ b/nt/makefile.nt | |||
| @@ -71,12 +71,12 @@ install: all emacs.bat | |||
| 71 | cd ..\nt | 71 | cd ..\nt |
| 72 | - $(CP) emacs.bat $(INSTALL_DIR)\bin | 72 | - $(CP) emacs.bat $(INSTALL_DIR)\bin |
| 73 | - $(ADDPM) $(INSTALL_DIR) | 73 | - $(ADDPM) $(INSTALL_DIR) |
| 74 | - del /q ..\same-dir.tst | 74 | - del ..\same-dir.tst |
| 75 | - del /q $(INSTALL_DIR)\same-dir.tst | 75 | - del $(INSTALL_DIR)\same-dir.tst |
| 76 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst | 76 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst |
| 77 | if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install | 77 | if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install |
| 78 | - del /q ..\same-dir.tst | 78 | - del ..\same-dir.tst |
| 79 | - del /q $(INSTALL_DIR)\same-dir.tst | 79 | - del $(INSTALL_DIR)\same-dir.tst |
| 80 | 80 | ||
| 81 | # | 81 | # |
| 82 | # This installs executables from ..\bin into the installation directory | 82 | # This installs executables from ..\bin into the installation directory |
| @@ -87,19 +87,19 @@ fast_install: | |||
| 87 | $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc | 87 | $(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc |
| 88 | - mkdir $(INSTALL_DIR)\bin | 88 | - mkdir $(INSTALL_DIR)\bin |
| 89 | - $(CP) emacs.bat $(INSTALL_DIR)\bin | 89 | - $(CP) emacs.bat $(INSTALL_DIR)\bin |
| 90 | - del /q ..\same-dir.tst | 90 | - del ..\same-dir.tst |
| 91 | - del /q $(INSTALL_DIR)\same-dir.tst | 91 | - del $(INSTALL_DIR)\same-dir.tst |
| 92 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst | 92 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst |
| 93 | if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin | 93 | if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin |
| 94 | if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin | 94 | if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin |
| 95 | if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin | 95 | if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin |
| 96 | if not exist ..\same-dir.tst nmake -f $(MAKE) real_install | 96 | if not exist ..\same-dir.tst nmake -f $(MAKE) real_install |
| 97 | - del /q ..\same-dir.tst | 97 | - del ..\same-dir.tst |
| 98 | - del /q $(INSTALL_DIR)\same-dir.tst | 98 | - del $(INSTALL_DIR)\same-dir.tst |
| 99 | 99 | ||
| 100 | real_install: | 100 | real_install: |
| 101 | - del /q ..\same-dir.tst | 101 | - del ..\same-dir.tst |
| 102 | - del /q $(INSTALL_DIR)\same-dir.tst | 102 | - del $(INSTALL_DIR)\same-dir.tst |
| 103 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst | 103 | echo SameDirTest > $(INSTALL_DIR)\same-dir.tst |
| 104 | - mkdir $(INSTALL_DIR)\etc | 104 | - mkdir $(INSTALL_DIR)\etc |
| 105 | - mkdir $(INSTALL_DIR)\info | 105 | - mkdir $(INSTALL_DIR)\info |
| @@ -107,14 +107,14 @@ real_install: | |||
| 107 | - mkdir $(INSTALL_DIR)\data | 107 | - mkdir $(INSTALL_DIR)\data |
| 108 | if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc | 108 | if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc |
| 109 | if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info | 109 | if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info |
| 110 | - del /q ..\same-dir.tst | 110 | - del ..\same-dir.tst |
| 111 | - del /q $(INSTALL_DIR)\same-dir.tst | 111 | - del $(INSTALL_DIR)\same-dir.tst |
| 112 | 112 | ||
| 113 | # | 113 | # |
| 114 | # Maintenance | 114 | # Maintenance |
| 115 | # | 115 | # |
| 116 | CLEAN_CMD = $(MAKE) -f makefile.nt clean | 116 | CLEAN_CMD = $(MAKE) -f makefile.nt clean |
| 117 | clean:; - del /q /s *~ *.pdb | 117 | clean:; - del /s *~ *.pdb |
| 118 | - $(DEL_TREE) deleted | 118 | - $(DEL_TREE) deleted |
| 119 | - $(DEL_TREE) obj | 119 | - $(DEL_TREE) obj |
| 120 | - $(DEL_TREE) ..\bin | 120 | - $(DEL_TREE) ..\bin |