summaryrefslogtreecommitdiff
path: root/os/Makefile
blob: bb74b3455152ac9a9acddbe8aae47f15f6068215 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
TARGET_LIB = libos.a

all: $(TARGET_LIB)

include $(ROOTDIR)/common.mk
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 \
src/printf.c src/fstat.c src/isatty.c src/fprintf.c src/fio.c

include $(ROOTDIR)/target-rules.mk

clean: clean-generic