svn commit: trunk/uClibc

aldot at uclibc.org aldot at uclibc.org
Thu Jun 5 12:29:36 UTC 2008


Author: aldot
Date: 2008-06-05 05:29:36 -0700 (Thu, 05 Jun 2008)
New Revision: 22233

Log:
- switching thread impls without makeing clean before left the objs of the
  previously selected impl lying around on a distclean. Make sure that this
  does not happen.


Modified:
   trunk/uClibc/Makefile.in


Changeset:
Modified: trunk/uClibc/Makefile.in
===================================================================
--- trunk/uClibc/Makefile.in	2008-06-05 12:18:42 UTC (rev 22232)
+++ trunk/uClibc/Makefile.in	2008-06-05 12:29:36 UTC (rev 22233)
@@ -408,10 +408,15 @@
 
 clean:
 	$(Q)$(RM) -r lib include/bits
-	$(RM) ldso/*/*.a libpthread/*/*.a libc/*.a libcrypt/*.a libintl/*.a \
-		libm/*.a libnsl/*.a libpthread/*.a libresolv/*.a librt/*.a \
-		libutil/*.a lib/*.a \
-		include/fpu_control.h include/dl-osinfo.h include/hp-timing.h
+	$(Q)$(RM) $(foreach ext,a o os oS,ldso/*/*.$(ext) \
+		libc/*.$(ext) libcrypt/*.$(ext) libintl/*.$(ext) libm/*.$(ext) \
+		libnsl/*.$(ext) libpthread/*.$(ext) libresolv/*.$(ext) \
+		librt/*.$(ext) libutil/*.$(ext) lib/*.$(ext) \
+		libpthread/*/*.$(ext) libpthread/*/*/*.$(ext) \
+		libpthread/*/*/*/*.$(ext) libpthread/*/*/*/*/*.$(ext) \
+		libpthread/*/*/*/*/*/*.$(ext) libpthread/*/*/*/*/*/*/*.$(ext) \
+		libpthread/*/*/*/*/*/*/*/*.$(ext))
+	$(Q)$(RM) include/fpu_control.h include/dl-osinfo.h include/hp-timing.h
 	$(MAKE) objclean-y headers_clean-y
 	$(MAKE) -s -C test clean
 	$(MAKE) -C utils utils_clean




More information about the uClibc-cvs mailing list