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/pthread | |
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/pthread')
-rw-r--r-- | libpthread/nptl/sysdeps/pthread/Makefile.in | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/libpthread/nptl/sysdeps/pthread/Makefile.in b/libpthread/nptl/sysdeps/pthread/Makefile.in index 59076006d..0c3b52f9d 100644 --- a/libpthread/nptl/sysdeps/pthread/Makefile.in +++ b/libpthread/nptl/sysdeps/pthread/Makefile.in @@ -128,9 +128,9 @@ $(pthread_DIR)/pt-sigfillset.c: $(pthread_DIR)/pt-sigprocmask.c: $(LN) -s sigprocmask.c $@ -objclean-y += pthread_objclean +objclean-y += nptl_pthread_clean -pthread_objclean: - $(RM) $(pthread_OUT)/*.{o,os,oS,s,S} $(pthread_OUT)/defs.h \ +nptl_pthread_clean: + $(do_rm) $(addprefix $(pthread_OUT)/*., o os oS s S) $(pthread_OUT)/defs.h \ $(pthread_DIR)/pt-sigaction.c $(pthread_DIR)/pt-sigfillset.c \ $(pthread_DIR)/pt-sigprocmask.c |