diff options
author | Ulrich Drepper <drepper@redhat.com> | 1998-08-13 19:44:05 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1998-08-13 19:44:05 +0000 |
commit | 9d141cae00c957096045d08fe504b4a2be66ab75 (patch) | |
tree | 479eb1c5e008066fb02734e7b763f255a8407768 /elf/Makefile | |
parent | 1f539fd1dc223141f6c3bce738b4654d6220fcef (diff) | |
download | glibc-9d141cae00c957096045d08fe504b4a2be66ab75.tar.gz glibc-9d141cae00c957096045d08fe504b4a2be66ab75.tar.xz glibc-9d141cae00c957096045d08fe504b4a2be66ab75.zip |
Update.
1998-08-13 19:41 Ulrich Drepper <drepper@cygnus.com> * posix/getconf.c: Add support for systems with incomplete confname.h. * sysdeps/posix/sigset.c: Allow SIG_HOLD being undefined. * sysdeps/posix/wait3.c: Make it work. 1998-08-13 Andreas Jaeger <aj@arthur.rhein-neckar.de> * Makefile ($(inst_slibdir)/libc-$(version).so): Remove. (elf/ldso_install): Remove. * elf/Makefile (distribute): Add sln.c. (others): Add sln. (others-static): Add sln. (install-rootsbin): Add sln. (others-static): Add sln. (ldso_install): Remove. 1998-07-24 10:58 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makerules (install-clean-symbolic-link-list): Make phony. * Makefile (install-symbolic-link): Make phony. Depend on subdir_install for parallel makes. 1998-07-22 Ulrich Drepper <drepper@cygnus.com> * elf/Makefile (distribute): Add sln.c 1998-07-21 07:10 H.J. Lu <hjl@gnu.org> * elf/sln.c: New file. * Makerules (symbolic-link-prog, symbolic-link-list): New macros. (install-clean-symbolic-link-list): New target. (install): Depend on install-clean-symbolic-link-list. (make-shlib-link): Changed for $(symbolic-link-list). * Makefile (install-symbolic-link): New target. (install): Depend on install-symbolic-link.
Diffstat (limited to 'elf/Makefile')
-rw-r--r-- | elf/Makefile | 12 |
1 files changed, 5 insertions, 7 deletions
diff --git a/elf/Makefile b/elf/Makefile index 45b296ca40..ead48f5850 100644 --- a/elf/Makefile +++ b/elf/Makefile @@ -38,7 +38,7 @@ rtld-routines := rtld $(dl-routines) dl-sysdep dl-environ dl-minimal distribute = $(rtld-routines:=.c) dynamic-link.h do-rel.h dl-machine.h \ dl-hash.h soinit.c sofini.c ldd.sh.in ldd.bash.in eval.c \ genrtldtbl.awk atomicity.h dl-procinfo.h ldsodefs.h \ - dl-librecon.h interp.c + dl-librecon.h interp.c sln.c extra-libs = libdl extra-libs-others = $(extra-libs) @@ -63,13 +63,15 @@ install-bin = ldd generated += ldd endif -others = sprof +others = sprof sln install-bin += sprof +others-static = sln +install-rootsbin = sln ifeq (yes,$(has-ldconfig)) others-static += ldconfig others += ldconfig -install-rootsbin = ldconfig +install-rootsbin += ldconfig endif include ../Rules @@ -161,10 +163,6 @@ $(inst_slibdir)/$(rtld-installed-name): \ $(inst_slibdir)/$(rtld-version-installed-name) $(make-shlib-link) -# Special target called by parent to install just the dynamic linker. -.PHONY: ldso_install -ldso_install: $(inst_slibdir)/$(rtld-installed-name) - sh-ldd-rewrite = -e 's%@RTLD@%$(slibdir)/$(rtld-installed-name)%g' \ -e 's%@VERSION@%$(version)%g' |