diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-07-31 02:34:49 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-07-31 02:34:49 +0000 |
commit | 2cf23b8b715ff78aba11067c630eca0eba687e80 (patch) | |
tree | 885f13c81f6ff911e3538b455345d22fb4775bc5 | |
parent | 73900d95a7ba128d004783a5a3646c6137bf9361 (diff) |
Always build utils by default
-Erik
-rw-r--r-- | Makefile | 8 |
1 files changed, 5 insertions, 3 deletions
@@ -33,7 +33,7 @@ include Rules.mak DIRS = extra ldso libc libcrypt libresolv libutil libm libpthread -all: headers uClibc_config subdirs shared finished +all: headers uClibc_config subdirs shared utils finished Config: @echo @@ -287,9 +287,11 @@ install_toolchain: install -d $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin $(MAKE) -C extra/gcc-uClibc install -install_utils: +utils: $(TOPDIR)ldso/util/ldd + $(MAKE) -C ldso utils + +install_utils: utils ifeq ($(strip $(HAVE_SHARED)),true) - @$(MAKE) -C ldso utils install -d $(PREFIX)$(DEVEL_TOOL_PREFIX)/bin; install -m 755 ldso/util/ldd \ $(PREFIX)$(SYSTEM_DEVEL_PREFIX)/bin/$(TARGET_ARCH)-uclibc-ldd |