diff options
author | Eric Andersen <andersen@codepoet.org> | 2002-03-21 09:46:23 +0000 |
---|---|---|
committer | Eric Andersen <andersen@codepoet.org> | 2002-03-21 09:46:23 +0000 |
commit | 7c574d35f195d268bc651a38652503df92fd1263 (patch) | |
tree | 22c48a31d2e2771a407740fa58bdadb088e00e78 | |
parent | cb4d4d4485e947f726fd799a554db1eaba4b6310 (diff) |
Always build the utils. Always clean libc/misc, since there is
some auto generated stuff in there
-Erik
-rw-r--r-- | Makefile | 8 |
1 files changed, 7 insertions, 1 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 util finished Config: @echo @@ -58,6 +58,11 @@ else @echo endif +util: +ifeq ($(strip $(HAVE_SHARED)),true) + @$(MAKE) -C ldso utils +endif + finished: shared @echo @echo Finally finished compiling... @@ -328,6 +333,7 @@ distclean clean: - find . \( -name \*.o -o -name \*.a -o -name \*.so -o -name core -o -name .\#\* \) -exec rm -f {} \; $(MAKE) -C test clean $(MAKE) -C ldso clean + $(MAKE) -C libc/misc clean $(MAKE) -C libc/unistd clean $(MAKE) -C libc/sysdeps/linux/common clean $(MAKE) -C libc/sysdeps/linux/$(TARGET_ARCH) clean |