diff options
author | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2001-06-14 21:37:48 +0000 |
commit | 862fef6971ef660a985c790e3643187e5ecb855d (patch) | |
tree | d70a00b981442842d4bd84bfd456a4f249fb2e5b /ldso/Makefile | |
parent | 311b479b519b33774b6bb75d5c4961f2e2498fc2 (diff) |
Yet more ldso cleanups. Be more discriminating about when using inlines
and when using real functions. Make things be more portable by
providing a default C routine to locate the got.
-Erik
Diffstat (limited to 'ldso/Makefile')
-rw-r--r-- | ldso/Makefile | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 9fb609c6d..f26489eee 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -1,7 +1,8 @@ TOPDIR=../ -include Rules.mak +include $(TOPDIR)Rules.mak -SUBDIRS = util libdl # d-link man +SUBDIRS = util libdl +ALL_SUBDIRS = util libdl d-link all: @if [ -d $(TOPDIR)ldso/d-link/$(TARGET_ARCH) ] ; then \ @@ -14,5 +15,5 @@ shared: fi; clean: - set -e ; for d in $(SUBDIRS) ; do $(MAKE) -C $$d $@ ; done + set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done -find . -name '*~' | xargs rm -f |