summaryrefslogtreecommitdiff
path: root/nt
diff options
context:
space:
mode:
authorGeoff Voelker <voelker@cs.washington.edu>1996-03-28 04:39:51 +0000
committerGeoff Voelker <voelker@cs.washington.edu>1996-03-28 04:39:51 +0000
commit2e17c871e3359380613cbe82ec7cf51a040b6865 (patch)
treeeda83d50142a4cc3360c3547ee7cd245c289d3f8 /nt
parent1afb7be2926786b437e11d45c0301f909ba07f37 (diff)
downloademacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz
Change uses of del to $(DEL).
Diffstat (limited to 'nt')
-rw-r--r--nt/makefile.nt31
1 files changed, 15 insertions, 16 deletions
diff --git a/nt/makefile.nt b/nt/makefile.nt
index a540238820a..42567d61ce4 100644
--- a/nt/makefile.nt
+++ b/nt/makefile.nt
@@ -72,12 +72,12 @@ install: all emacs.bat
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 @@ fast_install:
$(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 @@ real_install:
- 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