blob: 7be3d0018a67c5aacfe540d0e89bd7bd40d3c1ae (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
TOP_LOCAL_PATH := $(call my-dir)
include $(call all-named-subdir-makefiles, parsers)
LOCAL_PATH := $(TOP_LOCAL_PATH)
include $(CLEAR_VARS)
LOCAL_MODULE := stm32flash
LOCAL_SRC_FILES := \
dev_table.c \
i2c.c \
init.c \
main.c \
port.c \
serial_common.c \
serial_platform.c \
stm32.c \
utils.c
LOCAL_STATIC_LIBRARIES := libparsers
include $(BUILD_EXECUTABLE)
|