diff options
author | Roland McGrath <roland@gnu.org> | 1995-04-10 09:00:08 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-04-10 09:00:08 +0000 |
commit | 8c0dc19cc688bd10f83a92fab2c9cdaf4b6154ec (patch) | |
tree | 0a5362b2c4bf49a9b76dacb3d845c6e29b7a1024 /Makerules | |
parent | 6aa8372e1684381fdc8fdacb4fdd71415c2ecde3 (diff) | |
download | glibc-8c0dc19cc688bd10f83a92fab2c9cdaf4b6154ec.tar.gz glibc-8c0dc19cc688bd10f83a92fab2c9cdaf4b6154ec.tar.xz glibc-8c0dc19cc688bd10f83a92fab2c9cdaf4b6154ec.zip |
Sun Apr 9 01:24:33 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* Makerules (+depfiles): Translate %.so to %.o in $(extra-objs). * malloc/free.c [emacs] (__malloc_safe_bcopy): Define to safe_bcopy. * malloc/realloc.c (__malloc_safe_bcopy): Undefine before defining. * malloc/free.c (memmove, __malloc_safe_bcopy): Do include these #ifdef emacs, but only #ifndef memmove. * malloc/realloc.c [emacs] (__malloc_safe_bcopy): Just #define to safe_bcopy. (memmove): Define only if undefined. * stdio/_itoa.h (_EXTERN_INLINE): Define if undefined. (_itoa): Use it in defn.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makerules b/Makerules index 55e7520c64..b155c5551f 100644 --- a/Makerules +++ b/Makerules @@ -281,7 +281,7 @@ include $(patsubst %,$(..)extra-lib.mk,$(extra-libs)) endif +depfiles := $(strip $(sources:.c=.d) \ - $(patsubst %.o,%.d,$(filter %.o,$(extra-objs))) \ + $(patsubst %.o,%.d,$(filter %.o,$(extra-objs:.so=.o))) \ $(addsuffix .d,$(others) $(tests))) +depfiles := $(addprefix $(objpfx),\ $(filter-out $(addsuffix .d,$(omit-deps)),\ |