summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 370bd08..d2b5619 100644
--- a/Makefile
+++ b/Makefile
@@ -6,14 +6,15 @@ export ROOTDIR = $(CURDIR)
include common.mk
-all: libs $(TARGET)
+all: tools libs $(TARGET)
clean: clean-generic
$(Q)$(MAKE) $(MAKE_OPTS) -C FreeRTOS clean
$(Q)$(MAKE) $(MAKE_OPTS) -C arch clean
$(Q)$(MAKE) $(MAKE_OPTS) -C os clean
+ $(Q)$(MAKE) $(MAKE_OPTS) -C tools clean
-.PHONY: libs FreeRTOS arch os
+.PHONY: libs FreeRTOS arch os tools
FreeRTOS/libFreeRTOS.a: FreeRTOS
arch/libarch.a: arch
@@ -33,6 +34,10 @@ os:
$(E) "[MAKE] Entering os"
$(Q)$(MAKE) $(MAKE_OPTS) -C os
+tools:
+ $(E) "[MAKE] Entering tools"
+ $(Q)$(MAKE) $(MAKE_OPTS) -C tools
+
include FreeRTOS/config.mk
include arch/config.mk
include os/config.mk