Mercurial > emacs
diff lisp/makefile.nt @ 14899:4b7b8a937a5d
Change uses of del to $(DEL).
| author | Geoff Voelker <voelker@cs.washington.edu> |
|---|---|
| date | Thu, 28 Mar 1996 04:39:51 +0000 |
| parents | 006e33d6a6c1 |
| children | 80562f089595 |
line wrap: on
line diff
--- a/lisp/makefile.nt Wed Mar 27 23:32:46 1996 +0000 +++ b/lisp/makefile.nt Thu Mar 28 04:39:51 1996 +0000 @@ -27,15 +27,15 @@ # Assuming INSTALL_DIR is defined, copy the elisp files to it # install:; - mkdir $(INSTALL_DIR)\lisp - - del .\same-dir.tst - - del $(INSTALL_DIR)\lisp\same-dir.tst + - $(DEL) .\same-dir.tst + - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst echo SameDirTest > $(INSTALL_DIR)\lisp\same-dir.tst if not exist .\same-dir.tst $(CP_DIR) . $(INSTALL_DIR)\lisp - - del $(INSTALL_DIR)\lisp\same-dir.tst + - $(DEL) $(INSTALL_DIR)\lisp\same-dir.tst # # Maintenance # -clean:; - del *~ +clean:; - $(DEL) *~ - $(DEL_TREE) deleted
