summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 22:27:57 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 22:27:57 +0100
commit3209738e135f8ae5755652150ffeb81cb7d91e75 (patch)
tree00aa5cbe7b3ba0a866c6ce409829fa2e00d7de52 /Makefile
parent250095c7bc783f415b3958b1099216e8953600e7 (diff)
Fixing malloc's template, and fixing a bit more the verbose/quiet mode.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile15
1 files changed, 9 insertions, 6 deletions
diff --git a/Makefile b/Makefile
index d875646..61db0a1 100644
--- a/Makefile
+++ b/Makefile
@@ -8,22 +8,25 @@ include common.mk
all: libs $(TARGET)
clean: clean-generic
- $(MAKE) -C FreeRTOS clean
- $(MAKE) -C arch clean
- $(MAKE) -C os clean
+ $(Q)$(MAKE) $(MAKE_OPTS) -C FreeRTOS clean
+ $(Q)$(MAKE) $(MAKE_OPTS) -C arch clean
+ $(Q)$(MAKE) $(MAKE_OPTS) -C os clean
.PHONY: libs FreeRTOS arch os
libs: FreeRTOS arch os
FreeRTOS:
- $(MAKE) -C FreeRTOS
+ $(E) "[MAKE] Entering FreeRTOS"
+ $(Q)$(MAKE) $(MAKE_OPTS) -C FreeRTOS
arch:
- $(MAKE) -C arch
+ $(E) "[MAKE] Entering arch"
+ $(Q)$(MAKE) $(MAKE_OPTS) -C arch
os:
- $(MAKE) -C os
+ $(E) "[MAKE] Entering os"
+ $(Q)$(MAKE) $(MAKE_OPTS) -C os
include FreeRTOS/config.mk
include arch/config.mk