From bf9a9078aacbef861eaf0fe3a32665ff68121e63 Mon Sep 17 00:00:00 2001 From: Tom Yu Date: Thu, 9 Aug 2007 22:11:18 +0000 Subject: [PATCH] pull up r19626 from trunk r19626@cathode-dark-space: jaltman | 2007-06-22 14:56:56 -0400 ticket: 5584 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/branches/krb5-1-6@19784 dc483132-0cff-0310-8789-dd5450dbe970 --- src/windows/identity/plugins/common/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/windows/identity/plugins/common/Makefile b/src/windows/identity/plugins/common/Makefile index 4e97c6638..b4085d13f 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) -- 2.26.2