From 2edfc72bab12e4f7c745184e7795b60f7b567527 Mon Sep 17 00:00:00 2001 From: Jeffrey Altman Date: Fri, 22 Jun 2007 18:56:56 +0000 Subject: The clean:: target of plugins\common\Makefile should reference the target directories using the symbolic names rather than hard coded paths. ticket: 5584 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@19626 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/identity/plugins/common/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/windows') diff --git a/src/windows/identity/plugins/common/Makefile b/src/windows/identity/plugins/common/Makefile index 4e97c66382..b4085d13fe 100644 --- a/src/windows/identity/plugins/common/Makefile +++ b/src/windows/identity/plugins/common/Makefile @@ -36,8 +36,8 @@ OBJFILES= \ all: mkdirs $(INCFILES) $(OBJFILES) clean:: - if exist '..\..\obj' $(RM) $(INCFILES) - if exist '..\..\obj' $(RM) $(OBJFILES) + if exist "$(INCDIR)" $(RM) $(INCFILES) + if exist "$(LIBDIR)" $(RM) $(OBJFILES) {}.c{$(LIBDIR)}.obj: $(C2OBJ) -- cgit