From 8ff4e97a06caec06ca219e9255c103f58e997672 Mon Sep 17 00:00:00 2001 From: Andrew Greenwood Date: Tue, 15 Jul 2003 19:19:07 +0000 Subject: [PATCH] Sorry, I broke depend.mk last time by forcing forward slash usage... This should fix it. svn path=/trunk/; revision=5131 --- reactos/tools/depend.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reactos/tools/depend.mk b/reactos/tools/depend.mk index c381ae9f997..2d74a10109e 100644 --- a/reactos/tools/depend.mk +++ b/reactos/tools/depend.mk @@ -6,8 +6,8 @@ DEP_FILTERED := $(filter-out $(DEP_EXCLUDE_FILTER), $(DEP_OBJECTS:.o=.d)) DEP_FILES := $(join $(dir $(DEP_FILTERED)), $(addprefix ., $(notdir $(DEP_FILTERED)))) -# Added by Silver Blade: -SEP = / +# I (Andrew Greenwood) had to add this to compile under MinGW: +# SEP = / ifneq ($(MAKECMDGOALS),clean)