summaryrefslogtreecommitdiff
path: root/os/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 10:35:19 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-01-24 10:35:19 +0100
commit965df7faefabdd5f571b5eb46d45470223c91e12 (patch)
treeb7502742236c8e65279a4a472c8e82b5e5b289c0 /os/Makefile
parente46ea682c1aa214ccb59c9871914993c9375e5c2 (diff)
Adding sbrk, and fixing a couple of other makefile problems.
Diffstat (limited to 'os/Makefile')
-rw-r--r--os/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/os/Makefile b/os/Makefile
index 6f6ce2e..070566d 100644
--- a/os/Makefile
+++ b/os/Makefile
@@ -4,8 +4,9 @@ all: $(TARGET_LIB)
include $(ROOTDIR)/common.mk
include config.mk
+include $(ROOTDIR)/FreeRTOS/config.mk
-TARGET_SRCS = src/init.c
+TARGET_SRCS = src/init.c src/sbrk.c
include $(ROOTDIR)/target-rules.mk