summaryrefslogtreecommitdiff
path: root/src/makefile.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 /src/makefile.nt
parent1afb7be2926786b437e11d45c0301f909ba07f37 (diff)
downloademacs-2e17c871e3359380613cbe82ec7cf51a040b6865.tar.gz
Change uses of del to $(DEL).
Diffstat (limited to 'src/makefile.nt')
-rw-r--r--src/makefile.nt6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/makefile.nt b/src/makefile.nt
index 621d23818e1..b4fe21fb139 100644
--- a/src/makefile.nt
+++ b/src/makefile.nt
@@ -163,7 +163,7 @@ paths.h: ..\nt\paths.h
#
DOC = obj\etc\DOC-X
$(DOC):; cd ..\lib-src
- - del DOC-X
+ - $(DEL) DOC-X
$(MAKE) -f makefile.nt all
cd ..\src
@@ -230,7 +230,7 @@ install: all
#
# Maintenance
#
-clean:; - del *~ *.pdb config.h paths.h
+clean:; - $(DEL) *~ *.pdb config.h paths.h
- $(DEL_TREE) deleted
- $(DEL_TREE) obj
@@ -239,7 +239,7 @@ clean:; - del *~ *.pdb config.h paths.h
# this target is mostly used for debugging.
#
cleandump:; cd $(BLD)
- - del callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj
+ - $(DEL) callproc.obj data.obj dispnew.obj doc.obj editfns.obj emacs.obj lread.obj process.obj sysdep.obj term.obj ntheap.obj unexnt.obj
cd ..\..