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 /lisp | |
| parent | 1afb7be2926786b437e11d45c0301f909ba07f37 (diff) | |
| download | emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz emacs-2e17c871e3359380613cbe82ec7cf51a040b6865.zip | |
Change uses of del to $(DEL).
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/makefile.nt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/lisp/makefile.nt b/lisp/makefile.nt index 51e27bdb1ea..a8a7f2a9e7a 100644 --- a/lisp/makefile.nt +++ b/lisp/makefile.nt | |||
| @@ -27,15 +27,15 @@ all: | |||
| 27 | # Assuming INSTALL_DIR is defined, copy the elisp files to it | 27 | # Assuming INSTALL_DIR is defined, copy the elisp files to it |
| 28 | # | 28 | # |
| 29 | install:; - mkdir $(INSTALL_DIR)\lisp | 29 | install:; - mkdir $(INSTALL_DIR)\lisp |
| 30 | - del .\same-dir.tst | 30 | - $(DEL) .\same-dir.tst |
| 31 | - del $(INSTALL_DIR)\lisp\same-dir.tst | 31 | - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst |
| 32 | echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst | 32 | echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst |
| 33 | if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp | 33 | if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp |
| 34 | - del $(INSTALL_DIR)\lisp\same-dir.tst | 34 | - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst |
| 35 | 35 | ||
| 36 | 36 | ||
| 37 | # | 37 | # |
| 38 | # Maintenance | 38 | # Maintenance |
| 39 | # | 39 | # |
| 40 | clean:; - del *~ | 40 | clean:; - $(DEL) *~ |
| 41 | - $(DEL_TREE) deleted | 41 | - $(DEL_TREE) deleted |