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
commitd32025124fa54808f3d52a447edc95bf8902c9d6 (patch)
tree437bfdd1ddeeba3b735dfd0306fe1c2462b7b8d4 /src/makefile.nt
parentbda2e503d826bb493c755e151907ec2cdaaca4ab (diff)
downloademacs-d32025124fa54808f3d52a447edc95bf8902c9d6.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 ..\..