Commit 45f2fdd5bc1511215cc5d1d9238691933bf69fac
1 parent
b664739a
Exists in
master
and in
3 other branches
Atualizando Makefiles
Showing
1 changed file
with
21 additions
and
0 deletions
Show diff stats
Makefile.in
@@ -155,3 +155,24 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ | @@ -155,3 +155,24 @@ $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@: \ | ||
155 | @$(MKDIR) `dirname $@` | 155 | @$(MKDIR) `dirname $@` |
156 | @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) | 156 | @$(LD) -shared -Wl,-soname,$(LIBNAME) $(LDFLAGS) -o $@ $^ $(LIBS) |
157 | 157 | ||
158 | +cleanDebug: | ||
159 | + | ||
160 | + @rm -fr $(OBJDBG) \ | ||
161 | + $(BINDBG)/$(LIBNAME) \ | ||
162 | + $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ | ||
163 | + $(BINDBG)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ | ||
164 | + | ||
165 | +cleanRelease: | ||
166 | + | ||
167 | + @rm -fr $(OBJRLS) \ | ||
168 | + $(BINRLS)/$(LIBNAME) \ | ||
169 | + $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@ \ | ||
170 | + $(BINRLS)/$(LIBNAME).@PACKAGE_MAJOR_VERSION@.@PACKAGE_MINOR_VERSION@ | ||
171 | + | ||
172 | +clean: \ | ||
173 | + cleanDebug \ | ||
174 | + cleanRelease | ||
175 | + | ||
176 | + | ||
177 | + | ||
178 | + |