From c02ab10709b15c0d39e8f1e97a7879c019154820 Mon Sep 17 00:00:00 2001 From: Geoff Voelker Date: Wed, 22 Nov 1995 19:02:17 +0000 Subject: [PATCH] (DOC, clean): Don't use switches to del not supported by Win95. --- lib-src/makefile.nt | 6 +++--- src/makefile.nt | 4 ++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib-src/makefile.nt b/lib-src/makefile.nt index 0f263d79b71..2f6cb4817f6 100644 --- a/lib-src/makefile.nt +++ b/lib-src/makefile.nt @@ -140,7 +140,7 @@ lisp= \ DOC = DOC $(DOC): $(BLD)\make-docfile.exe - - del /q $(DOC) + - del $(DOC) $(BLD)\make-docfile -d ..\src $(obj) > $(DOC) $(BLD)\make-docfile -d ..\src $(lisp) >> $(DOC) $(CP) $(DOC) ..\etc\DOC-X @@ -175,10 +175,10 @@ install: $(INSTALL_FILES) # # Maintenance # -clean:; - del /q *~ *.pdb +clean:; - del *~ *.pdb - $(DEL_TREE) deleted - $(DEL_TREE) obj - - del /q DOC* + - del DOC* # # Headers we would preprocess if we could. diff --git a/src/makefile.nt b/src/makefile.nt index 07833d94b8c..775b4c07daa 100644 --- a/src/makefile.nt +++ b/src/makefile.nt @@ -162,7 +162,7 @@ paths.h: ..\nt\paths.h # DOC = obj\etc\DOC-X $(DOC):; cd ..\lib-src - - del /q DOC-X + - del DOC-X $(MAKE) -f makefile.nt all cd ..\src @@ -229,7 +229,7 @@ install: all # # Maintenance # -clean:; - del /q *~ *.pdb config.h paths.h +clean:; - del *~ *.pdb config.h paths.h - $(DEL_TREE) deleted - $(DEL_TREE) obj -- 2.39.2