From 45f2fdd5bc1511215cc5d1d9238691933bf69fac Mon Sep 17 00:00:00 2001 From: Perry Werneck Date: Tue, 17 Jan 2017 17:08:25 -0200 Subject: [PATCH] Atualizando Makefiles --- Makefile.in | 21 +++++++++++++++++++++ 1 file changed, 21 insertions(+), 0 deletions(-) diff --git a/Makefile.in b/Makefile.in index 008f6ab..5d5874a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -155,3 +155,24 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ @$(MKDIR) `dirname $@` @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) +cleanDebug: + + @rm -fr $(OBJDBG) \ + $(BINDBG)/$(LIBNAME) \ + $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ + $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ + +cleanRelease: + + @rm -fr $(OBJRLS) \ + $(BINRLS)/$(LIBNAME) \ + $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ + $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ + +clean: \ + cleanDebug \ + cleanRelease + + + + -- libgit2 0.21.2