From 8673c0de48140b8cd148bf3ea47094968ffbda8b Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Thu, 2 Apr 2009 06:04:48 +0000 Subject: [PATCH] windows-config-clean-20090402 LICENSE MIT permit "nmake -f ntmakefile clean" to complete on a clean source tree. --- src/config/NTMakefile | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/src/config/NTMakefile b/src/config/NTMakefile index e0fce46a37..52b6a2a28e 100644 --- a/src/config/NTMakefile +++ b/src/config/NTMakefile @@ -487,7 +487,7 @@ doclink: version: $(DESTDIR)\bin\mkvers.exe NTMakefile.version NTMakefile.version: NTMakefile.version-CML NTMakefile.version-NOCML - $(DEL) NTMakefile.version + -$(DEL) NTMakefile.version ! IF (EXIST(..\..\src\CML\state) || EXIST(..\..\..\src\CML\state)) $(COPY) NTMakefile.version-CML NTMakefile.version ! ELSE @@ -529,12 +529,12 @@ install9x: install # This clean target must be named something different than the universal # 'clean' so that the version file can be removed last. clean_version: - $(DEL) NTMakefile.version + -$(DEL) NTMakefile.version clean:: - $(DEL) $(DESTDIR)\LIB\*.DLL - $(DEL) $(DESTDIR)\bin\mkver.exe* - $(DEL) $(DESTDIR)\bin\touch.exe* - $(DEL) $(OUT)\util_cr.exe* - $(DEL) $(OUT)\mkver.exe* - $(DEL) $(OUT)\touch.exe* + -$(DEL) $(DESTDIR)\LIB\*.DLL + -$(DEL) $(DESTDIR)\bin\mkver.exe* + -$(DEL) $(DESTDIR)\bin\touch.exe* + -$(DEL) $(OUT)\util_cr.exe* + -$(DEL) $(OUT)\mkver.exe* + -$(DEL) $(OUT)\touch.exe*