From b2f22718ccac2d71bfc1ad81b550257031821788 Mon Sep 17 00:00:00 2001 From: Casper Hornstrup Date: Sat, 26 Jan 2002 23:56:15 +0000 Subject: [PATCH] Remove build tools on make clean. Patches from Guido de Jong. svn path=/trunk/; revision=2564 --- reactos/tools/Makefile | 4 ++-- reactos/tools/wmc/makefile | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/reactos/tools/Makefile b/reactos/tools/Makefile index 77ebc63c5a2..d72f90957b8 100644 --- a/reactos/tools/Makefile +++ b/reactos/tools/Makefile @@ -62,8 +62,8 @@ clean: endif ifeq ($(HOST),mingw32-windows) clean: - del $(TOOLS) - del mkconfig$(EXE_POSTFIX) + $(PATH_TO_TOP)/rdel $(TOOLS) + $(PATH_TO_TOP)/rdel mkconfig$(EXE_POSTFIX) make -C wmc clean endif diff --git a/reactos/tools/wmc/makefile b/reactos/tools/wmc/makefile index 5de3fa87959..98509e477b6 100644 --- a/reactos/tools/wmc/makefile +++ b/reactos/tools/wmc/makefile @@ -47,8 +47,8 @@ clean: endif ifeq ($(HOST),mingw32-windows) clean: - del *.o - del wmc$(EXE_POSTFIX) + $(PATH_TO_TOP)/rdel *.o + $(PATH_TO_TOP)/rdel wmc$(EXE_POSTFIX) endif .phony: clean