summaryrefslogtreecommitdiff
path: root/os/Makefile
blob: 42a553c827a9216567e80a4369ee996332f00824 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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

include $(ROOTDIR)/target-rules.mk

clean: clean-generic