diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-25 09:19:17 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-25 09:19:17 +0000 |
commit | e76999a5d53087de30fed8c4db19c6b1cc285e00 (patch) | |
tree | 86056bc11d9d00f3f89f94b4c0646758873c05d1 | |
parent | 8cfe720a244ab093efaa64e9cd3dc2fffc7cb4ec (diff) |
Kill cruft. Build ldd for the host system by default.
-Erik
-rw-r--r-- | ldso/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ldso/Makefile b/ldso/Makefile index 3031ef5f3..c1c907101 100644 --- a/ldso/Makefile +++ b/ldso/Makefile @@ -28,20 +28,20 @@ ALL_SUBDIRS = ldso libdl util all: ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true) - $(MAKE) -C $(LIBRARY_CACHE) ldso; + $(MAKE) -C ldso; else echo "Not building ld-uClibc" endif -shared: +shared: utils ifeq ($(strip $(BUILD_UCLIBC_LDSO)),true) - $(MAKE) -C $(LIBRARY_CACHE) libdl; + $(MAKE) -C libdl; else echo "Not building libdl" endif utils: - $(MAKE) -C $(LIBRARY_CACHE) util; + $(MAKE) -C util; clean: set -e ; for d in $(ALL_SUBDIRS) ; do $(MAKE) -C $$d $@ ; done |