diff nt/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 aba3b91c8b3d
children dddda397bca0
line wrap: on
line diff
--- a/nt/makefile.nt	Wed Mar 27 23:32:46 1996 +0000
+++ b/nt/makefile.nt	Thu Mar 28 04:39:51 1996 +0000
@@ -72,12 +72,12 @@
 		cd ..\nt		
 		- $(CP) emacs.bat $(INSTALL_DIR)\bin
 		- $(ADDPM) $(INSTALL_DIR)
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 		echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
 		if not exist ..\same-dir.tst $(MAKE) -f makefile.nt real_install
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 
 #
 # This installs executables from ..\bin into the installation directory
@@ -88,19 +88,19 @@
 		$(CP) ..\lib-src\DOC $(INSTALL_DIR)\etc
 		- mkdir $(INSTALL_DIR)\bin
 		- $(CP) emacs.bat $(INSTALL_DIR)\bin
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 		echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
 		if not exist ..\same-dir.tst $(CP) ..\bin\emacs.exe $(INSTALL_DIR)\bin
 		if not exist ..\same-dir.tst $(CP) ..\bin\etags.exe $(INSTALL_DIR)\bin
 		if not exist ..\same-dir.tst $(CP) ..\bin\ctags.exe $(INSTALL_DIR)\bin
 		if not exist ..\same-dir.tst nmake -f $(MAKE) real_install
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 
 real_install:
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 		echo SameDirTest > $(INSTALL_DIR)\same-dir.tst
 		- mkdir $(INSTALL_DIR)\etc
 		- mkdir $(INSTALL_DIR)\info
@@ -108,20 +108,19 @@
 		- mkdir $(INSTALL_DIR)\data
 		if not exist ..\same-dir.tst $(CP_DIR) ..\etc $(INSTALL_DIR)\etc
 		if not exist ..\same-dir.tst $(CP_DIR) ..\info $(INSTALL_DIR)\info
-		- del ..\same-dir.tst
-		- del $(INSTALL_DIR)\same-dir.tst
+		- $(DEL) ..\same-dir.tst
+		- $(DEL) $(INSTALL_DIR)\same-dir.tst
 
 #
 # Maintenance
 # 
 CLEAN_CMD	= $(MAKE) -f makefile.nt clean
-clean:;		- del /s *~ *.pdb
+clean:;		- $(DEL) *~ *.pdb
 		- $(DEL_TREE) deleted
 		- $(DEL_TREE) obj
 		- $(DEL_TREE) ..\bin
-		- del ..\etc\DOC
-		- del ..\etc\DOC-X
-		- del emacs.bat
+		- $(DEL) ..\etc\DOC ..\etc\DOC-X
+		- $(DEL) emacs.bat
 		cd ..\lib-src
 		$(CLEAN_CMD)
 		cd ..\src