From 744df68b1029cfa58e057d0e00061bdaad52b2bb Mon Sep 17 00:00:00 2001 From: zouboan Date: Thu, 10 Nov 2022 23:52:13 +0800 Subject: [PATCH] tools/Win.mk:Fix some error in clean_context in Windows native build --- tools/Win.mk | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/tools/Win.mk b/tools/Win.mk index fde732a4358..1f319ecbcd2 100644 --- a/tools/Win.mk +++ b/tools/Win.mk @@ -446,14 +446,14 @@ clean_context: $(call DELFILE, include\stdarg.h) $(call DELFILE, include\setjmp.h) $(call DELFILE, arch\dummy\Kconfig) - $(call DELFILE, $(CONTEXTDIRS_DEPS)) - $(call DIRUNLINK, include\arch\board) - $(call DIRUNLINK, include\arch\chip) - $(call DIRUNLINK, include\arch) - $(call DIRUNLINK, $(ARCH_SRC)\board\board) - $(call DIRUNLINK, $(ARCH_SRC)\board) - $(call DIRUNLINK, $(ARCH_SRC)\chip) - $(call DIRUNLINK, $(TOPDIR)\drivers\platform) + $(call DELFILE, $(subst /,\,$(CONTEXTDIRS_DEPS))) + $(Q) $(DIRUNLINK) include\arch\board + $(Q) $(DIRUNLINK) include\arch\chip + $(Q) $(DIRUNLINK) include\arch + $(Q) $(DIRUNLINK) $(ARCH_SRC)\board\board + $(Q) $(DIRUNLINK) $(ARCH_SRC)\board + $(Q) $(DIRUNLINK) $(ARCH_SRC)\chip + $(Q) $(DIRUNLINK) $(TOPDIR)\drivers\platform # Archive targets. The target build sequence will first create a series of # libraries, one per configured source file directory. The final NuttX