Mercurial > emacs
diff src/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 | 63cada85e5fd |
| children | f13ffba51542 |
line wrap: on
line diff
--- a/src/makefile.nt Wed Mar 27 23:32:46 1996 +0000 +++ b/src/makefile.nt Thu Mar 28 04:39:51 1996 +0000 @@ -163,7 +163,7 @@ # 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 @@ # # 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 @@ # 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 ..\..
