From 66f269d2a51dae6a2cb10f1a9ae4aaeba815219b Mon Sep 17 00:00:00 2001 From: Eric Andersen Date: Mon, 23 Apr 2001 17:43:54 +0000 Subject: Initial checkin for ld.so. This is a combination of effort from Manuel Novoa III and me. I've been working on stripping out arch dependant stuff and replacing it with generic stuff whenever possible. -Erik --- ldso/Makefile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 ldso/Makefile (limited to 'ldso/Makefile') diff --git a/ldso/Makefile b/ldso/Makefile new file mode 100644 index 000000000..23626f5e3 --- /dev/null +++ b/ldso/Makefile @@ -0,0 +1,13 @@ +include Config.mk + +SUBDIRS = util d-link # man + +all: + set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d ; done + +install: all + sh instldso.sh + +clean: + set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done + -find . -name '*~' | xargs rm -f -- cgit v1.2.3