summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 07:03:11 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 07:04:14 +0100
commit1b108126c12b97c379a899bc3d2dba1b65ef59df (patch)
tree9ecc2ca4e3b8d4dccb44b90e46b09c0081677082 /Makefile
parentd111373489fb9d6e842a298d83399dab25fe6aa9 (diff)
Adding skeleton OS directory, and fixing the ldscript.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile9
1 files changed, 7 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 78a1222..f3331ed 100644
--- a/Makefile
+++ b/Makefile
@@ -10,10 +10,11 @@ all: libs $(TARGET)
clean: clean-generic
$(MAKE) -C FreeRTOS clean
$(MAKE) -C arch clean
+ $(MAKE) -C os clean
-.PHONY: libs FreeRTOS arch
+.PHONY: libs FreeRTOS arch os
-libs: FreeRTOS arch
+libs: FreeRTOS arch os
FreeRTOS:
$(MAKE) -C FreeRTOS
@@ -21,6 +22,10 @@ FreeRTOS:
arch:
$(MAKE) -C arch
+os:
+ $(MAKE) -C os
+
include FreeRTOS/config.mk
include arch/config.mk
+include os/config.mk
include target-rules.mk