summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorEric Andersen <andersen@codepoet.org>2002-03-21 09:46:23 +0000
committerEric Andersen <andersen@codepoet.org>2002-03-21 09:46:23 +0000
commit7c574d35f195d268bc651a38652503df92fd1263 (patch)
tree22c48a31d2e2771a407740fa58bdadb088e00e78 /Makefile
parentcb4d4d4485e947f726fd799a554db1eaba4b6310 (diff)
Always build the utils. Always clean libc/misc, since there is
some auto generated stuff in there -Erik
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile8
1 files changed, 7 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index bc86292af..318adeba5 100644
--- a/Makefile
+++ b/Makefile
@@ -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