From: Jeffrey Altman Date: Fri, 22 Jun 2007 18:56:56 +0000 (+0000) Subject: The clean:: target of plugins\common\Makefile should reference the X-Git-Tag: krb5-1.7-alpha1~1063 X-Git-Url: http://git.tremily.us/?a=commitdiff_plain;h=2edfc72bab12e4f7c745184e7795b60f7b567527;p=krb5.git 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 --- 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)