changeset 13632:006e33d6a6c1

(install, clean): Don't use switches to del not supported by Win95.
author Geoff Voelker <voelker@cs.washington.edu>
date Wed, 22 Nov 1995 19:04:36 +0000
parents abb8f19ece25
children 3fa66bb82d59
files lisp/makefile.nt
diffstat 1 files changed, 4 insertions(+), 5 deletions(-) [+]
line wrap: on
line diff
--- a/lisp/makefile.nt	Wed Nov 22 19:02:17 1995 +0000
+++ b/lisp/makefile.nt	Wed Nov 22 19:04:36 1995 +0000
@@ -27,16 +27,15 @@
 # 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
-