diff options
| author | Geoff Voelker | 1996-03-28 04:39:51 +0000 |
|---|---|---|
| committer | Geoff Voelker | 1996-03-28 04:39:51 +0000 |
| commit | 2e17c871e3359380613cbe82ec7cf51a040b6865 (patch) | |
| tree | eda83d50142a4cc3360c3547ee7cd245c289d3f8 /src | |
| parent | 1afb7be2926786b437e11d45c0301f909ba07f37 (diff) | |
| download | emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.zip | |
Change uses of del to $(DEL).
Diffstat (limited to 'src')
| -rw-r--r-- | src/makefile.nt | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makefile.nt b/src/makefile.nt index 621d23818e1..b4fe21fb139 100644 --- a/src/makefile.nt +++ b/src/makefile.nt | |||
| @@ -163,7 +163,7 @@ paths.h: ..\nt\paths.h | |||
| 163 | # | 163 | # |
| 164 | DOC = obj\etc\DOC-X | 164 | DOC = obj\etc\DOC-X |
| 165 | $(DOC):; cd ..\lib-src | 165 | $(DOC):; cd ..\lib-src |
| 166 | - del DOC-X | 166 | - $(DEL) DOC-X |
| 167 | $(MAKE) -f makefile.nt all | 167 | $(MAKE) -f makefile.nt all |
| 168 | cd ..\src | 168 | cd ..\src |
| 169 | 169 | ||
| @@ -230,7 +230,7 @@ install: all | |||
| 230 | # | 230 | # |
| 231 | # Maintenance | 231 | # Maintenance |
| 232 | # | 232 | # |
| 233 | clean:; - del *~ *.pdb config.h paths.h | 233 | clean:; - $(DEL) *~ *.pdb config.h paths.h |
| 234 | - $(DEL_TREE) deleted | 234 | - $(DEL_TREE) deleted |
| 235 | - $(DEL_TREE) obj | 235 | - $(DEL_TREE) obj |
| 236 | 236 | ||
| @@ -239,7 +239,7 @@ clean:; - del *~ *.pdb config.h paths.h | |||
| 239 | # this target is mostly used for debugging. | 239 | # this target is mostly used for debugging. |
| 240 | # | 240 | # |
| 241 | cleandump:; cd $(BLD) | 241 | cleandump:; cd $(BLD) |
| 242 | - del callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj | 242 | - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj |
| 243 | cd ..\.. | 243 | cd ..\.. |
| 244 | 244 | ||
| 245 | 245 | ||