summaryrefslogtreecommitdiff
path: root/os/Makefile
diff options
context:
space:
mode:
authorNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-02-05 04:35:27 +0100
committerNicolas "Pixel" Noble <pixel@nobis-crew.org>2011-02-05 04:35:27 +0100
commit61ba39a23786a7ae9694705af1d146c00a319144 (patch)
treef9ad51bee751f7e878ac3e7ad4d45f993605c37d /os/Makefile
parente2d292afdb43cd7d9391128563384e1edd53c52e (diff)
Getting rid of newlib, starting to implement a libc. Highly experimental, highly untested.
Diffstat (limited to 'os/Makefile')
-rw-r--r--os/Makefile19
1 files changed, 1 insertions, 18 deletions
diff --git a/os/Makefile b/os/Makefile
index 37dbf56..763f907 100644
--- a/os/Makefile
+++ b/os/Makefile
@@ -6,6 +6,7 @@ include $(ROOTDIR)/common.mk
include config.mk
include $(ROOTDIR)/FreeRTOS/config.mk
include $(ROOTDIR)/arch/config.mk
+include $(ROOTDIR)/libc/config.mk
TARGET_SRCS = \
src/init.c \
@@ -17,25 +18,7 @@ src/hash-djb2.c \
src/osdebug.c \
src/romfs.c \
\
-src/close.c \
-src/fstat.c \
-src/isatty.c \
-src/lseek.c \
-src/open.c \
-src/read.c \
src/sbrk.c \
-src/write.c \
-\
-src/fclose.c \
-src/fflush.c \
-src/fopen.c \
-src/fprintf.c \
-src/fread.c \
-src/free.c \
-src/fwrite.c \
-src/malloc.c \
-src/printf.c \
-src/sprintf.c \
ifeq ($(CPU),arm)
TARGET_SRCS += src/semifs.c