summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2005-01-18 23:00:02 +0000
committerMike Frysinger <vapier@gentoo.org>2005-01-18 23:00:02 +0000
commit1d7b89ffc8da51afd37f5b7b9930f0a67dcc65b7 (patch)
treefe03f4de88fc84819ff86dac1b7fb6f29194829e /Makefile
parent129b1d713e4b7df2ae24007effb85926f9e74616 (diff)
tweak target dependencies to support parallel builds
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 5 insertions, 9 deletions
diff --git a/Makefile b/Makefile
index f02b1330d..540ec5f9a 100644
--- a/Makefile
+++ b/Makefile
@@ -40,7 +40,7 @@ all: headers pregen subdirs shared finished
# In this section, we need .config
-include .config.cmd
-shared:
+shared: subdirs
ifeq ($(strip $(HAVE_SHARED)),y)
@$(MAKE) -C libc shared
@$(MAKE) -C ldso shared
@@ -56,14 +56,13 @@ ifeq ($(strip $(UCLIBC_HAS_GETTEXT_AWARENESS)),y)
endif
else
@echo
- @echo Not building shared libraries...
+ @echo Not building shared libraries ...
@echo
endif
-
finished: shared
@echo
- @echo Finally finished compiling...
+ @echo Finally finished compiling ...
@echo
include/bits/uClibc_config.h: .config
@@ -130,8 +129,7 @@ endif
subdirs: $(patsubst %, _dir_%, $(DIRS))
-
-$(patsubst %, _dir_%, $(DIRS)) : dummy
+$(patsubst %, _dir_%, $(DIRS)): headers
$(MAKE) -C $(patsubst _dir_%, %, $@)
tags:
@@ -259,7 +257,7 @@ install_utils: utils
finished2:
@echo
- @echo Finished installing...
+ @echo Finished installing ...
@echo
else # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
@@ -358,5 +356,3 @@ release: distclean
endif # ifeq ($(strip $(HAVE_DOT_CONFIG)),y)
.PHONY: dummy subdirs release distclean clean config oldconfig menuconfig
-
-