diff options
author | Austin Foxley <austinf@cetoncorp.com> | 2010-02-23 01:09:22 -0800 |
---|---|---|
committer | Austin Foxley <austinf@cetoncorp.com> | 2010-02-23 01:11:53 -0800 |
commit | 7aab619f4b8d1331e34ec48384acf7db7d965218 (patch) | |
tree | 2631a5c3f6b90ded3dcdb39e55f410b2efeee42a /librt | |
parent | 82d2e11497f24a5ec9fc61a711516dbb8cf471e9 (diff) |
improve parallel make behaviour
* add library dependencies for libdl,libpthread
* fix typo in librt/Makefile.in
* also remove extra trailing slashes on i386, sparc pregen headers
Signed-off-by: Austin Foxley <austinf@cetoncorp.com>
Diffstat (limited to 'librt')
-rw-r--r-- | librt/Makefile.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/librt/Makefile.in b/librt/Makefile.in index ea1d03eb8..88f4cbce4 100644 --- a/librt/Makefile.in +++ b/librt/Makefile.in @@ -53,9 +53,9 @@ endif ifeq ($(DOPIC)$(UCLIBC_HAS_THREADS_NATIVE),yn) -$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(libc.dpend) +$(top_builddir)lib/librt.so: $(top_builddir)lib/librt.a $(libc.depend) else -$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(libc.depend) +$(top_builddir)lib/librt.so: $(librt_OUT)/librt_so.a $(libc.depend) $(libpthread.depend) $(libdl.depend) endif $(call link.so,$(librt_FULL_NAME),$(MAJOR_VERSION)) |