]> git.eshelyaron.com Git - emacs.git/commitdiff
(install, clean): Don't use switches to del not supported by Win95.
authorGeoff Voelker <voelker@cs.washington.edu>
Wed, 22 Nov 1995 19:04:36 +0000 (19:04 +0000)
committerGeoff Voelker <voelker@cs.washington.edu>
Wed, 22 Nov 1995 19:04:36 +0000 (19:04 +0000)
lisp/makefile.nt

index e1d09a36ba87c4edfada9dabdd8ca1657f85d06e..51e27bdb1ead6db8545263c0d49800834b85179b 100644 (file)
@@ -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
-