diff options
author | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-04-25 20:38:19 +0200 |
---|---|---|
committer | Carmelo Amoroso <carmelo.amoroso@st.com> | 2010-04-25 20:38:19 +0200 |
commit | a63e523a5ee5599ce83fe7a964fa69d25d5d04ac (patch) | |
tree | c6d0bdb274efc66b937fc1a241751ff54e8436ca /libpthread/nptl_db/Makefile.in | |
parent | ff5e4de7088fe8d34812c2a1e604bf04be713606 (diff) |
nptl: Harmonize objects and headers makefile clean targets
Update all the nptl clean targets (both objects and headers) to
use the new syntax using CLEAN_<full_path> and HEADER_<full_path>.
Signed-off-by: Carmelo Amoroso <carmelo.amoroso@st.com>
Diffstat (limited to 'libpthread/nptl_db/Makefile.in')
-rw-r--r-- | libpthread/nptl_db/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libpthread/nptl_db/Makefile.in b/libpthread/nptl_db/Makefile.in index 56f1b78c6..e7a97c30c 100644 --- a/libpthread/nptl_db/Makefile.in +++ b/libpthread/nptl_db/Makefile.in @@ -37,9 +37,9 @@ libthread_db-multi-y := $(libthread_db_SRC) lib-a-$(PTHREADS_DEBUG_SUPPORT) += $(top_builddir)lib/libthread_db.a lib-so-$(PTHREADS_DEBUG_SUPPORT) += $(top_builddir)lib/libthread_db.so -objclean-y += libthread_db_clean +objclean-y += CLEAN_libpthread/nptl_db headers-$(PTHREADS_DEBUG_SUPPORT) += $(nptl_db_headers) -headers_clean-y += nptl_db_headers_clean +headers_clean-y += HEADERCLEAN_libpthread/nptl_db ifeq ($(DOPIC),y) $(top_builddir)lib/libthread_db.so: $(top_builddir)lib/libthread_db.a $(libc) @@ -64,8 +64,8 @@ $(top_builddir)include/thread_db.h: nptl_db_headers:= $(top_builddir)include/thread_db.h -nptl_db_headers_clean: +HEADERCLEAN_libpthread/nptl_db: $(do_rm) $(nptl_db_headers) -libthread_db_clean: +CLEAN_libpthread/nptl_db: $(do_rm) $(addprefix $(libthread_db_OUT)/*., o oS a) |