diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-04-23 20:11:40 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-04-23 20:11:40 +0000 |
commit | be032b8f6b6e21150ac72850904a7c94f98750ac (patch) | |
tree | 3f68683b3c901b4bbd8ae5808eabfb6749d11768 /ldso/Makefile | |
parent | 66f269d2a51dae6a2cb10f1a9ae4aaeba815219b (diff) |
Ignore generated stuff. Add a 'make install' target that works.
-Erik
Diffstat (limited to 'ldso/Makefile')
-rw-r--r-- | ldso/Makefile | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 23626f5e3..34d36a914 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -1,12 +1,19 @@ +TOPDIR=../ +include $(TOPDIR)Rules.mak include Config.mk SUBDIRS = util d-link # man +TARGETDIR=/usr/$(TARGET_ARCH)-linux-uclibc + + all: set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d ; done install: all - sh instldso.sh + mkdir -p $(TARGETDIR)/etc + cp -a ./d-link/ld-linux-uclibc.so.1 ./d-link/libdl/libdl.so.1 $(TARGETDIR)/lib + ./util/ldconfig clean: set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done |