summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1995-11-22 19:04:36 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1995-11-22 19:04:36 +0000
commitb2a397cd1ac8243c1818cf1439dd55e2ba9c4b25 (patch)
treef494cebe0208444818e254bfb4d362e621b00353
parent65a0795ae5d7e14bf075d9b0dc8aa2191afa900b (diff)
downloademacs-b2a397cd1ac8243c1818cf1439dd55e2ba9c4b25.tar.gz
(install, clean): Don't use switches to del not supported by Win95.
-rw-r--r--lisp/makefile.nt9
1 files changed, 4 insertions, 5 deletions
diff --git a/lisp/makefile.nt b/lisp/makefile.nt
index e1d09a36ba8..51e27bdb1ea 100644
--- a/lisp/makefile.nt
+++ b/lisp/makefile.nt
@@ -27,16 +27,15 @@ all:
# Assuming INSTALL_DIR is defined, copy the elisp files to it
#
install:; - mkdir $(INSTALL_DIR)\lisp
- - del /q .\same-dir.tst
- - del /q $(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 /q $(INSTALL_DIR)\lisp\same-dir.tst
+ - del $(INSTALL_DIR)\lisp\same-dir.tst
#
# Maintenance
#
-clean:; - del /q *~
+clean:; - del *~
- $(DEL_TREE) deleted
-