diff options
author | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-04 14:47:17 +0000 |
---|---|---|
committer | Peter S. Mazinger <ps.m@gmx.net> | 2005-10-04 14:47:17 +0000 |
commit | 75e3be2c706ebd829b5d544dd20b4a00ac4520ea (patch) | |
tree | ded2e0c7c93fb288e676c3797151480cd5568d2d /ldso | |
parent | de7d1814e1b6243d9e865319607aaae2982fc884 (diff) | |
download | uClibc-alpine-75e3be2c706ebd829b5d544dd20b4a00ac4520ea.tar.bz2 uClibc-alpine-75e3be2c706ebd829b5d544dd20b4a00ac4520ea.tar.xz |
Do not recurse into ldso/libc/libpthread on clean
Diffstat (limited to 'ldso')
-rw-r--r-- | ldso/Makefile | 4 | ||||
-rw-r--r-- | ldso/libdl/Makefile | 2 |
2 files changed, 4 insertions, 2 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 340ddfacb..07bf63241 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -43,9 +43,11 @@ include/dl-progname.h: echo '#include "$(TARGET_ARCH)/elfinterp.c"' \ > include/dl-progname.h -clean: subdirs_clean +headers_clean: $(RM) $(HEADERS) +clean: subdirs_clean headers_clean + subdirs: $(patsubst %, _dir_%, $(DIRS)) subdirs_clean: $(patsubst %, _dirclean_%, $(DIRS)) diff --git a/ldso/libdl/Makefile b/ldso/libdl/Makefile index 8101b08e3..76149adbf 100644 --- a/ldso/libdl/Makefile +++ b/ldso/libdl/Makefile @@ -92,4 +92,4 @@ libdl_pic.o: libdl.c $(STRIPTOOL) -x -R .note -R .comment $*.o clean: - $(RM) *.o *~ core *.a + $(RM) *.[oa] *~ core |