summaryrefslogtreecommitdiff
path: root/os/Makefile
diff options
context:
space:
mode:
authorPixel <pixel@nobis-crew.org>2011-01-28 00:35:56 -0800
committerPixel <pixel@nobis-crew.org>2011-01-28 00:35:56 -0800
commitc8a010ba85e8325fdbf7468ef49744ff1f09f213 (patch)
treeaf7ef6d67d0cf47faef0c8bc339aeb75cedc139d /os/Makefile
parentf3906ecc2cacaf75efa1e54f453ff723cddd3d66 (diff)
Adding a few more 'syscalls' to our libc.
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 453c8d1..2dee1e9 100644
--- a/os/Makefile
+++ b/os/Makefile
@@ -7,7 +7,8 @@ include config.mk
include $(ROOTDIR)/FreeRTOS/config.mk
include $(ROOTDIR)/arch/config.mk
-TARGET_SRCS = src/init.c src/sbrk.c src/sprintf.c src/malloc.c src/free.c src/fclose.c src/read.c src/lseek.c src/write.c src/close.c src/osdebug.c
+TARGET_SRCS = src/init.c src/sbrk.c src/sprintf.c src/malloc.c src/free.c src/fclose.c src/read.c src/lseek.c src/write.c src/close.c src/osdebug.c \
+src/printf.c src/fstat.c src/isatty.c src/fprintf.c
include $(ROOTDIR)/target-rules.mk