diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-12-03 17:53:17 +0000 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2008-12-03 17:53:17 +0000 |
commit | bc0c8401ecf11eb5c543f8558f37a432d57071d2 (patch) | |
tree | f7aa4e322759529fd491ca154932a03115526680 /libpthread/nptl/sysdeps/generic | |
parent | d5c32667ad11ff38dc46be527266297b38a341d1 (diff) | |
download | uClibc-alpine-bc0c8401ecf11eb5c543f8558f37a432d57071d2.tar.bz2 uClibc-alpine-bc0c8401ecf11eb5c543f8558f37a432d57071d2.tar.xz |
Rework nptl build system for cleaning headers and objects
to be compliant with all other Makefile.
The output of the make clean (silent mode) will be as follows:
CLEAN ld-uClibc
CLEAN libdl
<....>
CLEAN nptl_pthread_generic
CLEAN nptl_pthread
CLEAN nptl_arch
CLEAN nptl_linux
CLEAN nptl_linux_arch
CLEAN libthread_db
<....>
CLEAN nptl_headers
CLEAN nptl_arch_headers
CLEAN nptl_linux_headers
CLEAN nptl_db_headers
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libpthread/nptl/sysdeps/generic')
-rw-r--r-- | libpthread/nptl/sysdeps/generic/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/generic/Makefile.in b/libpthread/nptl/sysdeps/generic/Makefile.in index 87115570d..1079a5fd9 100644 --- a/libpthread/nptl/sysdeps/generic/Makefile.in +++ b/libpthread/nptl/sysdeps/generic/Makefile.in @@ -24,7 +24,7 @@ libc-static-y+=$(LIBC_GENERIC_OBJ) libc-nomulti-y+=$(LIBC_GENERIC_OBJ) -objclean-y+=pthread_generic_objclean +objclean-y+=nptl_pthread_generic_clean -pthread_generic_objclean: - $(RM) $(PTHREAD_GENERIC_OUT)/*.{o,os,oS} +nptl_pthread_generic_clean: + $(do_rm) $(addprefix $(PTHREAD_GENERIC_OUT)/*., o os oS) |