]> Git Repo - uclibc-ng.git/commitdiff
- switching thread impls without makeing clean before left the objs of the
authorBernhard Reutner-Fischer <[email protected]>
Thu, 5 Jun 2008 12:29:36 +0000 (12:29 -0000)
committerBernhard Reutner-Fischer <[email protected]>
Thu, 5 Jun 2008 12:29:36 +0000 (12:29 -0000)
  previously selected impl lying around on a distclean. Make sure that this
  does not happen.

Makefile.in

index 7c638d3e1fbd34652942756d1b7e9f108475f719..820d8fb687491ccd51c583873508955cace25501 100644 (file)
@@ -408,10 +408,15 @@ defconfig: extra/config/conf include/bits
 
 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
This page took 0.022774 seconds and 4 git commands to generate.