diff options
author | Geoff Voelker <voelker@cs.washington.edu> | 1996-03-28 04:39:51 +0000 |
---|---|---|
committer | Geoff Voelker <voelker@cs.washington.edu> | 1996-03-28 04:39:51 +0000 |
commit | d32025124fa54808f3d52a447edc95bf8902c9d6 (patch) | |
tree | 437bfdd1ddeeba3b735dfd0306fe1c2462b7b8d4 /lib-src | |
parent | bda2e503d826bb493c755e151907ec2cdaaca4ab (diff) | |
download | emacs-d32025124fa54808f3d52a447edc95bf8902c9d6.tar.gz |
Change uses of del to $(DEL).
Diffstat (limited to 'lib-src')
-rw-r--r-- | lib-src/makefile.nt | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index 5e926d6401d..5aa73e50f0f 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt @@ -92,7 +92,7 @@ $(BLD)\ctags.exe: ctags.c $(CTAGSOBJ) $(LINK) -out:$@ $(LINK_FLAGS) $(CTAGSOBJ) $(LIBS) ctags.c: etags.c - - del ctags.c + - $(DEL) ctags.c copy etags.c ctags.c $(BLD)\ctags.obj: ctags.c @@ -164,7 +164,7 @@ lisp= \ DOC = DOC $(DOC): $(BLD)\make-docfile.exe - - del $(DOC) + - $(DEL) $(DOC) $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) $(CP) $(DOC) ..\etc\DOC-X @@ -199,10 +199,9 @@ install: $(INSTALL_FILES) # # Maintenance # -clean:; - del *~ *.pdb +clean:; - $(DEL) *~ *.pdb DOC* - $(DEL_TREE) deleted - $(DEL_TREE) obj - - del DOC* # # Headers we would preprocess if we could. |