blob: f445bc65eb0a25fe92481a4f7910e22a9ddd9af9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
TARGET_LIB = libacorn.a
all: $(TARGET_LIB)
include $(ROOTDIR)/common.mk
include config.mk
include $(ROOTDIR)/FreeRTOS/config.mk
include $(ROOTDIR)/arch/config.mk
include $(ROOTDIR)/os/config.mk
include $(ROOTDIR)/libc/config.mk
include $(ROOTDIR)/libm/config.mk
TARGET_SRCS = \
src/malloc_wrapper.c \
include $(ROOTDIR)/target-rules.mk
clean: clean-generic
|