diff options
author | Greg McGary <greg@mcgary.org> | 2000-07-17 22:34:11 +0000 |
---|---|---|
committer | Greg McGary <greg@mcgary.org> | 2000-07-17 22:34:11 +0000 |
commit | 916c1395e160f7a4ea2c3f736982a5975c44b5af (patch) | |
tree | 306a88e028bd85f169baa98bc6048198d43150c6 /Makerules | |
parent | 03df72bf736599aa4c2c8343b33bed3d2954afa8 (diff) | |
download | glibc-916c1395e160f7a4ea2c3f736982a5975c44b5af.zip glibc-916c1395e160f7a4ea2c3f736982a5975c44b5af.tar.gz glibc-916c1395e160f7a4ea2c3f736982a5975c44b5af.tar.bz2 |
* Makerules (o-objects): Supplement with $(o-objects$o).
* string/Makefile (o-objects.ob): Add variable to pull
unbounded versions of memcpy, memset and memchr into libc_b.
* Makerules (o-objects): Supplement with $(o-objects$o).
* string/Makefile (o-objects.ob): Add variable to pull
unbounded versions of memcpy, memset and memchr into libc_b.
Diffstat (limited to 'Makerules')
-rw-r--r-- | Makerules | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -554,7 +554,9 @@ lib-noranlib: libobjs # Makefiles can define `elide-routines.so = foo' to leave foo.so out. o-objects = $(patsubst %.o,%$o,$(filter-out $(patsubst %,$(objpfx)%.o,\ $(elide-routines$o)),\ - $(objects))) + $(objects))) \ + $(addprefix $(objpfx),$(o-objects$o)) + others: $(addprefix $(objpfx),$(install-lib)) ifndef objects |