mm-iot-sdk/framework/mk/coreJSON.mk
Morse Micro fa615c4bba Morse Micro MM-IoT-SDK release 2.6.4
This commit introduces version 2.6.4 of the Morse Micro MM-IoT-SDK
for microcontroller based platforms.
2024-12-04 10:27:29 +11:00

18 lines
457 B
Makefile

#
# Copyright 2023 Morse Micro
#
# SPDX-License-Identifier: Apache-2.0
#
CORE_JSON_DIR = src/freertos-libs/coreJSON/source
# C files to be included while compiling
CORE_JSON_SRCS_C += core_json.c
# Header files for dependancy checking
CORE_JSON_SRCS_H += include/core_json.h
MMIOT_SRCS_C += $(addprefix $(CORE_JSON_DIR)/,$(CORE_JSON_SRCS_C))
MMIOT_SRCS_H += $(addprefix $(CORE_JSON_DIR)/,$(CORE_JSON_SRCS_H))
MMIOT_INCLUDES += $(CORE_JSON_DIR)/include